blob: 817065be0c2dec883287e19a65e51c07707be1e9 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
set folder=~/Mail/free
set spoolfile=+/INBOX
set header_cache=~/.cache/mutt
auto_view text/html
alternative_order text/plain text/enriched text/html
color normal black default
color hdrdefault red default
color signature blue default
color indicator black brightyellow
color error brightred default
color status white blue
color tree red default # the thread tree in the index menu
color tilde magenta default
color message blue default
color markers cyan default
color attachment brightmagenta default
color search black green # how to hilite searches in the pager
color quoted blue default # quoted text
color quoted1 magenta default
color quoted2 red default
color quoted3 green default
color quoted4 cyan default
color quoted5 blue default
color quoted6 magenta default
color quoted7 red default
color quoted8 green default
color quoted9 cyan default
color underline brightgreen default
color index green default ~F
color header red default ^(From|Subject):
# point out url's
color body black default "((ftp|http|https)://|(file|news):|www\\.)[-a-z0-9_.:]*[a-z0-9](/[^][{} \t\n\r\"<>()]*[^][{} \t\n\r\"<>().,:!])?/?"
color body cyan default [-a-z_0-9.]+@[-a-z_0-9.]+ # e-mail addresses
# smilies and the like
color body brightgreen default "<[Gg]>"
color body brightgreen default "<[Bb][Gg]>"
# see also the variables smileys
color body black yellow ">?[;:][-^]?[][)(><}{|/DP][)}]*"
#
# Mono
#
mono normal none # normal text
mono indicator reverse # actual message
mono tree none # thread arrows
mono status reverse # status line
#mono error bold
mono error standout
mono message none # info messages
mono quoted bold
mono signature none
mono attachment underline # MIME attachments
mono search reverse # search matches
mono tilde none # ~ at bottom of msg
mono markers bold # + at beginning of wrapped lines
mono hdrdefault none # default header lines
mono bold bold # hilite bold patterns in body
mono underline underline # hilite underlined patterns in body
mono header bold "^(from|subject):"
mono body underline "((ftp|http|https)://|(file|news):|www\\.)[-a-z0-9_.:]*[a-z0-9](/[^][{} \t\n\r\"<>()]*[^][{} \t\n\r\"<>().,:!])?/?"
mono body underline "[-a-z_0-9.]+@[-a-z_0-9.]+"
mono body bold "(^| )\\*[-a-z0-9äöüß*]+\\*[,.?]?[ \n]"
mono body underline "(^| )_[-a-z0-9äöüß_]+_[,.?]?[ \n]"
|