allow uid as RDN attribute for inetOrgPerson

This commit is contained in:
Roland Gruber 2007-07-03 15:43:52 +00:00
parent 606a0c42f3
commit 42003d687c
3 changed files with 3 additions and 2 deletions

View File

@ -10,6 +10,7 @@
-> config editor: extra space (1702269) -> config editor: extra space (1702269)
-> fixed some inconsistent help entries (1694863) -> fixed some inconsistent help entries (1694863)
-> user list: refreshing GID translation did not work (1719168) -> user list: refreshing GID translation did not work (1719168)
-> allow uid as RDN attribute for inetOrgPerson (1740499)
28.03.2007 1.3.0 28.03.2007 1.3.0

View File

@ -95,7 +95,7 @@ class inetOrgPerson extends baseModule {
// this is a base module // this is a base module
$return["is_base"] = true; $return["is_base"] = true;
// RDN attribute // RDN attribute
$return["RDN"] = array("cn" => "low"); $return["RDN"] = array("cn" => "normal", 'uid' => 'low');
// LDAP filter // LDAP filter
$return["ldap_filter"] = array('or' => "(objectClass=inetOrgPerson)"); $return["ldap_filter"] = array('or' => "(objectClass=inetOrgPerson)");
// module dependencies // module dependencies

View File

@ -117,7 +117,7 @@ class posixAccount extends baseModule {
// alias name // alias name
$return["alias"] = _("Unix"); $return["alias"] = _("Unix");
// RDN attributes // RDN attributes
$return["RDN"] = array("uid" => "normal", "cn" => "low"); $return["RDN"] = array("uid" => "high", "cn" => "low");
// managed object classes // managed object classes
$return['objectClasses'] = array('posixAccount'); $return['objectClasses'] = array('posixAccount');
// LDAP aliases // LDAP aliases