From 50ce677513a06e98a48e236ff008d2015a2c6484 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sun, 10 Nov 2013 18:29:53 +0100 Subject: Email notification. --- conf.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'conf.py') diff --git a/conf.py b/conf.py index d801f32b..d834ea38 100644 --- a/conf.py +++ b/conf.py @@ -27,7 +27,12 @@ WEBSERVER_DEBUG = int(config.get('webserver', 'debug')) == 1 WEBSERVER_HOST = config.get('webserver', 'host') WEBSERVER_PORT = int(config.get('webserver', 'port')) +MAIL_ENABLED = int(config.get('mail', 'enabled')) == 1 MAIL_HOST = config.get('mail', 'host') MAIL_PORT = int(config.get('mail', 'port')) +MAIL_TLS = int(config.get('mail', 'tls')) == 1 MAIL_SSL = int(config.get('mail', 'ssl')) == 1 MAIL_USERNAME = config.get('mail', 'username') +MAIL_PASSWORD = config.get('mail', 'password') +MAIL_FROM = config.get('mail', 'mail_from') +MAIL_TO = config.get('mail', 'mail_to') -- cgit