This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Egor I <[email protected]>
- Loading branch information
1 parent
9618f2d
commit 80fba30
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -287,27 +287,28 @@ proxy: | |
|
||
############################################################################################################ | ||
# App related | ||
# Configuration of SMTP is a must for | ||
# THIS IS TO BE SET to enabled: true. Configuration of SMTP is a must for the folowing. | ||
# - first application run and initialisation | ||
# - adding new local users to Allure TestOps instance | ||
# - restoring (resetting) lost passwords | ||
# SMTP must be enabled and correctly configured for a production system | ||
# below we have correct synthetic and hence non-working example | ||
# please note, gmail does not allow using the real password for SMTP authentication, you need to create and use | ||
# so-called application password | ||
# the example parameters below are suitable for usage with gmail smtp (you need to add real username and password, though) | ||
############################################################################################################ | ||
smtp: | ||
enabled: false | ||
enabled: true | ||
host: smtp.gmail.com | ||
port: 465 | ||
port: 587 | ||
authEnabled: true | ||
from: [email protected] | ||
username: sa-testops-smtp | ||
password: ThisMUstBeRealPasswordOrAppPassword | ||
# https://en.wikipedia.org/wiki/Opportunistic_TLS | ||
startTLSEnabled: true | ||
startTLSRequired: true | ||
sslEnabled: true | ||
sslEnabled: false | ||
sslTrust: smtp.gmail.com | ||
|
||
############################################################################################################ | ||
|