Merge pull request #58 from kanarip/master
Add option to prevent mandatory inclusion of 'anyone' and 'anonymous' in ACL configuration
| | |
| | | |
| | | // Load localization and include scripts |
| | | $this->load_config(); |
| | | $this->specials = $this->rc->config->get('acl_specials', $this->specials); |
| | | $this->add_texts('localization/', array('deleteconfirm', 'norights', |
| | | 'nouser', 'deleting', 'saving')); |
| | | $this->include_script('acl.js'); |
| | |
| | | // The LDAP search filter will be &'d with search queries |
| | | $rcmail_config['acl_users_filter'] = ''; |
| | | |
| | | // Include the following 'special' access control subjects in the ACL dialog; |
| | | // Defaults to array('anyone', 'anonymous') (not when set to an empty array) |
| | | // Example: array('anyone') to exclude 'anonymous'. |
| | | // Set to an empty array to exclude all special aci subjects. |
| | | $rcmail_config['acl_specials'] = array('anyone', 'anonymous'); |
| | | |
| | | ?> |