Variable: message-alter-recipients-function
message-alter-recipients-function is a customizable variable defined
in message.el.gz.
Value
nil
Documentation
Function called to allow alteration of reply header structures.
It is called in message-get-reply-headers for each recipient.
The function is called with one parameter, a cons cell ...
This variable was added, or its default value changed, in Emacs 23.1.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defcustom message-alter-recipients-function nil
"Function called to allow alteration of reply header structures.
It is called in `message-get-reply-headers' for each recipient.
The function is called with one parameter, a cons cell ..."
:type '(choice (const :tag "None" nil)
(const :tag "Discard bogus full name"
message-alter-recipients-discard-bogus-full-name)
function)
:version "23.1" ;; No Gnus
:group 'message-headers)