# HOTFIX
* fixes bug where errors occured once an email shall be sent. See issue #87 for details
This commit is contained in:
parent
5b7351e331
commit
9c9c9b7717
@ -212,10 +212,10 @@ if DEBUG:
|
||||
EMAIL_FILE_PATH = '/tmp/app-messages'
|
||||
|
||||
DEFAULT_FROM_EMAIL = "no-reply@ksp.de" # The default email address for the 'from' element
|
||||
EMAIL_HOST = os.environ.get('SMTP_HOST'),
|
||||
EMAIL_HOST = os.environ.get('SMTP_HOST')
|
||||
EMAIL_REPLY_TO = os.environ.get('SMTP_REAL_REPLY_MAIL')
|
||||
SUPPORT_MAIL_RECIPIENT = EMAIL_REPLY_TO
|
||||
EMAIL_PORT = os.environ.get('SMTP_PORT'),
|
||||
EMAIL_PORT = os.environ.get('SMTP_PORT')
|
||||
|
||||
# LOGGING
|
||||
BASIC_LOGGER = "logger"
|
||||
|
Loading…
Reference in New Issue
Block a user