diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-11-10 18:29:53 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-11-10 18:29:53 +0100 |
commit | 50ce677513a06e98a48e236ff008d2015a2c6484 (patch) | |
tree | 1f9edcfb9629ba9544fdab38a1a262a911c1c033 /conf.py | |
parent | Removed code related to QR Code generation. (diff) | |
download | newspipe-50ce677513a06e98a48e236ff008d2015a2c6484.tar.gz newspipe-50ce677513a06e98a48e236ff008d2015a2c6484.tar.bz2 newspipe-50ce677513a06e98a48e236ff008d2015a2c6484.zip |
Email notification.
Diffstat (limited to 'conf.py')
-rw-r--r-- | conf.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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') |