From 94ad295124851096c07aef4a399e52233836f04c Mon Sep 17 00:00:00 2001 From: BastelBaus <44684710+BastelBaus@users.noreply.github.com> Date: Sun, 23 Mar 2025 18:08:00 +0100 Subject: [PATCH] Update config.py added ldap_authentik_timestamp_hack to config file --- radicale/config.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/radicale/config.py b/radicale/config.py index e683cb5b..66c276de 100644 --- a/radicale/config.py +++ b/radicale/config.py @@ -213,7 +213,7 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([ ("cache_logins", { "value": "false", "help": "cache successful/failed logins for until expiration time", - "type": bool}), + "type": bool}), ("cache_successful_logins_expiry", { "value": "15", "help": "expiration time for caching successful logins in seconds", @@ -259,6 +259,10 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([ "value": "1", "help": "incorrect authentication delay", "type": positive_float}), + ("ldap_authentik_timestamp_hack", { + "value": "false", + "help": "Ignore modifyTimestamp and createTimestamp attributes. Need if Authentik LDAP server is used", + "type": bool}), ("ldap_uri", { "value": "ldap://localhost", "help": "URI to the ldap server",