From d1749659d25c5b68600aef3557284cedff8dded1 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Thu, 31 Jul 2014 08:16:05 -0400
Subject: [PATCH] Backported option to set default message list mode - default_list_mode (#1487312)

---
 config/defaults.inc.php |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/config/defaults.inc.php b/config/defaults.inc.php
index 3a892ce..14612e0 100644
--- a/config/defaults.inc.php
+++ b/config/defaults.inc.php
@@ -970,9 +970,12 @@
 // If true, after message delete/move, the next message will be displayed
 $config['display_next'] = true;
 
-// 0 - Do not expand threads 
-// 1 - Expand all threads automatically 
-// 2 - Expand only threads with unread messages 
+// Default messages listing mode. One of 'threads' or 'list'.
+$config['default_list_mode'] = 'list';
+
+// 0 - Do not expand threads
+// 1 - Expand all threads automatically
+// 2 - Expand only threads with unread messages
 $config['autoexpand_threads'] = 0;
 
 // When replying:

--
Gitblit v1.9.1