about summary refs log tree commit diff stats
path: root/worker/imap/worker.go
Commit message (Expand)AuthorAgeFilesLines
* Fix: oauthbearer runtime errorFrode Aannevik2019-10-161-6/+7
* imap worker: do not copy mailbox status mutexWagner Riffel2019-08-261-2/+3
* Don't print imap errors to uiJelle Besseling2019-08-081-0/+1
* Register worker in init.Reto Brunner2019-07-191-2/+8
* Support imaps with oauthbearer authentication (Gmail)Frode Aannevik2019-07-111-6/+28
* Factor IMAP-specific structs out of UI modelsBen Burwell2019-07-081-3/+3
* Factor UI models out of the worker message packageBen Burwell2019-07-081-12/+17
* worker/imap: rig up search directory handlerDrew DeVault2019-06-241-0/+2
* imap: respect the folder config optionReto Brunner2019-06-141-1/+3
* Add :read and :unread commandsDrew DeVault2019-06-091-0/+2
* Update our message flags when server updates themDrew DeVault2019-06-091-0/+12
* Add archive commandRobert Günzler2019-06-091-0/+2
* Load IMAP worker for imap+insecureDrew DeVault2019-05-201-2/+1
* asdfDrew DeVault2019-05-201-42/+2
* s/aerc2/aerc/gDrew DeVault2019-05-171-1/+1
* Copy sent emails to the Sent folderDrew DeVault2019-05-151-0/+4
* Implement :copy (aka :cp)Drew DeVault2019-05-141-0/+2
* Handle external message deletionsDrew DeVault2019-05-131-0/+7
* Handle incoming emails gracefullyDrew DeVault2019-05-131-3/+20
* Rename FetchMessageBodies to FetchFullMessagesDrew DeVault2019-03-311-2/+2
* Make the message viewer real, part oneDrew DeVault2019-03-311-0/+2
* Add body fetching support codeDrew DeVault2019-03-291-0/+2
* Implement :delete-messageDrew DeVault2019-03-201-1/+5
* Display message subjects in message listDrew DeVault2019-03-141-0/+2
* Fetch valid UIDs from server after opening dirDrew DeVault2019-03-101-3/+9
* Add name to DirectoryInfo messagesDrew DeVault2019-01-131-1/+2
* Issue IMAP SELECT commandDrew DeVault2019-01-131-1/+19
* Refactoring; consume listing responseDrew DeVault2018-02-011-21/+18
* Implement (most of) mailbox listingDrew DeVault2018-02-011-3/+3
* Reduce boilerplate in worker/UIDrew DeVault2018-02-011-34/+15
* Add certificate approval flowDrew DeVault2018-01-311-26/+55
* Improve loggingDrew DeVault2018-01-311-5/+23
* Connect to IMAP server, login and idleemersion2018-01-141-11/+111
* Move worker into account tabDrew DeVault2018-01-111-7/+2
* Renderer scaffoldingDrew DeVault2018-01-101-2/+0
* Misc idiomatic fixesemersion2018-01-101-5/+5
* Sleep main and worker loops on idleDrew DeVault2018-01-101-1/+2
* Parse account configurationDrew DeVault2018-01-091-3/+3
* Initial pass on worker/UI message passingDrew DeVault2018-01-091-0/+58
e <garbeam@wmii.de> 2006-07-11 16:14:22 +0200 added protocol killing stuff' href='/acidbong/suckless/dwm/commit/wm.c?h=2.9&id=33996500763b04119a6867dfa4040a4236c21a41'>3399650 ^
1076f2b





0053620 ^
1076f2b















650a1fb ^
1076f2b















1076f2b

efa7e51 ^



1076f2b
1076f2b

4641aa2 ^
c47da14 ^
4641aa2 ^



1076f2b






439e15d ^
1076f2b















650a1fb ^
1076f2b








39677ec ^
1076f2b

650a1fb ^
1076f2b
dfd84f9 ^


da2bbd3 ^
1076f2b




3399650 ^

1076f2b











366d81e ^
1076f2b
39677ec ^
9e8b325 ^



39677ec ^
9e8b325 ^
83d2390 ^
650a1fb ^

83d2390 ^
16c67f3 ^

439e15d ^


1076f2b

439e15d ^
8b59083 ^


439e15d ^

1076f2b




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