From 68898ee727a02712f6fd94efb489d9b616ef425e Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Fri, 25 Sep 2009 12:29:38 -0700 Subject: [PATCH] Change the default sort for inbox mode to be oldest first. This allows for more natural reading of messages in the order they were actually created. --- lib/sup/modes/inbox-mode.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sup/modes/inbox-mode.rb b/lib/sup/modes/inbox-mode.rb index f347ffb..1cd3b88 100644 --- a/lib/sup/modes/inbox-mode.rb +++ b/lib/sup/modes/inbox-mode.rb @@ -14,7 +14,7 @@ class InboxMode < ThreadIndexMode if !$config[:inbox_newest_first].nil? $config[:inbox_newest_first] else - true + false end end -- 2.43.0