[download]
muttrc
1 set ts_enabled
2 set sleep_time=0
3
4 set menu_scroll
5 set pager_index_lines=10
6 set sort=reverse-last-date
7 set index_format='%3C %S %[%b %d] %-20.20n %?M?[1/%M] ?%s'
8
9 set tilde
10 set nomarkers
11 auto_view text/html
12 alternative_order text/plain
13
14 set from=lexa@lexa.by
15 set realname='Alexey Gagin'
16 set signature=~/.signature
17
18 set fast_reply
19 set include
20 set noattribution
21 set reverse_name
22 alternates @lexa.by$
23
24 set spoolfile=+Inbox
25 set record=$spoolfile
26 set postponed=+Drafts
27 set trash=+Trash
28 mailboxes $spoolfile $postponed $trash
29
30 set timeout=10
31 set imap_idle imap_check_subscribed
32 set imap_user=mail@lexa.by
33 set imap_pass=`pass privateemail.com | sed 1q`
34 set smtp_url=smtps://$imap_user@mail.privateemail.com
35 set smtp_pass=$imap_pass
36 mailboxes imaps://mail.privateemail.com
37
38
39
40 bind index Q quit
41 macro index G '!mpop -a<Enter>'
42
43 bind pager <Up> previous-line
44 bind pager <Down> next-line
45
46 bind index <Left> exit
47 bind index <Right> display-message
48
49 bind pager <Left> exit
50 bind pager <Right> view-attachments
51
52 bind attach <Left> exit
53 bind attach <Right> view-mailcap
54
55 bind browser <Left> exit
56 bind browser <Right> select-entry
57
58
59
60
61 color status white default
62 color indicator default blue
63
64 color tree brightblack default
65 color index brightdefault default ~U
66 color index red default ~D
67
68 color hdrdefault white default
69 color header brightwhite default '^(From|To|Subject|Date): '
70 color attachment cyan default
71
72 color normal default default
73 color body white default '^gpg: .+'
74 color body cyan default '\[[0-9]+\]'
75 color body blue default '\w+://[^ ]+'
76
77 color quoted yellow default
78 color body yellow default 'On .+ wrote:'
79 color body yellow default '.*<.+@.+>.*'
80
81 color body brightwhite default '^References$'
82 color body brightwhite default '^ Visible links$'
83
84 color signature white default
85 color tilde white default
86
87
|