blob: b732596cb68fcde5e40ac28f3a6ee35132adbf69 (
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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
# Paths ----------------------------------------------
set folder = ~/.mail # mailbox location
#set alias_file = ~/.mutt/alias # where to store aliases
#set header_cache = ~/.mutt/cache/headers # where to store headers
#set message_cachedir = ~/.mutt/cache/bodies # where to store bodies
#set certificate_file = ~/.mutt/certificates # where to store certs
set mailcap_path = ~/.mutt/mailcap # entries for filetypes
set tmpdir = ~/.mutt/tmp # where to keep temp files
#set signature = ~/.mutt/sig # my signature file
# Basic Options --------------------------------------
set wait_key = no # shut up, mutt
set mbox_type = Maildir # mailbox type
set timeout = 3 # idle time before scanning
set mail_check = 0 # minimum time between scans
unset move # gmail does that
set delete # don't ask, just do
unset confirmappend # don't ask, just do!
set quit # don't ask, just do!!
unset mark_old # read/new is good enough for me
#set beep_new # bell on new mails
set pipe_decode # strip headers and eval mimes when piping
set thorough_search # strip headers and eval mimes before searching
auto_view text/html
unignore Message-Id
# Sidebar Patch --------------------------------------
set sidebar_delim = '│'
set sidebar_visible = yes
set sidebar_width = 40
set sort_sidebar = unsorted
set sort=reverse-threads
set sort_aux=last-date-received
bind index,pager \ek sidebar-prev
bind index,pager \ej sidebar-next
bind index,pager \eo sidebar-open
bind pager j next-line
bind pager k previous-line
source ~/.mutt/colors
set index_format="%4C %Z %?GI?%GI& ? %[%d/%b] %-16.15F %?M?(%3M)& ? %s %> %?g?%g?"
# Status Bar -----------------------------------------
set status_chars = " *%A"
set status_format = "───[ Folder: %f ]───[%r%m messages%?n? (%n new)?%?d? (%d to delete)?%?t? (%t tagged)? ]───%>─%?p?( %p postponed )?───"
set spoolfile = "+victortoso/inbox"
set editor="vim -c 'set spell spelllang=en'"
folder-hook victortoso/* source ~/.mutt/accounts/victortoso
folder-hook lists/* source ~/.mutt/accounts/lists
folder-hook spam/* source ~/.mutt/accounts/spam
folder-hook redhat/* source ~/.mutt/accounts/redhat
# Mailboxes to show in the sidebar.
mailboxes \
"+(me)----------------------------" \
"+victortoso/inbox" \
"+victortoso/family" \
"+victortoso/fundation" \
"+victortoso/fundation-list" \
"+victortoso/gnome-soc" \
"+victortoso/google-soc" \
"+victortoso/[Gmail].Sent Mail" \
"+(redhat)------------------------" \
"+redhat/inbox" \
"+redhat/brno-list" \
"+redhat/libosinfo" \
"+redhat/memo-brno-list" \
"+redhat/memo-list" \
"+redhat/rhbz-rhel6" \
"+redhat/rhbz-rhel7" \
"+redhat/rhbz-rhelvm" \
"+redhat/rh-desktop-staff-list" \
"+redhat/rh-os-devel-list" \
"+redhat/rh-spice-list" \
"+redhat/rh-spice-team-list" \
"+redhat/spice-devel" \
"+(lists)-------------------------" \
"+lists/inbox" \
"+lists/[Gmail].Sent Mail" \
"+lists/spice-devel" \
"+lists/virt-tools-list" \
"+lists/dvb-daemon" \
"+lists/gnome-boxes" \
"+lists/gnome-games" \
"+lists/grilo" \
"+lists/gstreamer" \
"+lists/libsoinfo" \
"+lists/lua-l" \
"+lists/patchwork" \
"+lists/pulseaudio" \
"+lists/qemu" \
"+(bugzilla)----------------------" \
"+bugzilla/inbox" \
"+bugzilla/grilo" \
"+bugzilla/gnome-boxes" \
"+(spam)--------------------------" \
"+spam/inbox" \
"+spam/[Gmail].Sent Mail" \
"+spam/aliexpress" \
"+spam/alza" \
"+spam/ebay"
|