Sun, 08 May 2016 02:32:09 -0400
add f5 sync-mailbox
287
0e4736894e00
break out roomag config
Meredith Howard <mhoward@roomag.org>
parents:
286
diff
changeset
|
1 | # IMAP |
0e4736894e00
break out roomag config
Meredith Howard <mhoward@roomag.org>
parents:
286
diff
changeset
|
2 | source ~/.mutt/roomag/config |
286 | 3 | |
300
774a66f904a6
support local config and extra accts, store pwd
Meredith Howard <mhoward@roomag.org>
parents:
291
diff
changeset
|
4 | macro index <f2> '<sync-mailbox><enter-command>source ~/.mutt/roomag/config<enter><change-folder>!<enter>' |
774a66f904a6
support local config and extra accts, store pwd
Meredith Howard <mhoward@roomag.org>
parents:
291
diff
changeset
|
5 | |
774a66f904a6
support local config and extra accts, store pwd
Meredith Howard <mhoward@roomag.org>
parents:
291
diff
changeset
|
6 | source `F=$HOME/.mutt/local; if [ ! -s "$F" ]; then F=/dev/null;fi;echo "$F"` |
774a66f904a6
support local config and extra accts, store pwd
Meredith Howard <mhoward@roomag.org>
parents:
291
diff
changeset
|
7 | |
286 | 8 | unset imap_passive |
9 | set imap_idle = yes | |
10 | set imap_check_subscribed = yes | |
11 | set imap_keepalive = 300 | |
12 | set imap_peek = no | |
13 | set mark_old = no | |
287
0e4736894e00
break out roomag config
Meredith Howard <mhoward@roomag.org>
parents:
286
diff
changeset
|
14 | set ssl_usesystemcerts = yes |
286 | 15 | |
16 | # Behavior | |
17 | set beep = no | |
18 | set beep_new = no | |
19 | set mail_check = 120 | |
20 | set move = no | |
21 | set pager_stop = yes | |
22 | set pager_context = 2 | |
23 | set menu_scroll = yes | |
287
0e4736894e00
break out roomag config
Meredith Howard <mhoward@roomag.org>
parents:
286
diff
changeset
|
24 | set mailcap_path = ~/.mutt/mailcap |
286 | 25 | set assumed_charset = "utf-8:iso8859-1" |
26 | set autoedit = yes | |
27 | set edit_headers = yes | |
28 | set editor = "vim +'set tw=72 noawa'" | |
29 | ||
30 | auto_view text/html | |
291 | 31 | alternative_order text/plain text/html |
286 | 32 | |
33 | bind index <F1> help | |
301 | 34 | bind index <F5> sync-mailbox |
286 | 35 | bind index / search |
36 | bind index ? search-reverse | |
37 | bind index n search-next | |
38 | bind index N search-opposite | |
39 | ||
40 | bind index gg first-entry | |
41 | bind index G last-entry | |
42 | bind index \Cu half-up | |
43 | bind index \Cd half-down | |
44 | ||
45 | bind pager J next-unread | |
46 | bind pager K previous-unread | |
47 | ||
48 | bind pager <up> previous-line | |
49 | bind pager <down> next-line | |
50 | bind pager gg top | |
51 | bind pager G bottom | |
52 | bind pager \Cu half-up | |
53 | bind pager \Cd half-down | |
54 | ||
55 | bind pager r reply | |
56 | bind pager R group-reply | |
57 | bind pager l list-reply | |
58 | ||
59 | bind pager <F1> help | |
60 | bind pager / search | |
61 | bind pager ? search-reverse | |
62 | bind pager n search-next | |
63 | bind pager N search-opposite | |
64 | ||
65 | push <first-entry> | |
66 | ||
67 | # Appearance | |
68 | set sort = reverse-date-sent | |
69 | set status_on_top = yes | |
70 | set pager_index_lines = 10 | |
71 | set wrap = -15 | |
72 | set markers = no | |
73 | ||
74 | set date_format = "%m-%d %H:%M" | |
75 | set index_format = "%2C %Z %D %-30.30F %s" | |
76 | ||
77 | ignore * | |
78 | unignore from date subject to cc | |
79 | unignore organization organisation x-mailing-list: posted-to: | |
80 | ||
81 | hdr_order subject from to cc date | |
82 | ||
83 | # jellybeans-ish | |
84 | color attachment color162 color233 | |
85 | color bold color183 color233 | |
86 | color hdrdefault color215 color233 | |
87 | color indicator brightwhite color234 | |
88 | color markers color215 color233 | |
89 | color message color188 color233 | |
90 | color normal color188 color233 | |
91 | color search brightgreen color233 | |
92 | color signature color222 color233 | |
93 | color status color30 color235 | |
94 | color tilde color244 color233 | |
95 | color tree color104 color233 | |
96 | # color underline brightmagenta color233 | |
97 | color error color167 color233 | |
98 | ||
99 | # Colours for items in the index | |
100 | color index color188 color233 ~A | |
101 | color index default color233 ~R | |
102 | color index color110 color233 ~U | |
103 | color index color213 color233 ~F | |
104 | color index color217 color233 ~T | |
105 | color index color126 color233 ~D | |
106 | ||
107 | # Highlights inside message body | |
108 | ||
109 | # URLs | |
110 | color body color103 color233 "https?://[^ \"\t\r\n>]+" | |
111 | color body color103 color233 "mailto:[^ \"\t\r\n>]+" | |
112 | ||
113 | # Email addresses. | |
114 | color body color103 color233 "[-a-z_0-9.%$+]+@[-a-z_0-9.]+\\.[-a-z][-a-z]+" | |
115 | ||
116 | color quoted color107 color233 | |
117 | color quoted1 color58 color233 | |
118 | color quoted2 color244 color233 | |
119 | color quoted3 color233 color233 |