aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-11-10 18:29:53 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-11-10 18:29:53 +0100
commit50ce677513a06e98a48e236ff008d2015a2c6484 (patch)
tree1f9edcfb9629ba9544fdab38a1a262a911c1c033 /conf.py
parentRemoved code related to QR Code generation. (diff)
downloadnewspipe-50ce677513a06e98a48e236ff008d2015a2c6484.tar.gz
newspipe-50ce677513a06e98a48e236ff008d2015a2c6484.tar.bz2
newspipe-50ce677513a06e98a48e236ff008d2015a2c6484.zip
Email notification.
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py5
1 files changed, 5 insertions, 0 deletions
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')
bgstack15