2011-08-18 10:19:58 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// The id of the LDAP address book (which refers to the $rcmail_config['ldap_public'])
|
|
|
|
// or complete addressbook definition array.
|
|
|
|
$rcmail_config['ldap_authentication_addressbook'] = '';
|
|
|
|
|
|
|
|
// This will overwrite defined filter
|
|
|
|
$rcmail_config['ldap_authentication_filter'] = '(&(objectClass=kolabInetOrgPerson)(|(uid=%u)(mail=%fu)(alias=%fu)))';
|
|
|
|
|
|
|
|
// Use this fields (from fieldmap configuration) to get authentication ID
|
|
|
|
$rcmail_config['ldap_authentication_login'] = 'email';
|
|
|
|
|
|
|
|
// Use this fields (from fieldmap configuration) for default identity
|
|
|
|
$rcmail_config['ldap_authentication_name'] = 'name';
|
2012-09-23 09:25:06 +02:00
|
|
|
$rcmail_config['ldap_authentication_email'] = 'email';
|
2011-08-18 10:19:58 +02:00
|
|
|
|
|
|
|
?>
|