From 6c81c2e02604d96f0887e6711268e6d8a7b42dbb Mon Sep 17 00:00:00 2001 From: Jack Morgan Date: Tue, 15 May 2018 20:05:16 +1200 Subject: [PATCH] Require mandatory verification of email when registering --- config/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/settings/base.py b/config/settings/base.py index 4da13cb..d685df6 100644 --- a/config/settings/base.py +++ b/config/settings/base.py @@ -207,7 +207,7 @@ LOGIN_REDIRECT_URL = "index" ACCOUNT_AUTHENTICATION_METHOD = "email" ACCOUNT_EMAIL_REQUIRED = True -ACCOUNT_EMAIL_VERIFICATION = "none" +ACCOUNT_EMAIL_VERIFICATION = "mandatory" ACCOUNT_USERNAME_REQUIRED = False ACCOUNT_FORMS = { "signup": "config.allauth.CustomSignupForm"