Variable: mh-reply-default-reply-to

mh-reply-default-reply-to is a customizable variable defined in mh-e.el.gz.

Value

nil

Documentation

Sets the person or persons to whom a reply will be sent.

This option is set to "Prompt" by default so that you are prompted for the recipient of a reply. If you find that most of the time that you specify "cc" when you reply to a message, set this option to "cc". Other choices include "from", "to", or
"all". You can always edit the recipients in the draft.

This variable was added, or its default value changed, in MH-E version
6.0.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom-mh mh-reply-default-reply-to nil
  "Sets the person or persons to whom a reply will be sent.

This option is set to \"Prompt\" by default so that you are
prompted for the recipient of a reply. If you find that most of
the time that you specify \"cc\" when you reply to a message, set
this option to \"cc\". Other choices include \"from\", \"to\", or
\"all\". You can always edit the recipients in the draft."
  :type '(choice (const :tag "Prompt" nil)
                 (const "from")
                 (const "to")
                 (const "cc")
                 (const "all"))
  :group 'mh-sending-mail
  :package-version '(MH-E . "6.0"))