From 893ef1ae00d95b4785e6543bca4281404d2963ef Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Fri, 8 Jan 2016 01:49:57 +0100 Subject: [PATCH] do not use html registration emails we override the text email template, but not the html email template. the django-registration-redux docs say that one should switch off html email in the config in that case. --- nsupdate/settings/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nsupdate/settings/base.py b/nsupdate/settings/base.py index 85fb1eb..5479d9e 100644 --- a/nsupdate/settings/base.py +++ b/nsupdate/settings/base.py @@ -237,6 +237,7 @@ LOGGING = { SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') ACCOUNT_ACTIVATION_DAYS = 7 +REGISTRATION_EMAIL_HTML = False # we override the text, but not the html email template LOGIN_REDIRECT_URL = '/overview/'