alecpl
2012-04-14 651da7934ed4c13e2cbc2e4a82caf2ebaba87373
commit | author | age
48e9c1 1 <?php
T 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 ?>