about summary refs log tree commit diff stats
path: root/worker
Commit message (Expand)AuthorAgeFilesLines
* maildir: Watch for new messagesBen Burwell2019-07-172-14/+73
* Fix header decodingBen Burwell2019-07-171-13/+16
* Fix missing format fields in maildir/container.goDrew DeVault2019-07-131-2/+2
* Implement maildir copyBen Burwell2019-07-122-2/+41
* Add maildir backend workerBen Burwell2019-07-124-0/+783
* #190 Handle gmail duplicate folderDaniel Bridges2019-07-112-4/+2
* Support imaps with oauthbearer authentication (Gmail)Frode Aannevik2019-07-111-6/+28
* Factor IMAP-specific structs out of UI modelsBen Burwell2019-07-083-8/+83
* Use []uint32 instead of imap.SeqSetBen Burwell2019-07-085-16/+30
* Factor UI models out of the worker message packageBen Burwell2019-07-084-49/+55
* Sort out dirstore once and for allDrew DeVault2019-07-041-13/+0
* worker/imap: rig up search directory handlerDrew DeVault2019-06-241-0/+2
* worker/imap: implement searchDrew DeVault2019-06-242-0/+26
* imap: block until directory list is fully receivedDrew DeVault2019-06-141-0/+1
* imap: respect the folder config optionReto Brunner2019-06-142-1/+16
* Add :read and :unread commandsDrew DeVault2019-06-093-0/+26
* Update our message flags when server updates themDrew DeVault2019-06-092-2/+34
* Add archive commandRobert Günzler2019-06-093-0/+29
* Fetch headers w/peek to leave emails unreadYash Srivastav2019-06-081-0/+1
* implements ability to view headers in message viewYash Srivastav2019-06-072-1/+22
* Wait for listing to complete before sending DoneDrew DeVault2019-06-021-0/+3
* Don't send Done until finished fetching messagesDrew DeVault2019-06-021-0/+3
* Remove worker callbacks when Done is receivedDrew DeVault2019-06-022-5/+13
* Skip non selectable mailboxes in directory listingReto Brunner2019-05-261-0/+13
* Load IMAP worker for imap+insecureDrew DeVault2019-05-202-3/+8
* Flesh out multipart switcherDrew DeVault2019-05-202-2/+2
* Verify TLS certificatesDrew DeVault2019-05-201-11/+0
* asdfDrew DeVault2019-05-201-42/+2
* worker/types/worker: remove mutexSimon Ser2019-05-191-36/+21
* worker/types/worker: make ID allocation atomicSimon Ser2019-05-192-10/+11
* worker/types/worker: set ID before sending messageSimon Ser2019-05-191-3/+9
* s/aerc2/aerc/gDrew DeVault2019-05-178-9/+9
* Copy sent emails to the Sent folderDrew DeVault2019-05-154-4/+63
* Implement move, mv commandsDrew DeVault2019-05-141-6/+0
* Implement :copy (aka :cp)Drew DeVault2019-05-143-0/+30
* Handle external message deletionsDrew DeVault2019-05-131-0/+7
* Handle incoming emails gracefullyDrew DeVault2019-05-132-3/+23
* worker/imap: use the IMAP connection from a single goroutineSimon Ser2019-04-293-86/+77
* worker/types: fix Worker.Callbacks race conditionSimon Ser2019-04-272-21/+42
* Make message viewer real, part twoDrew DeVault2019-03-311-11/+14
* Rename FetchMessageBodies to FetchFullMessagesDrew DeVault2019-03-313-14/+14
* Make the message viewer real, part oneDrew DeVault2019-03-312-6/+28
* Don't parse mail in worker; send a reader insteadDrew DeVault2019-03-312-14/+5
* Pull BodyStructure up from IMAP workerDrew DeVault2019-03-312-9/+25
* Add body fetching support codeDrew DeVault2019-03-293-17/+55
* Implement :delete-messageDrew DeVault2019-03-205-1/+60
* Display message subjects in message listDrew DeVault2019-03-142-0/+48
* Implement message store side of message fetchingDrew DeVault2019-03-142-9/+4
* Fetch valid UIDs from server after opening dirDrew DeVault2019-03-104-94/+76
* Add loading spinnerDrew DeVault2019-01-131-0/+91
committer Drew DeVault <sir@cmpwn.com> 2019-07-12 11:27:18 -0400 Fix read reply flag formatting' href='/akspecs/aerc/commit/lib/indexformat.go?h=0.5.1&id=b0f25c3e0125bac08b49ad2a95a2cd05c2ba023b'>b0f25c3 ^
fca7321 ^
c610c3c ^
b0f25c3 ^
c610c3c ^
b0f25c3 ^
c610c3c ^
b0f25c3 ^
1b77905 ^
c610c3c ^
fca7321 ^

1b77905 ^
c610c3c ^
fca7321 ^



b0f25c3 ^










fca7321 ^
b0f25c3 ^
fca7321 ^









































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