roundcubemail-plugins-kolab/plugins/kolab_delegation/config.inc.php.dist
Aleksander Machniak cbd97e52cd Support Organization field in identities.
Fix purging identities - use the same email fields as in kolab_auth.
2012-12-19 15:31:14 +01:00

16 lines
636 B
Text

<?php
// This will overwrite defined LDAP filter
// Note: LDAP addressbook defined for kolab_auth plugin is used
$rcmail_config['kolab_delegation_filter'] = '(objectClass=kolabInetOrgPerson)';
// 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
$rcmail_config['kolab_delegation_delegate_field'] = 'kolabDelegate';
// Remove all user identities which do not match the user's primary or alias
// addresses and delegator's addresses
$rcmail_config['kolab_delegation_purge_identities'] = false;
?>