Variable: rmail-summary-line-decoder

rmail-summary-line-decoder is a customizable variable defined in rmailsum.el.gz.

Value

rfc2047-decode-string

Documentation

Function to decode a Rmail summary line.

It receives the summary line for one message as a string and should return the decoded string.

By default, it is rfc2047-decode-string, which decodes MIME-encoded subject.

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

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmailsum.el.gz
(defcustom rmail-summary-line-decoder (function rfc2047-decode-string)
  "Function to decode a Rmail summary line.
It receives the summary line for one message as a string
and should return the decoded string.

By default, it is `rfc2047-decode-string', which decodes MIME-encoded
subject."
  :type 'function
  :version "23.3"
  :group 'rmail-summary)