|
@@ -11,8 +11,10 @@ DEFAULT_THEME = 'clear-green'
|
11
|
11
|
# Users library
|
12
|
12
|
#
|
13
|
13
|
# This enables or disables the self registration
|
14
|
|
-# If you enable self registration it is recommended to configure "Django mail / smtp settings"
|
|
14
|
+# If you enable self registration (or you want to use it as superuser) it is recommended to configure "Django mail / smtp settings"
|
15
|
15
|
USERS_SELF_REGISTRATION = False
|
|
16
|
+# If you enable password recovery (or you want to use it as superuser) it is recommended to configure "Django mail / smtp settings"
|
|
17
|
+USERS_PASSWORD_RECOVERY = False
|
16
|
18
|
# This enables or disables the mail validation after self registration
|
17
|
19
|
USERS_MAIL_VALIDATION = True
|
18
|
20
|
# This enables or disables the account activation by an admin after self registration
|