Skip to content

Commit

Permalink
Merge pull request #1 from level2-gis/mail_use_ssl
Browse files Browse the repository at this point in the history
Mail use ssl
  • Loading branch information
uprel authored Mar 14, 2024
2 parents cb55a0c + b870be4 commit a949bae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .prod.env
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ MAIL_SERVER=fixme
#MAIL_SUPPRESS_SEND=True

#MAIL_USE_TLS=True
#MAIL_USE_SSL=False

#MAIL_USERNAME=NODEFAULT
MAIL_USERNAME=fixme
Expand Down
1 change: 1 addition & 0 deletions server/mergin/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ class Configuration(object):
MAIL_SERVER = config("MAIL_SERVER", default="localhost")
MAIL_PORT = config("MAIL_PORT", default=587, cast=int)
MAIL_USE_TLS = config("MAIL_USE_TLS", default=True, cast=bool)
MAIL_USE_SSL = config("MAIL_USE_SSL", default=False, cast=bool)
MAIL_DEFAULT_SENDER = config("MAIL_DEFAULT_SENDER")
MAIL_BCC = config("MAIL_BCC")
MAIL_USERNAME = config("MAIL_USERNAME")
Expand Down

0 comments on commit a949bae

Please sign in to comment.