From 770e934859e40522e850afcadd84ccae4f711d59 Mon Sep 17 00:00:00 2001 From: shroomify-it <131482198+shroomify-it@users.noreply.github.com> Date: Sun, 28 Jan 2024 08:42:19 +0100 Subject: [PATCH] example_configs: Create radicale.md --- example_configs/radicale.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 example_configs/radicale.md diff --git a/example_configs/radicale.md b/example_configs/radicale.md new file mode 100644 index 0000000..7840031 --- /dev/null +++ b/example_configs/radicale.md @@ -0,0 +1,20 @@ +# Configuration of RADICALE authentification with lldap. + +# Fork of the radicale LDAP plugin to work with LLDAP : https://github.com/shroomify-it/radicale-auth-ldap-plugin + +# Full docker-compose stack : https://github.com/shroomify-it/docker-deploy_radicale-agendav-lldap + +# Radicale config file v0.3 (inside docker container /etc/radicale/config https://radicale.org/v3.html#configuration) + +```toml +[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 +```