Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
adds strict SMTP enabled
Browse files Browse the repository at this point in the history
Signed-off-by: Egor I <[email protected]>
  • Loading branch information
cheshi-mantu committed Jul 17, 2024
1 parent 9618f2d commit 80fba30
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions charts/testops/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

############################################################################################################
Expand Down

0 comments on commit 80fba30

Please sign in to comment.