Variable: mh-forward-subject-format

mh-forward-subject-format is a customizable variable defined in mh-e.el.gz.

Value

"%s: %s"

Documentation

Format string for forwarded message subject.

This option is a string which includes two escapes ("%s"). The first "%s" is replaced with the sender of the original message, and the second one is replaced with the original "Subject:".

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-forward-subject-format "%s: %s"
  "Format string for forwarded message subject.

This option is a string which includes two escapes (\"%s\"). The
first \"%s\" is replaced with the sender of the original message,
and the second one is replaced with the original \"Subject:\"."
  :type 'string
  :group 'mh-sending-mail
  :package-version '(MH-E . "6.0"))