Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 766 Bytes

radicale.md

File metadata and controls

29 lines (25 loc) · 766 Bytes

Configuration of Radicale authentication with LLDAP

Native configuration (requires Radicale >=3.3.0)

[auth]
type = ldap
ldap_uri = ldap://lldap:3890
ldap_base = dc=example,dc=com
ldap_reader_dn = uid=admin,ou=people,dc=example,dc=com
ldap_secret = CHANGEME
ldap_filter = (&(objectClass=person)(uid={0}))
lc_username = True

Plugin configuration (requires radicale-auth-ldap plugin and Radicale >=3.0)

[auth]
type = radicale_auth_ldap
ldap_url = ldap://lldap:3890
ldap_base = dc=example,dc=com
ldap_attribute = uid
ldap_filter = (objectClass=person)
ldap_binddn = uid=admin,ou=people,dc=example,dc=com
ldap_password = CHANGEME
ldap_scope = LEVEL
ldap_support_extended = no