Variable: message-use-mail-followup-to

message-use-mail-followup-to is a customizable variable defined in message.el.gz.

Value

use

Documentation

Specifies what to do with Mail-Followup-To header.

If nil, always ignore the header. If it is the symbol ask, always query the user whether to use the value. If it is the symbol use, always use the value.

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-use-mail-followup-to 'use
  "Specifies what to do with Mail-Followup-To header.
If nil, always ignore the header.  If it is the symbol `ask', always
query the user whether to use the value.  If it is the symbol `use',
always use the value."
  :version "22.1"
  :group 'message-interface
  :link '(custom-manual "(message)Mailing Lists")
  :type '(choice (const :tag "ignore" nil)
		 (const use)
		 (const ask)))