File plesk.acl.inc.php of Package roundcubemail-selfcontained (Revision 6eb638a8ff7b991a8e24a0a042ad1f86)

Currently displaying revision 6eb638a8ff7b991a8e24a0a042ad1f86 , Show latest

34
 
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 referring 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');
34