From 9485e58081d2bca9e6ee9b9c656e1d65ea05071b Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Tue, 24 Mar 2026 12:24:07 +0100 Subject: [PATCH] sharing/config: mark legacy config options --- radicale/config.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/radicale/config.py b/radicale/config.py index 81504364..b223ff3c 100644 --- a/radicale/config.py +++ b/radicale/config.py @@ -487,10 +487,10 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([ "value": "false", "help": "enable sharing of collection by map", "type": bool}), - ("collection_by_bday", { - "value": "false", - "help": "enable sharing of collection by bday (conversion on-the-fly)", - "type": bool}), + ("collection_by_bday", { # TODO: remove/3.7.0-final + "value": "false", # TODO: remove/3.7.0-final + "help": "enable sharing of collection by bday (conversion on-the-fly)", # TODO: remove/3.7.0-final + "type": bool}), # TODO: remove/3.7.0-final ("permit_create_token", { "value": "false", "help": "permit create of token-based sharing", @@ -499,10 +499,10 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([ "value": "false", "help": "permit create of map-based sharing", "type": bool}), - ("permit_create_bday", { - "value": "false", - "help": "permit create of bday-based sharing", - "type": bool}), + ("permit_create_bday", { # TODO: remove/3.7.0-final + "value": "false", # TODO: remove/3.7.0-final + "help": "permit create of bday-based sharing", # TODO: remove/3.7.0-final + "type": bool}), # TODO: remove/3.7.0-final ("permit_properties_overlay", { "value": "false", "help": "permit properties overlay",