forked from puppetlabs/puppetlabs-rcfiles
-
Notifications
You must be signed in to change notification settings - Fork 3
/
muttrc
96 lines (76 loc) · 3.12 KB
/
muttrc
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#source $HOME/.mutt/mutt-colors-solarized/mutt-colors-solarized-dark-256.muttrc
source $HOME/.mutt/mutt-colors-solarized/mutt-colors-solarized-light-256.muttrc
# character set on messages that we send
set send_charset="utf-8"
# if there is no character set given on incoming messages, it is probably windows
set assumed_charset="iso-8859-1"
# make sure Vim knows mutt is a mail client and that we compose an UTF-8 encoded message
set editor="vim -c 'set syntax=mail ft=mail enc=utf-8'"
# just scroll one line instead of full page
set menu_scroll=yes
# we want to see some MIME types inline, see below this code listing for explanation
auto_view application/msword
auto_view application/pdf
# make default search pattern to search in To, Cc and Subject
set simple_search="~f %s | ~C %s | ~s %s"
# threading preferences, sort by threads
set sort=threads
set strict_threads=yes
# show spam score (from SpamAssassin only) when reading a message
spam "X-Spam-Score: ([0-9\\.]+).*" "SA: %1"
set pager_format = " %C - %[%H:%M] %.20v, %s%* %?H? [%H] ?"
# do not show all headers, just a few
ignore *
unignore From To Cc Bcc Date Subject
# and in this order
unhdr_order *
hdr_order From: To: Cc: Bcc: Date: Subject:
# brighten up stuff with colours, for more colouring examples see:
# http://aperiodic.net/phil/configs/mutt/colors
#color normal white black
#color hdrdefault green default
#color quoted green default
#color quoted1 yellow default
#color quoted2 red default
#color signature cyan default
#color indicator brightyellow red
#color error brightred default
#color status brightwhite blue
#color tree brightmagenta black
#color tilde blue default
#color attachment brightyellow default
#color markers brightred default
#color message white black
#color search brightwhite magenta
#color bold brightyellow default
# if you don't like the black progress bar at the bottom of the screen,
# comment out the following line
#color progress white black
# personality settings
#set realname = "Andrew Dalziel"
#set from = "[email protected]"
#alternates "[email protected]|[email protected]"
# this file must exist, and contains your signature, comment it out if
# you don't want a signature to be used
set signature = ~/.signature
# aliases (sort of address book)
source ~/.aliases
# IMAP connection settings
set mail_check=60
set imap_keepalive=300
# IMAP account settings
#set folder=imaps://[email protected]/
#set spoolfile=imaps://[email protected]/
#set record=imaps://[email protected]/Sent
#set postponed=imaps://[email protected]/Drafts
# use headercache for IMAP (make sure this is a directory for performance!)
set header_cache=/var/tmp/.mutt
# mailboxes we want to monitor for new mail
mailboxes "="
mailboxes "=Lists"
# mailing lists we are on (these are regexps!)
subscribe "gentoo-.*@gentoo\\.org"
# SMTP mailing configuration (for sending mail)
#set smtp_url=smtp://mail.server/
# allow local customization
source ~/.muttrc.local