muttrc: colorize crazy headers

This commit is contained in:
nemunaire 2016-01-14 17:59:45 +01:00
parent 3c33195fc7
commit 6a9d871cba
1 changed files with 14 additions and 1 deletions

15
.muttrc
View File

@ -80,6 +80,7 @@ set mime_forward # Forward message as MIME attachments.
hdr_order Date From To Cc Bcc User-Agent
ignore *
unignore Disposition-Notification-To
unignore Authentication-Results
unignore from: date subject to cc mail-followup-to
unignore x-mailing-list: posted-to:
@ -150,8 +151,20 @@ color index magenta default "~T"
# Color information about the sender
color header brightcyan default "From: "
color header brightcyan default "Subject: "
color header brightcyan default "Subject: "
color header brightcyan default "Date: "
color header brightyellow default "Saved-In: "
color header magenta default "Disposition-Notification-To: "
# DKIM
color header blue default "Authentication-Results:.*spf=none"
color header blue default "Authentication-Results:.*spf=neutral"
color header blue default "Authentication-Results:.*dkim=neutral"
color header red default "Authentication-Results:.*spf=fail"
color header red default "Authentication-Results:.*dkim=fail"
# DMARC
color header yellow default "Authentication-Results:.*dmarc=quarantine"
color header red default "Authentication-Results:.*dmarc=reject"
# =====================================================================