diff options
author | Amin Bandali <bandali@gnu.org> | 2019-09-10 10:00:16 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-09-10 10:00:16 -0400 |
commit | 9c0b1e4a230ce4cd3779022009e185315bf68f3b (patch) | |
tree | c2897e555d36d7ff12aec22a62acdee8b8f1a5bd | |
parent | 1d01c927376afe476e066d8ce70905828d31ac1a (diff) | |
download | configs-9c0b1e4a230ce4cd3779022009e185315bf68f3b.tar.gz configs-9c0b1e4a230ce4cd3779022009e185315bf68f3b.tar.xz configs-9c0b1e4a230ce4cd3779022009e185315bf68f3b.zip |
emacs: gnus: update lists.sr.ht mail splitting regexp
[PATCH lists.sr.ht] Fix syntax of List-ID header (RFC 2919):
https://lists.sr.ht/~sircmpwn/sr.ht-dev/patches/7995
-rw-r--r-- | .emacs.d/init.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index c18bb8b..a8e7e07 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1993,9 +1993,9 @@ This function is intended for use with `ivy-ignore-buffers'." ;; (: gnus-group-split-fancy "INBOX" t "INBOX") ;; gnu (list ".*<\\(.*\\)\\.\\(non\\)?gnu\\.org>.*" "l.\\1") - ;; *@lists.sr.ht, omitting one dot if present - ;; add more \\.?\\([^.@]*\\) if needed - (list ".*<~\\(.*\\)/\\([^.@]*\\)\\.?\\([^.@]*\\)@lists.sr.ht>.*" "l.~\\1.\\2\\3") + ;; *.lists.sr.ht, omitting one dot if present + ;; add more \\.?\\([^.]*\\) if needed + (list ".*<~\\(.*\\)/\\([^.]*\\)\\.?\\([^.]*\\)\\.lists.sr.ht>.*" "l.~\\1.\\2\\3") ;; webmasters (from "webmasters\\(-comment\\)?@gnu\\.org" "webmasters") ;; other |