Function: rmail-mailing-list-archive
rmail-mailing-list-archive is an interactive and byte-compiled
function defined in rmail.el.gz.
Signature
(rmail-mailing-list-archive)
Documentation
Browse the archive of the mailing list which delivered the current message.
Probably introduced at or before Emacs version 30.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rmail.el.gz
(defun rmail-mailing-list-archive ()
"Browse the archive of the mailing list which delivered the current message."
(interactive nil rmail-mode)
(let* ((header (rmail-get-header "List-Archive"))
(url (and (stringp header)
(string-match " *<\\([^>]*\\)>" header)
(match-string 1 header))))
(if url
(browse-url url)
(user-error
"This message does not specify a valid \"List-Archive\" URL"))))