mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 00:48:32 +01:00
allow overriding postfix server
This commit is contained in:
parent
3d95048e00
commit
dc66cf76e2
1 changed files with 2 additions and 1 deletions
|
@ -43,7 +43,8 @@ EMAIL_DOMAIN = os.environ["EMAIL_DOMAIN"]
|
|||
SUPPORT_EMAIL = os.environ["SUPPORT_EMAIL"]
|
||||
ADMIN_EMAIL = os.environ["ADMIN_EMAIL"]
|
||||
MAX_NB_EMAIL_FREE_PLAN = int(os.environ["MAX_NB_EMAIL_FREE_PLAN"])
|
||||
POSTFIX_SERVER = "1.1.1.1"
|
||||
# allow to override postfix server locally
|
||||
POSTFIX_SERVER = os.environ.get("POSTFIX_SERVER", "1.1.1.1")
|
||||
|
||||
# list of (priority, email server)
|
||||
EMAIL_SERVERS_WITH_PRIORITY = eval(
|
||||
|
|
Loading…
Reference in a new issue