diff options
author | Matthew Lemon <y@yulqen.org> | 2024-08-02 12:25:47 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-08-02 12:25:47 +0100 |
commit | 2949dc4a515e1bc07afc4f7ffd8747f01e1a6ebf (patch) | |
tree | 0f32e8a2c213593669f7e016360007e2de22dfa0 | |
parent | 0565916dd6db9f33a49a8350f6eae96d53ba1e87 (diff) |
Switch off mandatory email validation for now.
-rw-r--r-- | config/settings/base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/settings/base.py b/config/settings/base.py index 7e1f44d..0d4ef5f 100644 --- a/config/settings/base.py +++ b/config/settings/base.py @@ -218,7 +218,7 @@ X_FRAME_OPTIONS = "DENY" # https://docs.djangoproject.com/en/dev/ref/settings/#email-backend EMAIL_BACKEND = env( "DJANGO_EMAIL_BACKEND", - # default="django.core.mail.backends.smtp.EmailBackend", + #default="django.core.mail.backends.smtp.EmailBackend", default="django.core.mail.backends.console.EmailBackend", ) # https://docs.djangoproject.com/en/dev/ref/settings/#email-timeout @@ -306,7 +306,7 @@ ACCOUNT_USERNAME_REQUIRED = False # https://docs.allauth.org/en/latest/account/configuration.html ACCOUNT_USER_MODEL_USERNAME_FIELD = None # https://docs.allauth.org/en/latest/account/configuration.html -ACCOUNT_EMAIL_VERIFICATION = "mandatory" +#ACCOUNT_EMAIL_VERIFICATION = "mandatory" # https://docs.allauth.org/en/latest/account/configuration.html ACCOUNT_ADAPTER = "pyblackbird_cc.users.adapters.AccountAdapter" # https://docs.allauth.org/en/latest/account/forms.html |