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.
This commit is contained in:
Thomas Waldmann 2016-01-08 01:49:57 +01:00
parent 4891869c37
commit 893ef1ae00

View File

@ -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/'