Revision b5a9a0fbfd7957517db73098878e755e874da6bd authored by Zack Murry on 10 January 2022, 11:28:00 UTC, committed by GitHub on 10 January 2022, 11:28:00 UTC
1 parent 4e65d77
Raw File
email_settings.py
#!/usr/bin/env python

# Copyright (C) 2020 Intel Corporation
#
# SPDX-License-Identifier: MIT

from cvat.settings.production import *


# https://github.com/pennersr/django-allauth
ACCOUNT_AUTHENTICATION_METHOD = 'username'
ACCOUNT_CONFIRM_EMAIL_ON_GET = True
ACCOUNT_EMAIL_REQUIRED = True
ACCOUNT_EMAIL_VERIFICATION = 'mandatory'

# Email backend settings for Django
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
back to top