| | |
| | | // Log sent messages |
| | | $rcmail_config['smtp_log'] = TRUE; |
| | | |
| | | // how many seconds must pass between emails sent by a user |
| | | $rcmail_config['sendmail_delay'] = 0; |
| | | |
| | | // these cols are shown in the message list |
| | | // available cols are: subject, from, to, cc, replyto, date, size, encoding, flag |
| | | $rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size', 'flag'); |
| | |
| | | // please provide a string of exactly 24 chars. |
| | | $rcmail_config['des_key'] = 'rcmail-!24ByteDESkey*Str'; |
| | | |
| | | // the default locale setting |
| | | $rcmail_config['language'] = 'en_US'; |
| | | // the default locale setting (leave empty for auto-detection) |
| | | // RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR |
| | | $rcmail_config['language'] = null; |
| | | |
| | | // use this format for short date display |
| | | $rcmail_config['date_short'] = 'D H:i'; |
| | |
| | | // don't allow these settings to be overriden by the user |
| | | $rcmail_config['dont_override'] = array(); |
| | | |
| | | // allow users to add and delete sender identities |
| | | $rcmail_config['multiple_identities'] = true; |
| | | |
| | | // try to load host-specific configuration |
| | | // see http://trac.roundcube.net/wiki/Howto_Config for more details |
| | | $rcmail_config['include_host_config'] = false; |
| | |
| | | $rcmail_config['pagesize'] = 40; |
| | | |
| | | // use this timezone to display date/time |
| | | $rcmail_config['timezone'] = intval(date('O'))/100 - date('I'); |
| | | $rcmail_config['timezone'] = 'auto'; |
| | | |
| | | // is daylight saving On? |
| | | $rcmail_config['dst_active'] = (bool)date('I'); |