diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-13 19:41:02 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-13 19:41:02 +0200 |
commit | 2af7d3ebbe6bc1f8581c7bf1e11de32aa47bf17c (patch) | |
tree | 2689ea702d0ef242127389b4e56f7b54785c460a | |
parent | Add reason of the problem.. (diff) | |
download | newspipe-2af7d3ebbe6bc1f8581c7bf1e11de32aa47bf17c.tar.gz newspipe-2af7d3ebbe6bc1f8581c7bf1e11de32aa47bf17c.tar.bz2 newspipe-2af7d3ebbe6bc1f8581c7bf1e11de32aa47bf17c.zip |
Load MAILGUN_SMTP_SERVER env variable.
-rw-r--r-- | conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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/" |