diff options
author | Bogdano Arendartchuk <bogdano@mandriva.org> | 2007-06-18 17:15:38 +0000 |
---|---|---|
committer | Bogdano Arendartchuk <bogdano@mandriva.org> | 2007-06-18 17:15:38 +0000 |
commit | 3974c8e07c12bf9475637948dff9604079b56020 (patch) | |
tree | 7c2fca18f952e0b55e9e241e413f4be5e270f54f /README.LDAP | |
parent | 7bcb2443695500a03b96f04a77a7615232a584a9 (diff) | |
download | mgarepo-3974c8e07c12bf9475637948dff9604079b56020.tar mgarepo-3974c8e07c12bf9475637948dff9604079b56020.tar.gz mgarepo-3974c8e07c12bf9475637948dff9604079b56020.tar.bz2 mgarepo-3974c8e07c12bf9475637948dff9604079b56020.tar.xz mgarepo-3974c8e07c12bf9475637948dff9604079b56020.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. |