aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2024-06-10 12:57:36 +0200
committerRobin Jarry <robin@jarry.cc>2024-06-25 15:28:11 +0200
commit4e920d1def515f2c6d7da5168e39fd89fb200f63 (patch)
tree0eb1ff1a5827d5035246561479f0c233e24de32d /app
parent7f66297c521fca8f9bc17280f0a96874598bde96 (diff)
downloadaerc-4e920d1def515f2c6d7da5168e39fd89fb200f63.tar.gz
threadbuilder: allow threading by subject
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 <robin@jarry.cc> Tested-by: Matěj Cepl <mcepl@cepl.eu>
Diffstat (limited to 'app')
-rw-r--r--app/account.go1
1 files changed, 1 insertions, 0 deletions
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,