-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docker EUS: add MAIL_ONLY_TO_VALID_ADDRESS param
Related to YDA-5380
- Loading branch information
Showing
1 changed file
with
13 additions
and
12 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 |
---|---|---|
|
@@ -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' | ||
|