Skip to content

Commit

Permalink
Enhance docomentation.
Browse files Browse the repository at this point in the history
Fix imports
  • Loading branch information
petervarkoly committed Sep 23, 2024
1 parent c000408 commit b1c682d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
23 changes: 22 additions & 1 deletion DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -834,10 +834,31 @@ Default: `(cn={0})`

##### ldap_load_groups

Load the ldap groups of the authenticated user. These groups can be used later on to define rights.
Load the ldap groups of the authenticated user. These groups can be used later on to define rights. This also gives you access to the group calendars, if they exist.
* The group calendar will be placed under collection_root_folder/GROUPS
* The name of the calendar directory is the base64 encoded group name.
* The group calneder folders will not be created automaticaly. This must be created manualy. Here you can find a script to create group calneder folders https://github.com/Kozea/Radicale/wiki/LDAP-authentication

Default: False

##### ldap_use_ssl

Use ssl on the ldap connection

Default: False

##### ldap_ssl_verify_mode

The certifikat verification mode. NONE, OPTIONAL or REQUIRED

Default: REQUIRED

##### ldap_ssl_ca_file

The path to the CA file in pem format which is used to certificate the server certificate

Default:

##### lc_username

Сonvert username to lowercase, must be true for case-insensitive auth
Expand Down
1 change: 1 addition & 0 deletions radicale/auth/ldap.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"""
import ssl

from radicale import auth, config
from radicale.log import logger

Expand Down

0 comments on commit b1c682d

Please sign in to comment.