diff options
| author | Nathan Kinkade <nkinkade@nkinka.de> | 2009-03-15 19:02:03 +0000 |
|---|---|---|
| committer | Nathan Kinkade <nkinkade@nkinka.de> | 2009-03-15 19:02:03 +0000 |
| commit | 61d007a3c6867766391afb7c5d02b85ff44df1e8 (patch) | |
| tree | 05fc43f5da5a30d65a0e8e932292bfba3512f912 | |
| parent | 5e1f7255e7c525cadc3b74b267b011a3c1b444d7 (diff) | |
Added a new config variable to specify a thread algorithm for the IMAP server, and also set the default sorting column and order to NULL.
| -rw-r--r-- | roundcubemail/config/main.inc.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/roundcubemail/config/main.inc.php b/roundcubemail/config/main.inc.php index 53f65fce2..0e9e9e28f 100644 --- a/roundcubemail/config/main.inc.php +++ b/roundcubemail/config/main.inc.php @@ -70,6 +70,11 @@ $rcmail_config['imap_auth_type'] = null; $rcmail_config['imap_root'] = null; $rcmail_config['imap_delimiter'] = null; +// The default IMAP message THREAD retrieval algorithm. +// A common one for threading would be REFERENCES. +// Make sure that your IMAP server supports this! +$rcmail_config['imap_thread_algorithm'] = 'X-REFERENCES2'; + // Automatically add this domain to user names for login // Only for IMAP servers that require full e-mail addresses for login // Specify an array with 'host' => 'domain' values to support multiple hosts @@ -315,10 +320,10 @@ $rcmail_config['max_pagesize'] = 200; $rcmail_config['mime_magic'] = '/usr/share/misc/magic'; // default sort col -$rcmail_config['message_sort_col'] = 'date'; +$rcmail_config['message_sort_col'] = NULL; // default sort order -$rcmail_config['message_sort_order'] = 'DESC'; +$rcmail_config['message_sort_order'] = NULL; // THIS OPTION WILL ALLOW THE INSTALLER TO RUN AND CAN EXPOSE SENSITIVE CONFIG DATA. // ONLY ENABLE IT IF YOU'RE REALLY SURE WHAT YOU'RE DOING! |
