comparison plugins/acl/config.inc.php.dist @ 0:1e000243b222

vanilla 1.3.3 distro, I hope
author Charlie Root
date Thu, 04 Jan 2018 15:50:29 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:1e000243b222
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 $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 $config['ldap_public'] array key
10 // or complete addressbook configuration array.
11 $config['acl_users_source'] = '';
12
13 // The LDAP attribute which will be used as ACL user identifier
14 $config['acl_users_field'] = 'mail';
15
16 // The LDAP search filter will be &'d with search queries
17 $config['acl_users_filter'] = '';
18
19 // Enable LDAP groups in user autocompletion.
20 // Note: LDAP addressbook defined in acl_users_source must include groups config
21 $config['acl_groups'] = false;
22
23 // Prefix added to the group name to build IMAP ACL identifier
24 $config['acl_group_prefix'] = 'group:';
25
26 // The LDAP attribute (or field name) which will be used as ACL group identifier
27 $config['acl_group_field'] = 'name';
28
29 // Include the following 'special' access control subjects in the ACL dialog;
30 // Defaults to array('anyone', 'anonymous') (not when set to an empty array)
31 // Example: array('anyone') to exclude 'anonymous'.
32 // Set to an empty array to exclude all special aci subjects.
33 $config['acl_specials'] = array('anyone', 'anonymous');