roundcubemail-plugins-kolab/plugins/kolab_delegation/config.inc.php.dist

17 lines
674 B
Text
Raw Normal View History

2012-12-04 15:03:16 +01:00
<?php
// This will overwrite defined LDAP filter
// Note: LDAP addressbook defined for kolab_auth plugin is used
$config['kolab_delegation_filter'] = '(|(objectClass=kolabInetOrgPerson)(&(objectclass=kolabsharedfolder)(kolabFolderType=mail)))';
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
// 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
// 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
?>