about summary refs log tree commit diff stats
path: root/worker/maildir/worker.go
Commit message (Collapse)AuthorAgeFilesLines
* Implement maildir copyBen Burwell2019-07-121-2/+3
| | | | | Create a delivery in the destination directory with the content of the source message.
* Add maildir backend workerBen Burwell2019-07-121-0/+353
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.
h=hlt&id=0edc9471c773ab0ce0ae0abcffacf41e1440742d'>^
22b30692 ^







bc643692 ^
22b30692 ^









bc643692 ^
22b30692 ^

0f996b7b ^


d9cd13ad ^


bc643692 ^



d9cd13ad ^
22b30692 ^
d9cd13ad ^


22b30692 ^


bc643692 ^
22b30692 ^







bc643692 ^
22b30692 ^







65b3db5d ^
22b30692 ^




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