| | |
| | | // set to false if only registered users can use this service |
| | | $rcmail_config['auto_create_user'] = true; |
| | | |
| | | // Enables possibility to log in using email address from user identities |
| | | $rcmail_config['user_aliases'] = false; |
| | | |
| | | // use this folder to store log files (must be writeable for apache user) |
| | | // This is used by the 'file' log driver. |
| | | $rcmail_config['log_dir'] = 'logs/'; |
| | |
| | | // Includes should be interpreted as PHP files |
| | | $rcmail_config['skin_include_php'] = false; |
| | | |
| | | // display software version on login screen |
| | | $rcmail_config['display_version'] = false; |
| | | |
| | | // Session lifetime in minutes |
| | | // must be greater than 'keep_alive'/60 |
| | | $rcmail_config['session_lifetime'] = 10; |
| | |
| | | $rcmail_config['session_storage'] = 'db'; |
| | | |
| | | // Use these hosts for accessing memcached |
| | | // Define any number of hosts in the form hostname:port |
| | | $rcmail_config['memcache_hosts'] = null; // e.g. array( 'localhost:11211', '192.168.1.12:11211' ); |
| | | // Define any number of hosts in the form of hostname:port or unix:///path/to/socket.file |
| | | $rcmail_config['memcache_hosts'] = null; // e.g. array( 'localhost:11211', '192.168.1.12:11211', 'unix:///var/tmp/memcached.sock' ); |
| | | |
| | | // check client IP in session athorization |
| | | $rcmail_config['ip_check'] = false; |
| | |
| | | 'name' => 'cn', |
| | | 'surname' => 'sn', |
| | | 'firstname' => 'givenName', |
| | | 'title' => 'title', |
| | | 'jobtitle' => 'title', |
| | | 'email' => 'mail:*', |
| | | 'phone:home' => 'homePhone', |
| | | 'phone:work' => 'telephoneNumber', |
| | |
| | | $rcmail_config['default_charset'] = 'ISO-8859-1'; |
| | | |
| | | // skin name: folder from skins/ |
| | | $rcmail_config['skin'] = 'default'; |
| | | $rcmail_config['skin'] = 'larry'; |
| | | |
| | | // show up to X items in messages list view |
| | | $rcmail_config['mail_pagesize'] = 50; |