Aleksander Machniak
2016-05-06 a5df27cc67b5fed339cf5db92570377be2d40a6d
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 
bcedf0 6 $config['acl_advanced_mode'] = false;
48e9c1 7
T 8 // LDAP addressbook that would be searched for user names autocomplete.
bcedf0 9 // That should be an array refering to the $config['ldap_public'] array key
48e9c1 10 // or complete addressbook configuration array.
bcedf0 11 $config['acl_users_source'] = '';
48e9c1 12
T 13 // The LDAP attribute which will be used as ACL user identifier
bcedf0 14 $config['acl_users_field'] = 'mail';
48e9c1 15
T 16 // The LDAP search filter will be &'d with search queries
bcedf0 17 $config['acl_users_filter'] = '';
48e9c1 18
ec2733 19 // Enable LDAP groups in user autocompletion.
AM 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
c7ac4b 26 // The LDAP attribute (or field name) which will be used as ACL group identifier
c1e2ce 27 $config['acl_group_field'] = 'name';
BN 28
f39f3e 29 // Include the following 'special' access control subjects in the ACL dialog;
JVM(S 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.
bcedf0 33 $config['acl_specials'] = array('anyone', 'anonymous');