-
Notifications
You must be signed in to change notification settings - Fork 0
/
.muttrc
28 lines (23 loc) · 829 Bytes
/
.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
set mbox_type=Maildir
set folder="~/Maildir"
set mask="^\\."
set mbox="~/Maildir"
set record="+.Sent"
set postponed="+.Drafts"
set spoolfile="~/Maildir"
mailboxes ! + `\
for file in ~/Maildir/.*; do \
box=$(basename "$file"); \
if [ "$box" != '.' -a "$box" != '..' -a "$box" != '.customflags' -a "$box" != '.subscriptions' ]; then \
echo -n "\"+$box\" "; \
fi; \
done \
`
macro index c "<change-folder>?<toggle-mailboxes>" "open a different folder"
macro pager c "<change-folder>?<toggle-mailboxes>" "open a different folder"
macro index C "<copy-message>?<toggle-mailboxes>" "copy a message to a mailbox"
macro index M "<save-message>?<toggle-mailboxes>" "move a message to a mailbox"
bind index <Up> previous-entry
bind index <Down> next-entry
bind pager <Up> previous-line
bind pager <Down> next-line