Function: gnus-mailing-list-owner
gnus-mailing-list-owner is an interactive and byte-compiled function
defined in gnus-ml.el.gz.
Signature
(gnus-mailing-list-owner)
Documentation
Mail to the mailing list owner.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-ml.el.gz
(defun gnus-mailing-list-owner ()
"Mail to the mailing list owner."
(interactive)
(let ((list-owner
(with-current-buffer gnus-original-article-buffer
(gnus-fetch-field "list-owner"))))
(cond (list-owner (gnus-mailing-list-message list-owner))
(t (gnus-message 1 "no list-owner in this group")))))