mirror of https://github.com/zulip/zulip.git
settings: Move LDAP_DEACTIVATE_NON_MATCHING_USERS default to default_settings.
Tweaked by tabbott to fix an incorrect translation to ONLY_SSO. Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
24d320f245
commit
826ca3bfdf
|
@ -824,7 +824,11 @@ def sync_user_from_ldap(user_profile: UserProfile, logger: logging.Logger) -> bo
|
||||||
try:
|
try:
|
||||||
ldap_username = backend.django_to_ldap_username(user_profile.delivery_email)
|
ldap_username = backend.django_to_ldap_username(user_profile.delivery_email)
|
||||||
except ZulipLDAPExceptionNoMatchingLDAPUser:
|
except ZulipLDAPExceptionNoMatchingLDAPUser:
|
||||||
if settings.LDAP_DEACTIVATE_NON_MATCHING_USERS:
|
if (
|
||||||
|
settings.ONLY_LDAP
|
||||||
|
if settings.LDAP_DEACTIVATE_NON_MATCHING_USERS is None
|
||||||
|
else settings.LDAP_DEACTIVATE_NON_MATCHING_USERS
|
||||||
|
):
|
||||||
do_deactivate_user(user_profile)
|
do_deactivate_user(user_profile)
|
||||||
logger.info("Deactivated non-matching user: %s", user_profile.delivery_email)
|
logger.info("Deactivated non-matching user: %s", user_profile.delivery_email)
|
||||||
return True
|
return True
|
||||||
|
|
|
@ -411,3 +411,6 @@ IS_DEV_DROPLET = False
|
||||||
|
|
||||||
# Used by puppet/zulip_ops/files/cron.d/check_send_receive_time.
|
# Used by puppet/zulip_ops/files/cron.d/check_send_receive_time.
|
||||||
NAGIOS_BOT_HOST = EXTERNAL_HOST
|
NAGIOS_BOT_HOST = EXTERNAL_HOST
|
||||||
|
|
||||||
|
# Automatically deactivate users not found by the AUTH_LDAP_USER_SEARCH query.
|
||||||
|
LDAP_DEACTIVATE_NON_MATCHING_USERS: Optional[bool] = None
|
||||||
|
|
|
@ -935,10 +935,10 @@ POLL_TIMEOUT = 90 * 1000
|
||||||
|
|
||||||
USING_APACHE_SSO = ('zproject.backends.ZulipRemoteUserBackend' in AUTHENTICATION_BACKENDS)
|
USING_APACHE_SSO = ('zproject.backends.ZulipRemoteUserBackend' in AUTHENTICATION_BACKENDS)
|
||||||
|
|
||||||
if 'LDAP_DEACTIVATE_NON_MATCHING_USERS' not in vars():
|
ONLY_LDAP = False
|
||||||
LDAP_DEACTIVATE_NON_MATCHING_USERS = (
|
if len(AUTHENTICATION_BACKENDS) == 1 and (AUTHENTICATION_BACKENDS[0] ==
|
||||||
len(AUTHENTICATION_BACKENDS) == 1 and (AUTHENTICATION_BACKENDS[0] ==
|
"zproject.backends.ZulipLDAPAuthBackend"):
|
||||||
"zproject.backends.ZulipLDAPAuthBackend"))
|
ONLY_LDAP = True
|
||||||
|
|
||||||
if len(AUTHENTICATION_BACKENDS) == 1 and (AUTHENTICATION_BACKENDS[0] ==
|
if len(AUTHENTICATION_BACKENDS) == 1 and (AUTHENTICATION_BACKENDS[0] ==
|
||||||
"zproject.backends.ZulipRemoteUserBackend"):
|
"zproject.backends.ZulipRemoteUserBackend"):
|
||||||
|
|
Loading…
Reference in New Issue