Variable: message-cite-style
message-cite-style is a customizable variable defined in
message.el.gz.
Value
nil
Documentation
The overall style to be used when yanking cited text.
Value is either nil (no variable overrides) or a let-style list
of pairs (VARIABLE VALUE) that will be bound in
message-yank-original to do the quoting.
Presets to impersonate popular mail agents are found in the
message-cite-style-* variables. This variable is intended for
use in gnus-posting-styles, such as:
((posting-from-work-p) (eval (setq-local message-cite-style
message-cite-style-outlook)))
This variable was added, or its default value changed, in Emacs 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defcustom message-cite-style nil
"The overall style to be used when yanking cited text.
Value is either nil (no variable overrides) or a let-style list
of pairs (VARIABLE VALUE) that will be bound in
`message-yank-original' to do the quoting.
Presets to impersonate popular mail agents are found in the
message-cite-style-* variables. This variable is intended for
use in `gnus-posting-styles', such as:
((posting-from-work-p) (eval (setq-local message-cite-style
message-cite-style-outlook)))"
:version "24.1"
:group 'message-insertion
:type '(choice (const :tag "Do not override variables" :value nil)
(const :tag "MS Outlook" :value message-cite-style-outlook)
(const :tag "Mozilla Thunderbird" :value message-cite-style-thunderbird)
(const :tag "Gmail" :value message-cite-style-gmail)
(variable :tag "User-specified")))