aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-13 19:09:10 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-13 19:09:10 +0200
commit559f14ed074a6d3f52f1acf62c4c74b0ff0c257e (patch)
tree189ed58a259f4c65dd5d13e98daf058dbff9e1d1 /conf.py
parentUpdated translations. (diff)
downloadnewspipe-559f14ed074a6d3f52f1acf62c4c74b0ff0c257e.tar.gz
newspipe-559f14ed074a6d3f52f1acf62c4c74b0ff0c257e.tar.bz2
newspipe-559f14ed074a6d3f52f1acf62c4c74b0ff0c257e.zip
Integration of mailgun.
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/conf.py b/conf.py
index a5ebd2e2..f423f69e 100644
--- a/conf.py
+++ b/conf.py
@@ -77,7 +77,9 @@ else:
WEBSERVER_HOST = '0.0.0.0'
WEBSERVER_PORT = int(os.environ.get('PORT', 5000))
- MAIL_ENABLED = False
+ MAIL_ENABLED = True
+ MAILGUN_DOMAIN = "pyaggr3g470r.herokuapp.com"
+ MAILGUN_KEY = os.environ.get('MAILGUN_API_KEY', '')
WEBZINE_ROOT = "/tmp/"
bgstack15