about summary refs log tree commit diff stats
path: root/go.mod
Commit message (Collapse)AuthorAgeFilesLines
* creak/pty got force pushed: fix versionReto Brunner2020-05-081-1/+1
|
* Use stdout as controlling terminalGuillaume J. Charmes2020-05-061-1/+1
| | | | | | | Soves an issue with go1.15 not letting ctty be a parent. See https://github.com/creack/pty/pull/97 for more details. Signed-off-by: Guillaume J. Charmes <git+guillaume@charmes.net>
* Revert "Dont detach process under vterm"Drew DeVault2020-05-061-1/+1
| | | | This reverts commit d07cf6c667a0d497c67196fca9967db71c1e02f6.
* Dont detach process under vtermGuillaume J. Charmes2020-05-061-1/+1
| | | | Signed-off-by: Guillaume J. Charmes <git+guillaume@charmes.net>
* Bump ProtonMail/crypto to fix build on OpenBSDAnirudh Oppiliappan2020-04-201-1/+1
| | | | Signed-off-by: Anirudh Oppiliappan <x@icyphox.sh>
* Requires Go 1.13Simon Ser2020-03-201-1/+1
| | | | We use errors.Is, which has been introduced in Go 1.13.
* Initial support for PGP decryption & signaturesDrew DeVault2020-03-031-1/+5
|
* Update dependenciesSimon Ser2020-03-031-19/+22
| | | | This brings in some bug fixes.
* Mark sent messages as "seen" in maildirGalen Abell2020-03-031-1/+1
| | | | | | | - Add maildir flags to complement a messages imap flags - Set the "seen" flag on sent messages when using the maildir backend - Cleanup AppendMessage interface to use models.Flag for both IMAP and maildir
* Contextual UI ConfigurationSrivathsan Murali2020-01-241-0/+1
| | | | | | | | | + Adds parsing of contextual ui sections to aerc config. + Add GetUiConfig method for AercConfig that is used to get the specialized UI config. + Add UiConfig method to AccountView to get specialized UI Config. + Modifies Aerc codebase to use specialized UIConfig instead. + Adds documentation for Contextual UI Configuration
* Switch back to upstream pty libraryBen Fiedler2020-01-161-1/+1
| | | | | The relevant change was merged upstream, and thus allows us to clean up unneeded forks.
* Update go-maildir to latestBen Burwell2019-12-191-1/+1
| | | | | | This fixes an upstream issue where improperly named maildir files could cause a panic. Now, we simply show an error and don't display the message if the backing file is not named according to the maildir spec.
* Add support for AUTH LOGIN submissionLuke Drummond2019-11-011-1/+1
| | | | | | | | | | | `go-sasl` upstream added support [1] for the obsolete [2] AUTH LOGIN method which enables aerc to send email via servers which remain common in the wild. Fixes ~sircmpwn/aerc2#263 [1] https://github.com/emersion/go-sasl/commit/61afe53d [2] https://datatracker.ietf.org/doc/draft-murchison-sasl-login/
* notmuch: sync maildir flagsReto Brunner2019-09-161-1/+1
| | | | Syncs back special notmuch tag like unread to the underlying maildir store
* upgrade go-messageReto Brunner2019-08-201-3/+1
| | | | Fixes date parsing bug in the maildir / notmuch workers.
* bump go-message, fixes address list parsing failureReto Brunner2019-08-161-3/+3
|
* add github.com/zenhack/go.notmuchReto Brunner2019-08-081-0/+1
|
* Update tcellDrew DeVault2019-08-071-1/+1
|
* Update tcellDrew DeVault2019-07-271-2/+2
|
* Update dependenciesSimon Ser2019-07-271-14/+17
| | | | | | A bug corrupting long In-Reply-To headers has been fixed upstream in go-message: https://github.com/emersion/go-message/issues/44
* Use latest go-maildirBen Burwell2019-07-191-1/+1
|
* maildir: Watch for new messagesBen Burwell2019-07-171-0/+1
| | | | | | | | When a directory is opened, start watching its "new" subdirectory for incoming messages using the fsnotify library. When creation events are detected, run the Unseen routine to move the message from new to cur and add new UIDs to the store, updating the UI's list of directory contents as we go.
* Handle the invalid "utf8" encodingBen Burwell2019-07-121-1/+1
| | | | | See commit 0bfc369eb68a1d34ea0ee983f218e97a14099959 in the go-message package.
* Add maildir backend workerBen Burwell2019-07-121-0/+1
| | | | | | | | | | | | | Add the initial implementation of a backend for Maildir accounts. Much of the functionality required is implemented in the go-message and go-maildir libraries, so we use them as much as possible. The maildir worker hooks into a new maildir:// URL scheme in the accounts.conf file which points to a container of several maildir directories. From there, the OpenDirectory, FetchDirectoryContents, etc messages work on subdirectories. This is implemented as a Container struct which handles mapping between the symbolic email folder names and UIDs to the concrete directories and file names.
* Support imaps with oauthbearer authentication (Gmail)Frode Aannevik2019-07-111-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | imaps+oauthbearer://user:token@host?token_endpoint=... - the config Source password is used as access token if no token_endpoint parameter is set - the config Source password is used as refresh token if token_endpoint parameter is set, and used to exchange with an access token The implementation has only been tested with Gmail. source = imaps+oauthbearer://{username}:{refersh_token}@imap.gmail.com:993? \ client_id=XX&\ client_secret=XX&\ token_endpoint=https%3A%2F%2Faccounts.google.com%2Fo%2Foauth2%2Ftoken client credentials created with https://console.developers.google.com/apis/credentials refresh token created with https://github.com/google/gmail-oauth2-tools/blob/master/python/oauth2.py rel: https://todo.sr.ht/~sircmpwn/aerc2/42
* Set the required go version for this module, aercDaniel Lublin2019-06-271-0/+2
| | | | | | This is the way to declare which compiler version a module requires to build. I read up on https://golang.org/doc/go1.12#modules
* Update tcellDrew DeVault2019-06-151-1/+1
|
* Update reply to use getopt posix optind formatClayton Craft2019-06-091-1/+1
| | | | | This changes the handling of optind for the 'reply' command to match recent changes to getopt.
* Update dependenciesSimon Ser2019-06-041-7/+10
| | | | | | This should get rid of this error message: tls: either ServerName or InsecureSkipVerify must be specified in the tls.Config
* Update tcell forkDrew DeVault2019-06-021-1/+1
|
* Use forked version of tcellDrew DeVault2019-06-011-3/+3
|
* Update terminal color handling per vterm changesDrew DeVault2019-05-261-1/+1
|
* Update to the latest go-libvtermDrew DeVault2019-05-261-1/+1
|
* Update go-libvtermDrew DeVault2019-05-261-1/+1
|
* Fix special characters in address.PersonalNameDrew DeVault2019-05-251-0/+1
|
* Update go-imap and go-imap-idleSimon Ser2019-05-191-5/+5
| | | | | | This fixes a race condition in go-imap-idle. See [1]. [1]: https://github.com/emersion/go-imap-idle/commit/2704abd7050ed7f2143753554ee23affdf847bd9
* s/aerc2/aerc/gDrew DeVault2019-05-171-1/+1
|
* Implement :reply -q and :reply -aDrew DeVault2019-05-161-0/+1
|
* Implement (basic form) of :replyDrew DeVault2019-05-161-0/+1
|
* Copy sent emails to the Sent folderDrew DeVault2019-05-151-0/+1
| | | | Or rather, to a user-specified folder
* Implement sending emails /o/Drew DeVault2019-05-141-0/+2
|
* Add :send-message, prepares & writes email to /tmpDrew DeVault2019-05-141-2/+1
|
* Update go-imap to 1.0.0-beta.4Simon Ser2019-04-291-9/+7
| | | | This release contains race conditions fixes.
* go get git.sr.ht/~sircmpwn/go-libvtermElias Naur2019-04-211-1/+3
| | | | Signed-off-by: Elias Naur <mail@eliasnaur.com>
* Add basic filter implementationDrew DeVault2019-03-311-0/+3
|
* Don't parse mail in worker; send a reader insteadDrew DeVault2019-03-311-2/+0
|
* Implement :pipeDrew DeVault2019-03-301-1/+1
|
* Add body fetching support codeDrew DeVault2019-03-291-0/+2
|
* Improve cursor handling in embedded terminalDrew DeVault2019-03-211-1/+1
|
* Fix cursor handling in embedded terminalDrew DeVault2019-03-211-1/+1
|
akkartik.com> 2018-11-30 11:13:36 -0800 4802' href='/akkartik/mu/commit/subx/apps/crenshaw2-1b.subx?h=hlt&id=ee9a9237d6324f1de1bb7150083eacf7b9af5f70'>ee9a9237 ^
33352536 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
71eb22a5 ^
6030d7e2 ^
f44c5952 ^
bfcc0f85 ^
f44c5952 ^
33352536 ^

