From 8a53939fae94845b540ca681653e1215f05be602 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sun, 19 Oct 2025 18:54:37 +0200 Subject: [PATCH] strict_preconditions: new config option --- radicale/config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/radicale/config.py b/radicale/config.py index 7693e9e6..a4ba6610 100644 --- a/radicale/config.py +++ b/radicale/config.py @@ -430,6 +430,10 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([ "value": "", "help": "command that is run after changes to storage", "type": str}), + ("strict_preconditions", { + "value": "False", + "help": "strict preconditions check on PUT", + "type": bool}), ("_filesystem_fsync", { "value": "True", "help": "sync all changes to filesystem during requests",