-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.muttrc
executable file
·52 lines (43 loc) · 2.18 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
# Basic Options --------------------------------------
set wait_key = no # shut up, mutt
set mbox_type = Maildir # mailbox type
set timeout = 3 # idle time before scanning
set imap_idle = yes # I don't know. This is supposed to keep Mutt from disconnecting. 20141120
set mail_check = 60
set imap_keepalive = 900
set realname "Douglas Lamb"
set use_from = yes
set edit_headers = yes
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 pipe_decode # strip headers and eval mimes when piping
set thorough_search # strip headers and eval mimes before searching
set editor = "vim"
set mime_forward = yes #forward attachments with mail
set mime_forward_rest = yes #forward attachments with mail
# macro indexes for multiple accounts
macro index <F4> '<sync-mailbox><enter-command>source ~/.mutt/account.main<enter><change-folder>!<enter>'
macro index <F5> '<sync-mailbox><enter-command>source ~/.mutt/account.gmail<enter><change-folder>!<enter>'
#macro index <F5> '<sync-mailbox><enter-command>source ~/.mutt/account.business<enter><change-folder>!<enter>'
#macro index <F6> '<sync-mailbox><enter-command>source ~/.mutt/account.web<enter><change-folder>!<enter>'
source "~/.mutt/account.main"
# Sidebar Patch --------------------------------------
set sidebar_delim = ' │'
set sidebar_visible = yes
set sidebar_width = 24
color sidebar_new color221 color233
# 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 )?───"
# Header Options -------------------------------------
ignore * # ignore all headers
unignore from: to: cc: date: subject: # show only these
unhdr_order * # some distros order things by default
hdr_order from: to: cc: date: subject: # and in this order
#TLS setting(s)
set ssl_force_tls=yes
#Format-Flowed
set text_flowed = yes