summary refs log tree commit diff stats
path: root/worker/imap/search.go
Commit message (Collapse)AuthorAgeFilesLines
* Change search flagsJeffas2019-09-201-2/+6
| | | | | | | | This changes the search flags for maildir and imap backends. They now no longer use -t for searching all text. This seems to make more sense as being the targeted recipient. I have similarly added Cc for -c. The text search now resides under -a for all text.
* Add new search behaviour for imapJeffas2019-09-111-4/+19
| | | | | | This patch adds search behaviour to allow searching in the body of the messages, the entire text (body + header), and searching just the from header.
* extract search criteria parsing into the backendsReto Brunner2019-08-291-0/+29
'>bb3ce6cd ^
417a05ee ^







e4bee624 ^
417a05ee ^







5f3b3e7a ^
417a05ee ^
73728ec6 ^
5c26afb1 ^
417a05ee ^
5f3b3e7a ^
417a05ee ^
f15fcfe8 ^
417a05ee ^

a78deb23 ^
417a05ee ^
62a3c1b4 ^
f9f419af ^

bb3ce6cd ^

f15fcfe8 ^

bb3ce6cd ^





4c3a867b ^

15655a12 ^

4c3a867b ^





417a05ee ^
bb3ce6cd ^


f13576b5 ^
bb3ce6cd ^









924ed08a ^
417a05ee ^


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