Variable: message-make-forward-subject-function

message-make-forward-subject-function is a customizable variable defined in message.el.gz.

Value

(message-forward-subject-name-subject)

Documentation

List of functions called to generate subject headers for forwarded messages.

The subject generated by the previous function is passed into each successive function.

The provided functions are:

* message-forward-subject-author-subject Source of article (author or
      newsgroup), in brackets followed by the subject
* message-forward-subject-name-subject Source of article (name of author
      or newsgroup), in brackets followed by the subject
* message-forward-subject-fwd Subject of article with Fwd: prepended
      to it.

This variable was added, or its default value changed, in Emacs 27.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defcustom message-make-forward-subject-function
  (list #'message-forward-subject-name-subject)
  "List of functions called to generate subject headers for forwarded messages.
The subject generated by the previous function is passed into each
successive function.

The provided functions are:

* `message-forward-subject-author-subject' Source of article (author or
      newsgroup), in brackets followed by the subject
* `message-forward-subject-name-subject' Source of article (name of author
      or newsgroup), in brackets followed by the subject
* `message-forward-subject-fwd' Subject of article with `Fwd:' prepended
      to it."
  :group 'message-forwarding
  :link '(custom-manual "(message)Forwarding")
  :version "27.1"
  :type '(repeat :tag "List of functions"
                 (radio (function-item message-forward-subject-author-subject)
                        (function-item message-forward-subject-fwd)
                        (function-item message-forward-subject-name-subject)
                        (function))))