]> code.delx.au - gnu-emacs/commitdiff
(rmail-ignored-headers): Discard DomainKey-Signature.
authorRichard M. Stallman <rms@gnu.org>
Sat, 11 Mar 2006 15:13:47 +0000 (15:13 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 11 Mar 2006 15:13:47 +0000 (15:13 +0000)
lisp/mail/rmail.el

index 13856096e28b761503f00f3e80bbcc4ae52e538f..935e7d1b92c177a05073a1a9f349cfa86653e60f 100644 (file)
@@ -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)