Variable: message-cross-post-note-function

message-cross-post-note-function is a customizable variable defined in message.el.gz.

Value

message-cross-post-insert-note

Documentation

Function to use to insert note about Crosspost or Followup-To.

The function will be called with four arguments. The function should not only insert a note, but also ensure old notes are deleted. See the documentation for message-cross-post-insert-note.

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-cross-post-note-function #'message-cross-post-insert-note
  "Function to use to insert note about Crosspost or Followup-To.
The function will be called with four arguments.  The function should not only
insert a note, but also ensure old notes are deleted.  See the documentation
for `message-cross-post-insert-note'."
  :version "22.1"
  :type 'function
  :group 'message-various)