diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-02-25 23:18:55 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-02-25 23:18:55 +0100 |
commit | d6b34ceb21951d97fd978e66d03459749d6dea6e (patch) | |
tree | bacd9f9028ef07beb75aadeb57a8fb2aae849d7d /conf.py | |
parent | Release 6.1. Updated NEWS.rst (diff) | |
download | newspipe-d6b34ceb21951d97fd978e66d03459749d6dea6e.tar.gz newspipe-d6b34ceb21951d97fd978e66d03459749d6dea6e.tar.bz2 newspipe-d6b34ceb21951d97fd978e66d03459749d6dea6e.zip |
Removed the functionality for the email notifications of new articles. No real added value.
Diffstat (limited to 'conf.py')
-rw-r--r-- | conf.py | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -53,7 +53,6 @@ if not ON_HEROKU: WEBSERVER_PORT = int(config.get('webserver', 'port')) WEBSERVER_SECRET = config.get('webserver', 'secret') - NOTIFICATION_ENABLED = int(config.get('notification', 'enabled')) == 1 NOTIFICATION_EMAIL = config.get('notification', 'email') NOTIFICATION_HOST = config.get('notification', 'host') NOTIFICATION_PORT = int(config.get('notification', 'port')) @@ -83,7 +82,6 @@ else: WEBSERVER_PORT = int(os.environ.get('PORT', 5000)) WEBSERVER_SECRET = os.environ.get('SECRET_KEY', None) - NOTIFICATION_ENABLED = True NOTIFICATION_EMAIL = os.environ.get('NOTIFICATION_EMAIL', '') POSTMARK_API_KEY = os.environ.get('POSTMARK_API_KEY', '') |