From 13fb74e43dda2ed707ac352dc70b4b7608434c43 Mon Sep 17 00:00:00 2001 From: esensar Date: Mon, 22 Oct 2018 19:29:03 +0200 Subject: [PATCH] Disable SSL for mailer --- config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index 305ae30..97b0e10 100644 --- a/config.py +++ b/config.py @@ -2,7 +2,7 @@ import os # App configuration DEBUG = os.environ['DEBUG'] -APP_VERSION = '0.2.2' +APP_VERSION = '0.2.3' # 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 = True +MAIL_USE_SSL = False MAIL_DEBUG = False # gmail authentication