- Fix gn and givenName should be synonymous in LDAP addressbook (#1485892)

release-0.6
alecpl 15 years ago
parent 08ff050efc
commit 4368a079f5

@ -1,6 +1,7 @@
CHANGELOG RoundCube Webmail
===========================
- Fix gn and givenName should be synonymous in LDAP addressbook (#1485892)
- Add mail_domain to LDAP email entries without @ sign (#1485201)
- Fix saving empty values in LDAP contact data (#1485781)
- Fix LDAP contact update when RDN field is changed (#1485788)

@ -55,7 +55,10 @@ class rcube_ldap extends rcube_addressbook
foreach ($p as $prop => $value)
if (preg_match('/^(.+)_field$/', $prop, $matches))
$this->fieldmap[$matches[1]] = strtolower($value);
$this->fieldmap[$matches[1]] = $this->_attr_name(strtolower($value));
foreach ($this->prop['required_fields'] as $key => $val)
$this->prop['required_fields'][$key] = $this->_attr_name(strtolower($val));
$this->sort_col = $p['sort'];
@ -552,7 +555,7 @@ class rcube_ldap extends rcube_addressbook
*
* @access private
*/
function _exec_search()
private function _exec_search()
{
if ($this->ready)
{
@ -569,7 +572,7 @@ class rcube_ldap extends rcube_addressbook
/**
* @access private
*/
function _ldap2result($rec)
private function _ldap2result($rec)
{
global $RCMAIL;
@ -595,12 +598,29 @@ class rcube_ldap extends rcube_addressbook
/**
* @access private
*/
function _map_field($field)
private function _map_field($field)
{
return $this->fieldmap[$field];
}
/**
* @access private
*/
private function _attr_name($name)
{
// list of known attribute aliases
$aliases = array(
'gn' => 'givenname',
'rfc822mailbox' => 'mail',
'userid' => 'uid',
'emailaddress' => 'email',
'pkcs9email' => 'email',
);
return isset($aliases[$name]) ? $aliases[$name] : $name;
}
/**
* @static
*/

@ -56,7 +56,6 @@ else
if (!empty($_REQUEST['_search']) && isset($_SESSION['search'][$_REQUEST['_search']]))
$CONTACTS->set_search_set($_SESSION['search'][$_REQUEST['_search']]);
// set data source env
$OUTPUT->set_env('source', $source ? $source : '0');
$OUTPUT->set_env('readonly', $CONTACTS->readonly, false);

@ -32,7 +32,7 @@ if ($result->count > 0)
{
// save search settings in session
$_SESSION['search'][$search_request] = $CONTACTS->get_search_set();
// create javascript list
rcmail_js_contacts_list($result);
}

Loading…
Cancel
Save