Variable: gnus-extract-address-components

gnus-extract-address-components is a customizable variable defined in gnus.el.gz.

Value

gnus-extract-address-components

Documentation

Function for extracting address components from a From header.

Two pre-defined function exist: gnus-extract-address-components(var)/gnus-extract-address-components(fun), which is the default, quite fast, and too simplistic solution, and mail-extract-address-components, which works much better, but is slower.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
(defcustom gnus-extract-address-components 'gnus-extract-address-components
  "Function for extracting address components from a From header.
Two pre-defined function exist: `gnus-extract-address-components',
which is the default, quite fast, and too simplistic solution, and
`mail-extract-address-components', which works much better, but is
slower."
  :group 'gnus-summary-format
  :type '(radio (function-item gnus-extract-address-components)
		(function-item mail-extract-address-components)
		(function :tag "Other")))