2012-12-04 15:03:16 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// This will overwrite defined LDAP filter
|
2012-12-19 15:31:14 +01:00
|
|
|
// Note: LDAP addressbook defined for kolab_auth plugin is used
|
2014-08-25 09:07:31 +02:00
|
|
|
$config['kolab_delegation_filter'] = '(objectClass=kolabInetOrgPerson)';
|
2012-12-04 15:03:16 +01:00
|
|
|
|
|
|
|
// Delegates field (from fieldmap configuration) to get delegates list
|
|
|
|
// Note: This is a field name, not LDAP attribute name
|
2012-12-19 15:31:14 +01:00
|
|
|
// Note: LDAP addressbook defined for kolab_auth plugin is used
|
2014-08-25 09:07:31 +02:00
|
|
|
$config['kolab_delegation_delegate_field'] = 'kolabDelegate';
|
2012-12-04 15:03:16 +01:00
|
|
|
|
2013-06-25 12:31:06 +02:00
|
|
|
// User authentication ID field (from fieldmap configuration)
|
|
|
|
// See kolab_auth plugin config
|
2014-08-25 09:07:31 +02:00
|
|
|
$config['kolab_delegation_login_field'] = 'email';
|
2013-06-25 12:31:06 +02:00
|
|
|
|
|
|
|
// Use this fields (from fieldmap configuration) for identities
|
|
|
|
// If the value array contains more than one field, first non-empty will be used
|
|
|
|
// Note: These aren't LDAP attributes, but field names in config
|
|
|
|
// Note: If there's more than one email address, as many identities will be created
|
|
|
|
// See kolab_auth plugin config
|
2014-08-25 09:07:31 +02:00
|
|
|
$config['kolab_delegation_name_field'] = array('name', 'cn');
|
|
|
|
$config['kolab_delegation_email_field'] = array('email');
|
2013-06-25 12:31:06 +02:00
|
|
|
|
2012-12-04 15:03:16 +01:00
|
|
|
// Remove all user identities which do not match the user's primary or alias
|
|
|
|
// addresses and delegator's addresses
|
2014-08-25 09:07:31 +02:00
|
|
|
$config['kolab_delegation_purge_identities'] = false;
|
2012-12-04 15:03:16 +01:00
|
|
|
|
|
|
|
?>
|