1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-09-06 20:10:56 +00:00

Initial version of ldap authentication backend.

This commit is contained in:
Peter Varkoly 2022-02-19 11:57:58 +01:00
parent 47e42a46c1
commit 2dc0fd29dc
4 changed files with 156 additions and 2 deletions

View file

@ -33,7 +33,7 @@ from typing import Sequence, Tuple, Union
from radicale import config, types, utils
INTERNAL_TYPES: Sequence[str] = ("none", "remote_user", "http_x_remote_user",
"htpasswd")
"htpasswd", "ldap")
def load(configuration: "config.Configuration") -> "BaseAuth":