about summary refs log tree commit diff stats
path: root/commands/account
Commit message (Expand)AuthorAgeFilesLines
* Implement :forwardDrew DeVault2019-05-251-31/+81
* Fix special characters in address.PersonalNameDrew DeVault2019-05-251-16/+24
* Flesh out multipart switcherDrew DeVault2019-05-201-2/+2
* pipe.go: let tab widget handle ellipsisDrew DeVault2019-05-201-2/+1
* Missed a spotDrew DeVault2019-05-191-0/+1
* Rename :delete-message et al to :delete et alDrew DeVault2019-05-194-2/+6
* Advance cursor after :delete and :moveDrew DeVault2019-05-192-0/+2
* Fix scdoc & gofmt issuesDrew DeVault2019-05-183-12/+7
* s/aerc2/aerc/gDrew DeVault2019-05-1712-15/+15
* Improve reply-all recipient enumeration strategyDrew DeVault2019-05-161-0/+16
* Decode email when reading it for quotingDrew DeVault2019-05-161-2/+25
* Don't prefix Re: if prefix already presentDrew DeVault2019-05-161-1/+6
* Implement :reply -q and :reply -aDrew DeVault2019-05-161-19/+61
* Implement (basic form) of :replyDrew DeVault2019-05-161-0/+83
* Copy sent emails to the Sent folderDrew DeVault2019-05-151-1/+2
* Implement move, mv commandsDrew DeVault2019-05-141-0/+38
* Implement :copy (aka :cp)Drew DeVault2019-05-142-1/+51
* Update tab name as subject changesDrew DeVault2019-05-142-9/+10
* Add $EDITOR, internal config for composeDrew DeVault2019-05-141-1/+1
* Populate "From" header from config for new emailsDrew DeVault2019-05-131-2/+2
* Add initial compose widgetDrew DeVault2019-05-121-0/+28
* "Press any key to close" for completed processesDrew DeVault2019-05-111-1/+4
* Fix segfault on :select-message for unloaded messagesTom Lebreux2019-04-171-0/+3
* Fix segfault on :view-message for unloaded messageTom Lebreux2019-04-101-0/+6
* Make tab width of :pipe consistentDrew DeVault2019-03-311-5/+3
* Add basic filter implementationDrew DeVault2019-03-311-1/+1
* Rename FetchMessageBodies to FetchFullMessagesDrew DeVault2019-03-311-1/+1
* Make the message viewer real, part oneDrew DeVault2019-03-312-3/+27
* Don't parse mail in worker; send a reader insteadDrew DeVault2019-03-312-34/+2
* Add basic message viewer mockupDrew DeVault2019-03-301-2/+1
* Correct color of error messagesDrew DeVault2019-03-301-4/+4
* Implement :pipeDrew DeVault2019-03-301-0/+73
* Add body fetching support codeDrew DeVault2019-03-291-0/+29
* Add context-specific commandsDrew DeVault2019-03-216-0/+214
d=aeffca496c338e91cacb4af1ebf0d8ca3160bf31'>^
05be6082 ^
2241473e ^






97c5072f ^


80665ea0 ^

97c5072f ^



db9376d8 ^

e50461a8 ^
fee6fea0 ^
e50461a8 ^
fee6fea0 ^
e50461a8 ^
fee6fea0 ^
e50461a8 ^
cadaf731 ^

9f34373b ^

e50461a8 ^



e9aff689 ^












97c5072f ^




0e5dc6d8 ^

97c5072f ^
2241473e ^



046da191 ^
97c5072f ^
db9376d8 ^

db9376d8 ^








a522d022 ^
db9376d8 ^


f17afcf5 ^
a522d022 ^





f17afcf5 ^
f9a7e350 ^
f17afcf5 ^
decd5066 ^
7f98e013 ^

decd5066 ^








f9a7e350 ^
a48b9fce ^
7f98e013 ^
a48b9fce ^
7f98e013 ^
a48b9fce ^


6640a089 ^
a48b9fce ^

6255420b ^
118e9203 ^
a48b9fce ^
6255420b ^
f3326bf1 ^
f17afcf5 ^
f9a7e350 ^

69ac8097 ^











f9a7e350 ^


7f98e013 ^

f9a7e350 ^

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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278