From 7399286ec96ea4699b1d5908ab36f18f3782c339 Mon Sep 17 00:00:00 2001 From: BastelBaus <44684710+BastelBaus@users.noreply.github.com> Date: Sun, 23 Mar 2025 18:04:53 +0100 Subject: [PATCH] Update ldap.py timestamp hack --- radicale/auth/ldap.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/radicale/auth/ldap.py b/radicale/auth/ldap.py index a4c73808..be2c2fe8 100644 --- a/radicale/auth/ldap.py +++ b/radicale/auth/ldap.py @@ -56,6 +56,7 @@ class Auth(auth.BaseAuth): try: import ldap3 self.ldap3 = ldap3 + except ImportError: try: import ldap @@ -63,6 +64,12 @@ class Auth(auth.BaseAuth): self.ldap = ldap except ImportError as e: raise RuntimeError("LDAP authentication requires the ldap3 module") from e + + self._ldap_authentik_timestamp_hack = configuration.get("auth", "ldap_authentik_timestamp_hack") + if self._ldap_authentik_timestamp_hack: + self.ldap3.utils.config._ATTRIBUTES_EXCLUDED_FROM_CHECK.extend(['createTimestamp','modifyTimestamp']) + logger.info("auth.ldap_authentik_timestamp_hack applied") + self._ldap_uri = configuration.get("auth", "ldap_uri") self._ldap_base = configuration.get("auth", "ldap_base") self._ldap_reader_dn = configuration.get("auth", "ldap_reader_dn")