| | |
| | | // Log sent messages to <log_dir>/sendmail or to syslog |
| | | $config['smtp_log'] = true; |
| | | |
| | | // Log successful logins to <log_dir>/userlogins or to syslog |
| | | // Log successful/failed logins to <log_dir>/userlogins or to syslog |
| | | $config['log_logins'] = false; |
| | | |
| | | // Log session authentication errors to <log_dir>/session or to syslog |
| | |
| | | |
| | | // use this folder to store temp files (must be writeable for apache user) |
| | | $config['temp_dir'] = 'temp/'; |
| | | |
| | | // expire files in temp_dir after 48 hours |
| | | // possible units: s, m, h, d, w |
| | | $config['temp_dir_ttl'] = '48h'; |
| | | |
| | | // enforce connections over https |
| | | // with this option enabled, all non-secure connections will be redirected. |
| | |
| | | $config['date_format'] = 'Y-m-d'; |
| | | |
| | | // give this choice of date formats to the user to select from |
| | | $config['date_formats'] = array('Y-m-d', 'd-m-Y', 'Y/m/d', 'm/d/Y', 'd/m/Y', 'd.m.Y', 'j.n.Y'); |
| | | // Note: do not use ambiguous formats like m/d/Y |
| | | $config['date_formats'] = array('Y-m-d', 'Y/m/d', 'Y.m.d', 'd-m-Y', 'd/m/Y', 'd.m.Y', 'j.n.Y'); |
| | | |
| | | // use this format for time display (date or strftime format) |
| | | $config['time_format'] = 'H:i'; |