Variable: gnus-ignored-from-addresses

gnus-ignored-from-addresses is a customizable variable defined in gnus-sum.el.gz.

Value

"root@833b5ae841aa"

Documentation

From headers that may be suppressed in favor of To headers.

This can be a regexp, a list of regexps or a function.

If a function, an email string is passed as the argument.

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

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defcustom gnus-ignored-from-addresses
  (and user-mail-address
       (not (string= user-mail-address ""))
       (regexp-quote user-mail-address))
  "From headers that may be suppressed in favor of To headers.
This can be a regexp, a list of regexps or a function.

If a function, an email string is passed as the argument."
  :version "21.1"
  :group 'gnus-summary
  :type '(choice regexp
		 (repeat :tag "Regexp List" regexp)
                 function))