aboutsummaryrefslogtreecommitdiffstats
path: root/README.LDAP
diff options
context:
space:
mode:
Diffstat (limited to 'README.LDAP')
-rw-r--r--README.LDAP11
1 files changed, 10 insertions, 1 deletions
diff --git a/README.LDAP b/README.LDAP
index 863be6d..c22a7fa 100644
--- a/README.LDAP
+++ b/README.LDAP
@@ -3,7 +3,13 @@ A Repsys plugin for obtaining users from a LDAP server.
In order to enable the plugin, the user must define the following
options in the [global] section of repsys.conf:
- ldap-server [required]
+ ldap-uri [required if ldap-server is unset]
+ the URI of the server, you can refer to more than one server by
+ adding more URIs separated by spaces::
+
+ ldap-uri = ldap://ldap.network/ ldaps://backup.network:22389/
+
+ ldap-server [required if ldap-uri is unset]
the host name of the LDAP server
ldap-port [optional] [default: 389]
the port of the LDAP server
@@ -13,6 +19,9 @@ options in the [global] section of repsys.conf:
the DN used to bind
ldap-bindpw [optional] [default: empty]
the password used to bind
+ ldap-starttls [optional] [default: no]
+ use "yes" or "no" to enable or disable the use of the STARTTLS
+ LDAP extension
ldap-filterformat [optional]
[default: (&(objectClass=inetOrgPerson)(uid=$username))]
RFC-2254 filter string used in the search of the user entry.