Function: gnus-summary-reply-to-list-with-original
gnus-summary-reply-to-list-with-original is an interactive and
byte-compiled function defined in gnus-msg.el.gz.
Signature
(gnus-summary-reply-to-list-with-original N &optional WIDE)
Documentation
Start composing a reply mail to the current message.
The reply goes only to the mailing list. The original article will be yanked.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-msg.el.gz
(defun gnus-summary-reply-to-list-with-original (n &optional wide)
"Start composing a reply mail to the current message.
The reply goes only to the mailing list.
The original article will be yanked."
(interactive "P" gnus-summary-mode)
(let ((message-reply-to-function
(lambda nil
`((To . ,(gnus-mailing-list-followup-to))))))
(gnus-summary-reply (gnus-summary-work-articles n) wide)))