radicale: Enable lc_username for case-insensitive auth

Enable lc_username = True in [auth] section during setup.

Bump version.

Signed-off-by: Frederico Gomes <fredericojfgomes@gmail.com>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Frederico Gomes 2026-04-15 18:58:06 +01:00 committed by James Valleroy
parent 5cebe7ffe0
commit dc3439fd70
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808
2 changed files with 2 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class RadicaleApp(app_module.App):
app_id = 'radicale'
_version = 5
_version = 6
def __init__(self) -> None:
"""Create components for the app."""

View File

@ -24,6 +24,7 @@ def setup():
"""
aug = load_augeas()
aug.set('auth/type', 'remote_user')
aug.set('auth/lc_username', 'True')
aug.save()
# Service is started again by socket.
action_utils.service_stop(SERVICE_NAME)