From 61d007a3c6867766391afb7c5d02b85ff44df1e8 Mon Sep 17 00:00:00 2001 From: Nathan Kinkade Date: Sun, 15 Mar 2009 19:02:03 +0000 Subject: 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. --- roundcubemail/config/main.inc.php | 9 +++++++-- 1 file 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! -- cgit v1.2.3