From 6b1a82f07d5cfd98c2b67b802e50ef0f0b309043 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sun, 3 May 2015 18:07:34 +0200 Subject: Fixed a bug when sending emails (email of the sender was empty). --- conf.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'conf.py') diff --git a/conf.py b/conf.py index e71009bf..696ecf97 100644 --- a/conf.py +++ b/conf.py @@ -23,6 +23,7 @@ TIME_ZONE = { ON_HEROKU = int(os.environ.get('HEROKU', 0)) == 1 DEFAULTS = {"platform_url": "https://pyaggr3g470r.herokuapp.com/", + "admin_email": "root@pyAggr3g470r.localhost", "postmark_api_key": "", "recaptcha_public_key": "", "recaptcha_private_key": "", @@ -36,7 +37,7 @@ DEFAULTS = {"platform_url": "https://pyaggr3g470r.herokuapp.com/", "http_proxy": "", "secret": "", "enabled": "false", - "email": "", + "notification_sender": "pyAggr3g470r@no-reply.com", "tls": "false", "ssl": "true", "host": "0.0.0.0", @@ -101,7 +102,7 @@ WEBSERVER_HOST = config.get('webserver', 'host') WEBSERVER_PORT = config.getint('webserver', 'port') WEBSERVER_SECRET = config.get('webserver', 'secret') -NOTIFICATION_EMAIL = config.get('notification', 'email') +NOTIFICATION_EMAIL = config.get('notification', 'notification_sender') NOTIFICATION_HOST = config.get('notification', 'host') NOTIFICATION_PORT = config.getint('notification', 'port') NOTIFICATION_TLS = config.getboolean('notification', 'tls') -- cgit