1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-26 16:45:52 +00:00

pam: add support

This commit is contained in:
Peter Bieringer 2025-02-22 17:49:36 +01:00
parent 954ddea006
commit 046d39b1bd

View file

@ -43,6 +43,7 @@ INTERNAL_TYPES: Sequence[str] = ("none", "remote_user", "http_x_remote_user",
"ldap", "ldap",
"imap", "imap",
"oauth2", "oauth2",
"pam",
"dovecot") "dovecot")
CACHE_LOGIN_TYPES: Sequence[str] = ( CACHE_LOGIN_TYPES: Sequence[str] = (
@ -51,6 +52,7 @@ CACHE_LOGIN_TYPES: Sequence[str] = (
"htpasswd", "htpasswd",
"imap", "imap",
"oauth2", "oauth2",
"pam",
) )
AUTH_SOCKET_FAMILY: Sequence[str] = ("AF_UNIX", "AF_INET", "AF_INET6") AUTH_SOCKET_FAMILY: Sequence[str] = ("AF_UNIX", "AF_INET", "AF_INET6")