Skip to content

Commit

Permalink
Docker EUS: add MAIL_ONLY_TO_VALID_ADDRESS param
Browse files Browse the repository at this point in the history
Related to YDA-5380
  • Loading branch information
stsnel committed Sep 5, 2023
1 parent 4486ebf commit a9a0050
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions docker/images/yoda_eus/yoda_eus_init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,18 +113,19 @@ YODA_THEME_PATH = '/var/www/yoda/themes' # Path to location of themes
YODA_THEME = 'uu' # Reference to actual theme directory in YODA_THEME_PATH
# Email configuration
SMTP_SERVER = 'smtp://mailpit.yoda:1025'
SMTP_USERNAME = 'PLACEHOLDER'
SMTP_PASSWORD = 'PLACEHOLDER'
SMTP_AUTH = 'false'
SMTP_STARTTLS = 'false'
SMTP_FROM_NAME = 'Yoda External User Service'
SMTP_FROM_EMAIL = '[email protected]'
SMTP_REPLYTO_NAME = 'PLACEHOLDER'
SMTP_REPLYTO_EMAIL = '[email protected]'
MAIL_ENABLED = 'true'
MAIL_TEMPLATE = 'uu'
MAIL_TEMPLATE_DIR = '/var/www/extuser/yoda-external-user-service/yoda_eus/templates/mail'
SMTP_SERVER = 'smtp://mailpit.yoda:1025'
SMTP_USERNAME = 'PLACEHOLDER'
SMTP_PASSWORD = 'PLACEHOLDER'
SMTP_AUTH = 'false'
SMTP_STARTTLS = 'false'
SMTP_FROM_NAME = 'Yoda External User Service'
SMTP_FROM_EMAIL = '[email protected]'
SMTP_REPLYTO_NAME = 'PLACEHOLDER'
SMTP_REPLYTO_EMAIL = '[email protected]'
MAIL_ENABLED = 'true'
MAIL_TEMPLATE = 'uu'
MAIL_TEMPLATE_DIR = '/var/www/extuser/yoda-external-user-service/yoda_eus/templates/mail'
MAIL_ONLY_TO_VALID_ADDRESS = 'false'
# Database configuration
DB_DIALECT = 'postgresql+psycopg2'
Expand Down

0 comments on commit a9a0050

Please sign in to comment.