mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
Enhance docomentation.
Fix imports
This commit is contained in:
parent
c000408429
commit
b1c682de57
2 changed files with 23 additions and 1 deletions
|
@ -834,10 +834,31 @@ Default: `(cn={0})`
|
||||||
|
|
||||||
##### ldap_load_groups
|
##### 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
|
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
|
##### lc_username
|
||||||
|
|
||||||
Сonvert username to lowercase, must be true for case-insensitive auth
|
Сonvert username to lowercase, must be true for case-insensitive auth
|
||||||
|
|
|
@ -29,6 +29,7 @@ Following parameters controls SSL connections:
|
||||||
|
|
||||||
"""
|
"""
|
||||||
import ssl
|
import ssl
|
||||||
|
|
||||||
from radicale import auth, config
|
from radicale import auth, config
|
||||||
from radicale.log import logger
|
from radicale.log import logger
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue