lldap/example_configs/radicale.md
PopeRigby 120ad34f92
Some checks failed
Rust / pre_job (push) Has been cancelled
Rust / cargo test (push) Has been cancelled
Rust / cargo clippy (push) Has been cancelled
Rust / cargo fmt (push) Has been cancelled
Rust / Code coverage (push) Has been cancelled
example_configs: Update Radicale guide with configuration for Radicale 3.3.0 (#979)
2024-09-22 21:58:53 +02:00

766 B

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