aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-13 19:41:02 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-13 19:41:02 +0200
commit2af7d3ebbe6bc1f8581c7bf1e11de32aa47bf17c (patch)
tree2689ea702d0ef242127389b4e56f7b54785c460a /conf.py
parentAdd reason of the problem.. (diff)
downloadnewspipe-2af7d3ebbe6bc1f8581c7bf1e11de32aa47bf17c.tar.gz
newspipe-2af7d3ebbe6bc1f8581c7bf1e11de32aa47bf17c.tar.bz2
newspipe-2af7d3ebbe6bc1f8581c7bf1e11de32aa47bf17c.zip
Load MAILGUN_SMTP_SERVER env variable.
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf.py b/conf.py
index 3d6ed5f4..f289c74f 100644
--- a/conf.py
+++ b/conf.py
@@ -79,7 +79,7 @@ else:
MAIL_ENABLED = True
ADMIN_EMAIL = os.environ.get('ADMIN_EMAIL', '')
- MAILGUN_DOMAIN = "pyaggr3g470r.herokuapp.com"
+ MAILGUN_DOMAIN = os.environ.get('MAILGUN_SMTP_SERVER', '')
MAILGUN_KEY = os.environ.get('MAILGUN_API_KEY', '')
WEBZINE_ROOT = "/tmp/"
bgstack15