From 4e920d1def515f2c6d7da5168e39fd89fb200f63 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Mon, 10 Jun 2024 12:57:36 +0200 Subject: threadbuilder: allow threading by subject MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If no match were found in the References and In-Reply-To headers, allow threading by looking at subjects. This behaviour is disabled by default. Add a setting to enable it. Changelog-added: Allow fallback to threading by subject with `[ui].threading-by-subject`. Signed-off-by: Robin Jarry Tested-by: Matěj Cepl --- app/account.go | 1 + 1 file changed, 1 insertion(+) (limited to 'app') diff --git a/app/account.go b/app/account.go index 7ce10f0f..9de1eaf9 100644 --- a/app/account.go +++ b/app/account.go @@ -254,6 +254,7 @@ func (acct *AccountView) newStore(name string) *lib.MessageStore { uiConf.ForceClientThreads, uiConf.ClientThreadsDelay, uiConf.SelectLast, + uiConf.ThreadingBySubject, uiConf.ReverseOrder, uiConf.ReverseThreadOrder, uiConf.SortThreadSiblings, -- cgit