From 17a7252a5b408e8cd95d51c7e18821b0e4751086 Mon Sep 17 00:00:00 2001 From: tomtom5152 Date: Thu, 6 Nov 2014 00:11:04 +0000 Subject: [PATCH] Slight change making emails work on the console --- PyRIGS/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PyRIGS/settings.py b/PyRIGS/settings.py index b3af52ac..ac281cb0 100644 --- a/PyRIGS/settings.py +++ b/PyRIGS/settings.py @@ -91,8 +91,8 @@ LOGOUT_URL = '/user/logout' ACCOUNT_ACTIVATION_DAYS = 7 # Email -EMAIL_TEST = False -if not DEBUG or EMAIL_TEST: +EMAILER_TEST = False +if not DEBUG or EMAILER_TEST: EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' else: EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'