]> git.donarmstrong.com Git - roundcube.git/blob - plugins/acl/config.inc.php.dist
Imported Upstream version 0.6+dfsg
[roundcube.git] / plugins / acl / config.inc.php.dist
1 <?php
2
3 // Default look of access rights table
4 // In advanced mode all access rights are displayed separately
5 // In simple mode access rights are grouped into four groups: read, write, delete, full 
6 $rcmail_config['acl_advanced_mode'] = false;
7
8 // LDAP addressbook that would be searched for user names autocomplete.
9 // That should be an array refering to the $rcmail_config['ldap_public'] array key
10 // or complete addressbook configuration array.
11 $rcmail_config['acl_users_source'] = '';
12
13 // The LDAP attribute which will be used as ACL user identifier
14 $rcmail_config['acl_users_field'] = 'mail';
15
16 // The LDAP search filter will be &'d with search queries
17 $rcmail_config['acl_users_filter'] = '';
18
19 ?>