aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-17 00:43:52 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-17 00:43:52 +0200
commit9c758cf9eb416aacdbee9ae2caa3a5071d8a705f (patch)
tree231f47f1c428bb9e77fc2194acd4ed9fcdff1e33
parentMerged in jaesivsm/pyaggr3g470r (pull request #10) (diff)
downloadnewspipe-9c758cf9eb416aacdbee9ae2caa3a5071d8a705f.tar.gz
newspipe-9c758cf9eb416aacdbee9ae2caa3a5071d8a705f.tar.bz2
newspipe-9c758cf9eb416aacdbee9ae2caa3a5071d8a705f.zip
Load Postmark API key for Heroku.
-rw-r--r--conf.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/conf.py b/conf.py
index bd7ba0e9..dfa7b874 100644
--- a/conf.py
+++ b/conf.py
@@ -108,6 +108,7 @@ NOTIFICATION_TLS = config.getboolean('notification', 'tls')
NOTIFICATION_SSL = config.getboolean('notification', 'ssl')
NOTIFICATION_USERNAME = config.get('notification', 'username')
NOTIFICATION_PASSWORD = config.get('notification', 'password')
+POSTMARK_API_KEY = os.environ.get('POSTMARK_API_KEY', '')
WEBZINE_ROOT = config.get('webserver', 'webzine_root')
bgstack15