Closed GoogleCodeExporter closed 9 years ago
Original comment by myroundc...@gmail.com
on 25 May 2015 at 5:33
We don't use or host an LDAP addressbook. Could you please create a test LDAP
for us? If so, please send details by our contact form
(https://myroundcube.com#contact).
Original comment by myroundc...@gmail.com
on 25 May 2015 at 6:15
You could use one of public ldap servers:
$config['ldap_public'] = array (
'public' =>
array (
'name' => 'LDAP',
'hosts' => array (
0 => 'ldap.virginia.edu',
),
'port' => 389,
'use_tls' => false,
'ldap_version' => 3,
'user_specific' => false,
'base_dn' => 'o=University of Virginia,c=US',
'bind_dn' => '',
'bind_pass' => '',
'filter' => '(objectClass=inetOrgPerson)',
'searchonly' => true,
'writable' => false,
'search_fields' => array (
0 => 'mail',
1 => 'sn',
2 => 'givenName',
3 => 'title',
4 => 'ou',
),
'fieldmap' => array (
'name' => 'cn',
'surname' => 'sn',
'firstname' => 'givenName',
'jobtitle' => 'title',
'email' => 'mail:*',
'phone:home' => 'homePhone',
'phone:work' => 'telephoneNumber',
'phone:mobile' => 'mobile',
'phone:pager' => 'pager',
'phone:other' => 'facsimileTelephoneNumber',
'street' => 'street',
'zipcode' => 'postalCode',
'region' => 'st',
'locality' => 'l',
'country' => 'c',
'organization' => 'o',
'department' => 'ou',
'notes' => 'description',
),
'scope' => 'sub',
'fuzzy_search' => true,
'groups' => array (
'base_dn' => '',
'filter' => '(objectClass=groupOfNames)',
'object_classes' => array (
0 => 'top',
1 => 'groupOfNames',
),
),
),
);
Original comment by urusha.v...@gmail.com
on 25 May 2015 at 6:47
Fixed and implemented. There is new configuration value for
preinstalled_addressbooks 'is_autoabook'.
Original comment by myroundc...@gmail.com
on 26 May 2015 at 4:31
Original issue reported on code.google.com by
urusha.v...@gmail.com
on 20 May 2015 at 10:30