aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mail
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2006-03-11 15:13:47 +0000
committerRichard M. Stallman <[email protected]>2006-03-11 15:13:47 +0000
commitf7878d663bd4f3f4b6b8f3402f2e33224dfcc3cb (patch)
tree58a930d4b8092408437332ac32e2a888e6300e16 /lisp/mail
parentdcc25b7e7f6145a0e710e1cd54ac6eb8e95465b1 (diff)
(rmail-ignored-headers): Discard DomainKey-Signature.
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/rmail.el10
1 files changed, 8 insertions, 2 deletions
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)