f44c5952 ^
bfcc0f85 ^
33352536 ^
9d27e966 ^
ee9a9237 ^
33352536 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
f44c5952 ^
9d27e966 ^
ee9a9237 ^
33352536 ^



ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
33352536 ^

9d27e966 ^

33352536 ^
ee9a9237 ^
33352536 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
ee9a9237 ^
33352536 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
ee9a9237 ^
6030d7e2 ^
33352536 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^

ee9a9237 ^
33352536 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
0b91d25c ^
ee9a9237 ^
0b91d25c ^
33352536 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
cf02c20b ^
ee9a9237 ^
33352536 ^

7a583220 ^
33352536 ^

6030d7e2 ^
33fdc60b ^




71eb22a5 ^
6030d7e2 ^
1639687b ^
6030d7e2 ^
bfcc0f85 ^
6030d7e2 ^

c98d4b1c ^

6030d7e2 ^
3fcc2371 ^
6030d7e2 ^
f2cd405d ^

6030d7e2 ^

33352536 ^


bfcc0f85 ^
33352536 ^
6030d7e2 ^



7a583220 ^
33352536 ^

1639687b ^
33352536 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
2a2a5b1e ^

6070c23e ^
9d27e966 ^
ee9a9237 ^
6030d7e2 ^
33352536 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
33fdc60b ^
9d27e966 ^
ee9a9237 ^
33352536 ^





