Variable: mh-extract-from-attribution-verb

mh-extract-from-attribution-verb is a customizable variable defined in mh-e.el.gz.

Value

"wrote:"

Documentation

Verb to use for attribution when a message is yanked by C-c C-y (mh-yank-cur-msg).

The attribution consists of the sender's name and email address followed by the content of this option. This option can be set to
"wrote:", "a écrit:", and "schrieb:". You can also use the
"Custom String" menu item to enter your own verb.

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

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom-mh mh-extract-from-attribution-verb "wrote:"
  "Verb to use for attribution when a message is yanked by \\<mh-letter-mode-map>\\[mh-yank-cur-msg].

The attribution consists of the sender's name and email address
followed by the content of this option. This option can be set to
\"wrote:\", \"a écrit:\", and \"schrieb:\". You can also use the
\"Custom String\" menu item to enter your own verb."
  :type '(choice (const "wrote:")
                 (const "a écrit:")
                 (const "schrieb:")
                 (string :tag "Custom String"))
  :group 'mh-letter
  :package-version '(MH-E . "7.0"))