diff options
author | thomascube <thomas@roundcube.net> | 2010-03-17 12:24:09 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-03-17 12:24:09 +0000 |
commit | f52c936f4d451a5d3a87d2501aa5a1701cdafde5 (patch) | |
tree | e95611d6d47ea75e76d15ebbdea1daf4a3de83ba /config/main.inc.php.dist | |
parent | f4f1c442f7eb3edbb48dbcc705c6d83dcaf8e021 (diff) |
Merged devel-threads branch (r3066:3364) back into trunk
Diffstat (limited to 'config/main.inc.php.dist')
-rw-r--r-- | config/main.inc.php.dist | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 5709a6058..299d83417 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -232,10 +232,11 @@ $rcmail_config['plugins'] = array(); // USER INTERFACE // ---------------------------------- -// default sort col -$rcmail_config['message_sort_col'] = 'date'; +// default messages sort column. Use empty value for default server's sorting, +// or 'arrival', 'date', 'subject', 'from', 'to', 'size', 'cc' +$rcmail_config['message_sort_col'] = ''; -// default sort order +// default messages sort order $rcmail_config['message_sort_order'] = 'DESC'; // These cols are shown in the message list. Available cols are: @@ -461,8 +462,10 @@ $rcmail_config['check_all_folders'] = false; // If true, after message delete/move, the next message will be displayed $rcmail_config['display_next'] = false; -// If true, messages list will be sorted by message index instead of message date -$rcmail_config['index_sort'] = true; +// 0 - Do not expand threads +// 1 - Expand all threads automatically +// 2 - Expand only threads with unread messages +$rcmail_config['autoexpand_threads'] = 0; // When replying place cursor above original message (top posting) $rcmail_config['top_posting'] = false; |