You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.inc.php.dist 1.3KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // Default look of access rights table
  3. // In advanced mode all access rights are displayed separately
  4. // In simple mode access rights are grouped into four groups: read, write, delete, full
  5. $config['acl_advanced_mode'] = false;
  6. // LDAP addressbook that would be searched for user names autocomplete.
  7. // That should be an array refering to the $config['ldap_public'] array key
  8. // or complete addressbook configuration array.
  9. $config['acl_users_source'] = '';
  10. // The LDAP attribute which will be used as ACL user identifier
  11. $config['acl_users_field'] = 'mail';
  12. // The LDAP search filter will be &'d with search queries
  13. $config['acl_users_filter'] = '';
  14. // Enable LDAP groups in user autocompletion.
  15. // Note: LDAP addressbook defined in acl_users_source must include groups config
  16. $config['acl_groups'] = false;
  17. // Prefix added to the group name to build IMAP ACL identifier
  18. $config['acl_group_prefix'] = 'group:';
  19. // The LDAP attribute (or field name) which will be used as ACL group identifier
  20. $config['acl_group_field'] = 'name';
  21. // Include the following 'special' access control subjects in the ACL dialog;
  22. // Defaults to array('anyone', 'anonymous') (not when set to an empty array)
  23. // Example: array('anyone') to exclude 'anonymous'.
  24. // Set to an empty array to exclude all special aci subjects.
  25. $config['acl_specials'] = array('anyone', 'anonymous');