From 9152d2b84ecb37b9ca643d3219752f7f60f79aa1 Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Wed, 11 Jan 2023 23:46:06 +0100 Subject: Fix Gnus subject normalization MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Can't even remember what this was about; obviously positives when grouping threads due to subject-matching being too lax? 🤷 --- .gnus | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.gnus') diff --git a/.gnus b/.gnus index a705646..32884ee 100644 --- a/.gnus +++ b/.gnus @@ -93,7 +93,7 @@ (setq my/gnus-summary-normalize-subject (rx-to-string `(seq bol - (+ (or ,@(my/gnus-reply-prefixes) + (+ (or (seq word-start (or ,@(my/gnus-reply-prefixes)) word-end) (seq "bug#" (+ digit)) (seq "[" (or "External" "SPAM UNSURE") "]")) (? (* space) ":") (* space))))) -- cgit v1.2.3