Variable: message-wide-reply-confirm-recipients
message-wide-reply-confirm-recipients is a customizable variable
defined in message.el.gz.
Value
nil
Documentation
Whether to confirm a wide reply to multiple email recipients.
If this variable is nil, don't ask whether to reply to all recipients. If this variable is non-nil, pose the question "Reply to all recipients?" before a wide reply to multiple recipients. If the user answers yes, reply to all recipients as usual. If the user answers no, only reply back to the author.
This variable was added, or its default value changed, in Emacs 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defcustom message-wide-reply-confirm-recipients nil
"Whether to confirm a wide reply to multiple email recipients.
If this variable is nil, don't ask whether to reply to all recipients.
If this variable is non-nil, pose the question \"Reply to all
recipients?\" before a wide reply to multiple recipients. If the user
answers yes, reply to all recipients as usual. If the user answers
no, only reply back to the author."
:version "22.1"
:group 'message-headers
:link '(custom-manual "(message)Wide Reply")
:type 'boolean)