diff options
author | thomascube <thomas@roundcube.net> | 2006-03-23 22:32:47 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-03-23 22:32:47 +0000 |
commit | 4647e1bbb5beba82605695c4dc989ca867e53244 (patch) | |
tree | e4c86b406503170cd069b0fbd05b034073113ceb /config/main.inc.php.dist | |
parent | d1dfb1e65c593fcf3e5d5d0db6c386b89552f73f (diff) |
Started implementing search function
Diffstat (limited to 'config/main.inc.php.dist')
-rw-r--r-- | config/main.inc.php.dist | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 426110291..55a84f642 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -138,7 +138,8 @@ $rcmail_config['skip_deleted'] = FALSE; $rcmail_config['generic_message_footer'] = ''; // this string is used as a delimiter for message headers when sending -$rcmail_config['mail_header_delimiter'] = "\r\n"; +// leave empty for auto-detection +$rcmail_config['mail_header_delimiter'] = NULL; // in order to enable public ldap search, create a config array // like the Verisign example below. if you would like to test, @@ -165,6 +166,9 @@ $rcmail_config['pagesize'] = 40; // use this timezone to display date/time $rcmail_config['timezone'] = 1; +// daylight savings are On +$rcmail_config['dst_active'] = TRUE; + // prefer displaying HTML messages $rcmail_config['prefer_html'] = TRUE; |