allow uid as RDN attribute for inetOrgPerson
This commit is contained in:
parent
606a0c42f3
commit
42003d687c
|
@ -10,6 +10,7 @@
|
|||
-> config editor: extra space (1702269)
|
||||
-> fixed some inconsistent help entries (1694863)
|
||||
-> user list: refreshing GID translation did not work (1719168)
|
||||
-> allow uid as RDN attribute for inetOrgPerson (1740499)
|
||||
|
||||
|
||||
28.03.2007 1.3.0
|
||||
|
|
|
@ -95,7 +95,7 @@ class inetOrgPerson extends baseModule {
|
|||
// this is a base module
|
||||
$return["is_base"] = true;
|
||||
// RDN attribute
|
||||
$return["RDN"] = array("cn" => "low");
|
||||
$return["RDN"] = array("cn" => "normal", 'uid' => 'low');
|
||||
// LDAP filter
|
||||
$return["ldap_filter"] = array('or' => "(objectClass=inetOrgPerson)");
|
||||
// module dependencies
|
||||
|
|
|
@ -117,7 +117,7 @@ class posixAccount extends baseModule {
|
|||
// alias name
|
||||
$return["alias"] = _("Unix");
|
||||
// RDN attributes
|
||||
$return["RDN"] = array("uid" => "normal", "cn" => "low");
|
||||
$return["RDN"] = array("uid" => "high", "cn" => "low");
|
||||
// managed object classes
|
||||
$return['objectClasses'] = array('posixAccount');
|
||||
// LDAP aliases
|
||||
|
|
Loading…
Reference in New Issue