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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
#
# ~/.config/alot/config
# Configuration for alot MUA
#
initial_command = 'search tag:unread AND NOT tag:killed'
bug_on_exit = True
prefer_plaintext = True
displayed_headers = From, To, Cc, Bcc, Subject
editor_cmd = 'gvim -f'
editor_in_thread = True
handle_mouse = True
theme = solarized_light
[accounts]
[[aly]]
realname = Aaron LI
address = aly@aaronly.me
sendmail_command = msmtp --read-recipients --account=aly
sent_box = maildir:///home/aly/mail/sent
draft_box = maildir:///home/aly/mail/drafts
[[wt]]
realname = Weitian LI
address = wt@liwt.net
sendmail_command = msmtp --read-recipients --account=wt
sent_box = maildir:///home/aly/mail/sent
draft_box = maildir:///home/aly/mail/drafts
[[autistici]]
realname = Weitian LI
address = liweitianux@autistici.org
sendmail_command = msmtp --read-recipients --account=autistici
sent_box = maildir:///home/aly/mail/autistici/sent
draft_box = maildir:///home/aly/mail/drafts
[[gmail-aly]]
realname = Aaron LI
address = aaronly.me@gmail.com
sendmail_command = msmtp --read-recipients --account=gmail-aly
sent_box = maildir:///home/aly/mail/sent
draft_box = maildir:///home/aly/mail/drafts
[[outlook-aly]]
realname = Aaron LI
address = aaronly.me@outlook.com
sendmail_command = msmtp --read-recipients --account=outlook-aly
sent_box = maildir:///home/aly/mail/sent
draft_box = maildir:///home/aly/mail/drafts
[[gmail-li]]
realname = Weitian LI
address = liweitianux@gmail.com
sendmail_command = msmtp --read-recipients --account=gmail-li
sent_box = maildir:///home/aly/mail/sent
draft_box = maildir:///home/aly/mail/drafts
[[outlook-li]]
realname = Weitian LI
address = liweitianux@live.com
aliases = liweitianux@live.cn, liweitianux@outlook.com
sendmail_command = msmtp --read-recipients --account=outlook-li
sent_box = maildir:///home/aly/mail/sent
draft_box = maildir:///home/aly/mail/drafts
[[sjtu]]
realname = Weitian LI
address = liweitianux@sjtu.edu.cn
sendmail_command = msmtp --read-recipients --account=sjtu
sent_box = maildir:///home/aly/mail/sjtu/sent
draft_box = maildir:///home/aly/mail/drafts
[[foxmail]]
realname = Weitian LI
address = liweitianux@foxmail.com
sendmail_command = msmtp --read-recipients --account=foxmail
sent_box = maildir:///home/aly/mail/foxmail/sent
draft_box = maildir:///home/aly/mail/drafts
[tags]
[[flagged]]
translated = ⚑
normal = '', '', 'light red', '', 'light red', ''
focus = '', '', 'light red', '', 'light red', ''
[[todo]]
translated = TODO
normal = '', '', 'white', 'light red', 'white', '#d66'
[[inbox]]
translated = ¶
[[unread]]
translated = ✉
[[to-me]]
translated = ☻
[[draft]]
translated = ✎
[[replied]]
translated = ✓
[[sent]]
translated = ➥
[[signed]]
translated = §
[[encrypted]]
translated = ⚷
[[killed]]
translated = ✗
[[attachment]]
translated = @
[bindings]
c = compose
/ = prompt 'search '
i = search tag:unread AND NOT tag:killed
I = search tag:inbox AND NOT tag:killed
F = search tag:flagged
S = search tag:sent
T = search tag:todo
'g y' = search date:yesterday..
'g w' = search date:last_week..
'g m' = search date:last_month..
[[search]]
A = toggletags archived
D = toggletags deleted
t = toggletags todo
[[thread]]
'=' = toggletags flagged
A = toggletags archived
D = toggletags deleted
a = toggletags inbox
t = toggletags todo
|