summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/acl/config.inc.php.dist12
1 files changed, 8 insertions, 4 deletions
diff --git a/plugins/acl/config.inc.php.dist b/plugins/acl/config.inc.php.dist
index a8a212d89..f957a233a 100644
--- a/plugins/acl/config.inc.php.dist
+++ b/plugins/acl/config.inc.php.dist
@@ -5,11 +5,15 @@
// In simple mode access rights are grouped into four groups: read, write, delete, full
$rcmail_config['acl_advanced_mode'] = false;
-// The ID of the LDAP addressbook that would be searched for existing user names.
-// (This should be a string, which refers to the $rcmail_config['ldap_public'] array.)
+// LDAP addressbook that would be searched for user names autocomplete.
+// That should be an array refering to the $rcmail_config['ldap_public'] array key
+// or complete addressbook configuration array.
$rcmail_config['acl_users_source'] = '';
-// The LDAP attribute which will be used as a user identifier
-$rcmail_config['acl_users_uid_field'] = 'uid';
+// The LDAP attribute which will be used as ACL user identifier
+$rcmail_config['acl_users_field'] = 'mail';
+
+// The LDAP search filter will be &'d with search queries
+$rcmail_config['acl_users_filter'] = '';
?>