blob: f9223cfa4a1e6d2529ca3e743a493fe63b12dc9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# -*- muttrc -*-
# whitelist the headers I want to see normally
ignore *
unignore from date subject to cc
unignore x-mailer user-agent x-operating-system
unignore x-bogosity
unignore list-id list-post
# see who is being a dick
unignore disposition-notification-to disposition-notification-options
# add back all custom headers
unignore x-*
# put important headers in a consistent order
hdr_order Date From To Cc List-ID List-Post Subject User-Agent X-Operating-System X-Bogosity
# colorize certain headers
color hdrdefault white brightblack
color header brightwhite brightblack "^(Date|Return-Path):"
color header brightcyan brightblack "^(From|To|Cc):"
color header brightgreen brightblack "^(Subject):"
color header brightmagenta brightblack "^List-.*:"
color header brightred brightblack "^X-Bogosity:"
color header brightwhite brightblack "^(User-Agent|X-Operating-System)"
color header brightyellow brightblack "^Disposition-Notification"
|