From ca326667f531bae3bf0980676f4e772525e9bd22 Mon Sep 17 00:00:00 2001 From: esensar Date: Mon, 22 Oct 2018 19:47:38 +0200 Subject: [PATCH] Revert "Disable SSL for mailer" This reverts commit 13fb74e43dda2ed707ac352dc70b4b7608434c43. --- config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index 97b0e10..305ae30 100644 --- a/config.py +++ b/config.py @@ -2,7 +2,7 @@ import os # App configuration DEBUG = os.environ['DEBUG'] -APP_VERSION = '0.2.3' +APP_VERSION = '0.2.2' # Define the application directory BASE_DIR = os.path.abspath(os.path.dirname(__file__)) @@ -47,7 +47,7 @@ SMTP_PASSWORD = os.environ['MAILGUN_SMTP_PASSWORD'] MAIL_SERVER = os.environ['MAILGUN_SMTP_SERVER'] MAIL_PORT = os.environ['MAILGUN_SMTP_PORT'] MAIL_USE_TLS = True -MAIL_USE_SSL = False +MAIL_USE_SSL = True MAIL_DEBUG = False # gmail authentication