6030d7e2 ^
33352536 ^





bfcc0f85 ^
33352536 ^
33fdc60b ^
bfcc0f85 ^
33352536 ^
6070c23e ^
9d27e966 ^
ee9a9237 ^
6030d7e2 ^
33352536 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
33fdc60b ^
6030d7e2 ^
33352536 ^


6030d7e2 ^
33352536 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
1639687b ^
33352536 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
2a2a5b1e ^

6070c23e ^
33fdc60b ^
6030d7e2 ^
33352536 ^
cf02c20b ^
ee9a9237 ^
33352536 ^





7a583220 ^
33352536 ^

6030d7e2 ^
33fdc60b ^

9d27e966 ^
33352536 ^


9d27e966 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
686a52bd ^
ee9a9237 ^
686a52bd ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^

ee9a9237 ^
6030d7e2 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
71eb22a5 ^
33352536 ^

9d27e966 ^
ee9a9237 ^
6030d7e2 ^
33352536 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
ee9a9237 ^
33352536 ^
6030d7e2 ^


ee9a9237 ^
6030d7e2 ^
33352536 ^
ee9a9237 ^
33352536 ^
00439520 ^
ee9a9237 ^
6030d7e2 ^

33352536 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
33352536 ^

6030d7e2 ^
33fdc60b ^

9d27e966 ^
33352536 ^


9d27e966 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
686a52bd ^
ee9a9237 ^
686a52bd ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^

ee9a9237 ^
6030d7e2 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
71eb22a5 ^
33352536 ^

9d27e966 ^
ee9a9237 ^
6030d7e2 ^
33352536 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^

ee9a9237 ^
33352536 ^
6030d7e2 ^


ee9a9237 ^
6030d7e2 ^
33352536 ^
ee9a9237 ^
33352536 ^
9d27e966 ^

ee9a9237 ^
6030d7e2 ^

9d27e966 ^
33352536 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
33352536 ^

6030d7e2 ^
33fdc60b ^

9d27e966 ^
33352536 ^


9d27e966 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
686a52bd ^
ee9a9237 ^
686a52bd ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^

ee9a9237 ^
6030d7e2 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
71eb22a5 ^
33352536 ^

9d27e966 ^
ee9a9237 ^
6030d7e2 ^
33352536 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
ee9a9237 ^
33352536 ^
6030d7e2 ^


ee9a9237 ^
6030d7e2 ^
33352536 ^
ee9a9237 ^
33352536 ^
00439520 ^
ee9a9237 ^
6030d7e2 ^

33352536 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
33352536 ^

6030d7e2 ^
33fdc60b ^

9d27e966 ^
33352536 ^


9d27e966 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
686a52bd ^
ee9a9237 ^
686a52bd ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^

ee9a9237 ^
6030d7e2 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
71eb22a5 ^
33352536 ^

9d27e966 ^
ee9a9237 ^
6030d7e2 ^
33352536 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
ee9a9237 ^
33352536 ^
6030d7e2 ^


ee9a9237 ^
6030d7e2 ^
33352536 ^
ee9a9237 ^
33352536 ^
00439520 ^
ee9a9237 ^
6030d7e2 ^

33352536 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
9d27e966 ^
33352536 ^

6030d7e2 ^
33fdc60b ^



71eb22a5 ^
7a583220 ^
33352536 ^

6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
33352536 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^

ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
0b91d25c ^
ee9a9237 ^
0b91d25c ^
33352536 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
33352536 ^
ee9a9237 ^
6030d7e2 ^
9d27e966 ^
52a2a21c ^
7a583220 ^
33352536 ^

6030d7e2 ^
33fdc60b ^
9d27e966 ^
71eb22a5 ^
7a583220 ^
33352536 ^

ee9a9237 ^
33352536 ^

ee9a9237 ^
33352536 ^
ee9a9237 ^
f2cd405d ^
ee9a9237 ^
33352536 ^


52a2a21c ^
ee9a9237 ^
33352536 ^
7a583220 ^
33352536 ^

6030d7e2 ^
33fdc60b ^
71eb22a5 ^
7a583220 ^
33352536 ^



1639687b ^
33352536 ^
6070c23e ^
1639687b ^
33352536 ^
6070c23e ^
6030d7e2 ^
33352536 ^
33fdc60b ^
7a583220 ^
33352536 ^

6030d7e2 ^
33fdc60b ^


9b16f190 ^

33fdc60b ^
ee9a9237 ^
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757