summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--roundcubemail/config/main.inc.php9
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!