diff options
author | Bogdano Arendartchuk <bogdano@mandriva.org> | 2007-06-18 17:31:12 +0000 |
---|---|---|
committer | Bogdano Arendartchuk <bogdano@mandriva.org> | 2007-06-18 17:31:12 +0000 |
commit | 73133d33137c6c6d70ceca7600f70a39e2a708ba (patch) | |
tree | 786a2483c4c807de725c9242adc93cf04d686853 /README.LDAP | |
parent | b1d0787e062a976b33113f08e12c6d9193dbd2e7 (diff) | |
download | mgarepo-73133d33137c6c6d70ceca7600f70a39e2a708ba.tar mgarepo-73133d33137c6c6d70ceca7600f70a39e2a708ba.tar.gz mgarepo-73133d33137c6c6d70ceca7600f70a39e2a708ba.tar.bz2 mgarepo-73133d33137c6c6d70ceca7600f70a39e2a708ba.tar.xz mgarepo-73133d33137c6c6d70ceca7600f70a39e2a708ba.zip |
ldapusers plugin: ldap-starttls + ldap-uri configuration options
(nice commit separation)
Diffstat (limited to 'README.LDAP')
-rw-r--r-- | README.LDAP | 11 |
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. |