mirror of https://github.com/zulip/zulip.git
default_settings: Fix inaccurate "below" phrase in comments.
These are leftovers from where we had default settings in the settings.py file. Now that the files are separate those references to "below" are not correct.
This commit is contained in:
parent
e477cae800
commit
5bb84a2255
|
@ -33,7 +33,7 @@ AUTH_LDAP_SERVER_URI = ""
|
|||
LDAP_EMAIL_ATTR = None # type: Optional[str]
|
||||
AUTH_LDAP_USERNAME_ATTR = None # type: Optional[str]
|
||||
AUTH_LDAP_REVERSE_EMAIL_SEARCH = None # type: Optional[LDAPSearch]
|
||||
# AUTH_LDAP_CONNECTION_OPTIONS: we set ldap.OPT_REFERRALS below if unset.
|
||||
# AUTH_LDAP_CONNECTION_OPTIONS: we set ldap.OPT_REFERRALS in settings.py if unset.
|
||||
AUTH_LDAP_CONNECTION_OPTIONS = {} # type: Dict[int, object]
|
||||
# Disable django-auth-ldap caching, to prevent problems with OU changes.
|
||||
AUTH_LDAP_CACHE_TIMEOUT = 0
|
||||
|
@ -167,7 +167,7 @@ DEVELOPMENT_LOG_EMAILS = DEVELOPMENT
|
|||
# like zulipchat.com or to work around a problem on another server.
|
||||
|
||||
# The following bots are optional system bots not enabled by
|
||||
# default. The default ones are defined in INTERNAL_BOTS, below.
|
||||
# default. The default ones are defined in INTERNAL_BOTS, in settings.py.
|
||||
|
||||
# ERROR_BOT sends Django exceptions to an "errors" stream in the
|
||||
# system realm.
|
||||
|
@ -222,12 +222,12 @@ REALM_HOSTS = {} # type: Dict[str, str]
|
|||
# testing.
|
||||
USING_PGROONGA = False
|
||||
|
||||
# How Django should send emails. Set for most contexts below, but
|
||||
# How Django should send emails. Set for most contexts in settings.py, but
|
||||
# available for sysadmin override in unusual cases.
|
||||
EMAIL_BACKEND = None # type: Optional[str]
|
||||
|
||||
# Whether to give admins a warning in the web app that email isn't set up.
|
||||
# Set below when email isn't configured.
|
||||
# Set in settings.py when email isn't configured.
|
||||
WARN_NO_EMAIL = False
|
||||
|
||||
# Whether to keep extra frontend stack trace data.
|
||||
|
|
Loading…
Reference in New Issue