|
@@ -14,7 +14,7 @@ DEBUG = False
|
|
TEMPLATE_DEBUG = False
|
|
TEMPLATE_DEBUG = False
|
|
PUBLIC_REGISTER_ENABLED = True
|
|
PUBLIC_REGISTER_ENABLED = True
|
|
|
|
|
|
-DEFAULT_FROM_EMAIL = "##MAIL_SMTP_USERNAME##@##MAIL_DOMAIN##"
|
|
|
|
|
|
+DEFAULT_FROM_EMAIL = "##MAIL_FROM##"
|
|
SERVER_EMAIL = DEFAULT_FROM_EMAIL
|
|
SERVER_EMAIL = DEFAULT_FROM_EMAIL
|
|
|
|
|
|
# Uncomment and populate with proper connection parameters
|
|
# Uncomment and populate with proper connection parameters
|
|
@@ -24,7 +24,7 @@ EMAIL_USE_TLS = False
|
|
EMAIL_HOST = "##MAIL_SMTP_SERVER##"
|
|
EMAIL_HOST = "##MAIL_SMTP_SERVER##"
|
|
EMAIL_PORT = ##MAIL_SMTP_PORT##
|
|
EMAIL_PORT = ##MAIL_SMTP_PORT##
|
|
EMAIL_HOST_USER = "##MAIL_SMTP_USERNAME##"
|
|
EMAIL_HOST_USER = "##MAIL_SMTP_USERNAME##"
|
|
-# EMAIL_HOST_PASSWORD = ""
|
|
|
|
|
|
+EMAIL_HOST_PASSWORD = "##MAIL_SMTP_PASSWORD##"
|
|
|
|
|
|
# Database config
|
|
# Database config
|
|
DATABASES = {
|
|
DATABASES = {
|
|
@@ -55,4 +55,4 @@ LDAP_SEARCH_SUFFIX = None # '@example.com'
|
|
|
|
|
|
# Names of LDAP properties on user account to get email and full name
|
|
# Names of LDAP properties on user account to get email and full name
|
|
LDAP_EMAIL_PROPERTY = "mail"
|
|
LDAP_EMAIL_PROPERTY = "mail"
|
|
-LDAP_FULL_NAME_PROPERTY = "displayname"
|
|
|
|
|
|
+LDAP_FULL_NAME_PROPERTY = "displayname"
|