about summary refs log tree commit diff stats
path: root/worker/imap/imap.go
Commit message (Collapse)AuthorAgeFilesLines
* Factor IMAP-specific structs out of UI modelsBen Burwell2019-07-081-0/+75
| | | | | | | Before, we were using several IMAP-specific concepts to represent information being displayed in the UI. Factor these structures out of the IMAP package to make it easier for other backends to provide the required information.
* Use []uint32 instead of imap.SeqSetBen Burwell2019-07-081-0/+13
A sequence-set is an IMAP-specific implementation detail. Throughout the UI, aerc simply operates using lists of opaque identifiers. In order to loosen the coupling between the UI and IMAP in particular, replace most usages of imap.SeqSet with []uint32, leaving the translation to a SeqSet to the IMAP backend as needed.
2b61255'>b6c5fef4 ^
fe12352b ^
30ca6cac ^
cf6da8a4 ^
30ca6cac ^



2655d9e8 ^

30ca6cac ^
376804be ^
30ca6cac ^
30ca6cac ^
28f5cdf7 ^
3134a7b6 ^
0a42be57 ^
37f91427 ^
9874470c ^
3db9fb75 ^

73eb4baf ^

0fbaa6f5 ^

599bee2c ^

d95ceeb3 ^






71356967 ^
17f40b76 ^
90d2cbff ^
af880e2c ^
185d72e2 ^
ff18572e ^



f44cf86f ^
62dd30ff ^
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