From: Richard M. Stallman Date: Sat, 11 Mar 2006 15:13:47 +0000 (+0000) Subject: (rmail-ignored-headers): Discard DomainKey-Signature. X-Git-Tag: emacs-pretest-22.0.90~3692 X-Git-Url: https://code.delx.au/gnu-emacs/commitdiff_plain/f7878d663bd4f3f4b6b8f3402f2e33224dfcc3cb (rmail-ignored-headers): Discard DomainKey-Signature. --- diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 13856096e2..935e7d1b92 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -268,7 +268,7 @@ It is useful to set this variable in the site customization file.") "\\|^list-id:\\|^list-unsubscribe:\\|^list-archive:" "\\|^content-length:\\|^nntp-posting-date:\\|^user-agent" "\\|^importance:\\|^envelope-to:\\|^delivery-date\\|^openpgp:" - "\\|^mbox-line:\\|^cancel-lock:" + "\\|^mbox-line:\\|^cancel-lock:\\|^DomainKey-Signature:" "\\|^resent-face:\\|^resent-x.*:\\|^resent-organization:\\|^resent-openpgp:" "\\|^x-.*:") @@ -319,8 +319,14 @@ See also `rmail-highlight-face'." :type 'regexp :group 'rmail-headers) +(defface rmail-highlight + '((t :default highlight)) + "Face to use for highlighting the most important header fields." + :group 'rmail-headers + :version "22.1") + ;;;###autoload -(defcustom rmail-highlight-face nil "\ +(defcustom rmail-highlight-face 'rmail-highlight "\ *Face used by Rmail for highlighting headers." :type '(choice (const :tag "Default" nil) face)