Changes between Version 16 and Version 17 of LdapPlugin


Ignore:
Timestamp:
Jun 20, 2006, 10:17:17 PM (18 years ago)
Author:
Emmanuel Blot
Comment:

Document the new group_rdn and user_rdn options

Legend:

Unmodified
Added
Removed
Modified
  • LdapPlugin

    v16 v17  
    116116# BaseDN
    117117basedn = dc=example,dc=com
    118 # BaseDN for users (defaults to basedn)
    119 user_basedn = dc=example,dc=com
    120 # BaseDN for group of names (defaults to basedn)
    121 group_basedn = dc=example,dc=com
     118# Relative DN for users (defaults to none)
     119user_rdn =
     120# Relative DN for group of names (defaults to none)
     121group_rdn =
    122122# objectclass for groups
    123123groupname = groupofnames
     
    168168enable = true
    169169basedn = dc=example,dc=org
     170user_rdn = ou=people
     171group_rdn = ou=groups
    170172store_bind = true
    171173bind_user = cn=tracadmin,dc=example,dc=org
    172174bind_passwd = mypasswd
    173175}}}
     176
     177==== Note about `group_rdn` and `user_rdn` ====
     178
     179Starting from release '''v0.4.0''', `group_basedn` and `user_basedn` options have been superseeded with `group_rdn` and `user_rdn`.[[BR]]
     180The new settings define the relative DNs respectively for the group and the user subtree, based on the common `basedn` trunk. For example:
     181  * `ou=people,dc=example,dc=org` would require the following settings:
     182{{{
     183basedn = dc=example,dc=org
     184user_rdn = ou=people
     185}}}
     186  * `ou=groups,dc=example,dc=org` would require the following settings:
     187{{{
     188basedn = dc=example,dc=org
     189group_rdn = ou=groups
     190}}}
     191
    174192
    175193== Authenticated LDAP connections ==