Merge branch 'master' into task/4046/compute_hdd_sdd
This commit is contained in:
commit
b4fbd59144
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
|||
1.3.1: 2017-12-31
|
||||
* feature: [all] Load email configurations host, port and use_tls from env
|
||||
* bugfix: [all] Use ungleich's smtp as relayhost for sending emails
|
||||
1.3: 2017-12-27
|
||||
* #3911: [dcl] Integrate resend activation link into dcl landing payment page
|
||||
* #3972: [hosting] Add ungleich company info to invoice footer
|
||||
|
|
|
@ -63,8 +63,12 @@ LOGIN_URL = None
|
|||
LOGOUT_URL = None
|
||||
LOGIN_REDIRECT_URL = None
|
||||
|
||||
EMAIL_HOST = "localhost"
|
||||
EMAIL_PORT = 25
|
||||
EMAIL_HOST = env("EMAIL_HOST")
|
||||
if not EMAIL_HOST:
|
||||
EMAIL_HOST = "localhost"
|
||||
EMAIL_PORT = int_env("EMAIL_PORT", 25)
|
||||
EMAIL_USE_TLS = bool_env("EMAIL_USE_TLS")
|
||||
|
||||
SECRET_KEY = env('DJANGO_SECRET_KEY')
|
||||
|
||||
# Application definition
|
||||
|
|
Loading…
Reference in a new issue