From 2439266d0eaf476c119ca9eb8ccd82fe85e5b9aa Mon Sep 17 00:00:00 2001 From: BastelBaus <44684710+BastelBaus@users.noreply.github.com> Date: Mon, 24 Mar 2025 20:25:51 +0100 Subject: [PATCH] Update ldap.py Bugfix, user_entry['attributes'][self._ldap_user_attr] is already the string so user_entry['attributes'][self._ldap_user_attr][0] would give only the first character and not the full user attribute --- radicale/auth/ldap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/auth/ldap.py b/radicale/auth/ldap.py index a4c73808..53ef5c03 100644 --- a/radicale/auth/ldap.py +++ b/radicale/auth/ldap.py @@ -242,7 +242,7 @@ class Auth(auth.BaseAuth): logger.debug("_login3 LDAP groups of user: %s", ",".join(self._ldap_groups)) if self._ldap_user_attr: if user_entry['attributes'][self._ldap_user_attr]: - login = user_entry['attributes'][self._ldap_user_attr][0] + login = user_entry['attributes'][self._ldap_user_attr] logger.debug(f"_login3 user set to: '{login}'") conn.unbind() logger.debug(f"_login3 {login} successfully authenticated")