summary refs log tree commit diff stats
path: root/config/aerc.conf
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-03-31 14:42:18 -0400
committerDrew DeVault <sir@cmpwn.com>2019-03-31 14:42:18 -0400
commit8e5ed2a161bf654888a8b48af2d9fdf6fbc0c7e0 (patch)
tree9a83cf70c8c7e1491005cfc1bab1d7e2e6cbe92d /config/aerc.conf
parentf9262e4b0600fcc83ddac642412769c2bce05c5c (diff)
downloadaerc-8e5ed2a161bf654888a8b48af2d9fdf6fbc0c7e0.tar.gz
Implement header-regex-match filters
Diffstat (limited to 'config/aerc.conf')
-rw-r--r--config/aerc.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/aerc.conf b/config/aerc.conf
index 3a89151..c310dfc 100644
--- a/config/aerc.conf
+++ b/config/aerc.conf
@@ -78,9 +78,9 @@ alternatives=text/plain,text/html
 # them from most to least specific.
 #
 # You can also match on non-mimetypes, by prefixing with the header to match
-# against (non-case-sensitive) and a colon, e.g. subject:text will match a
-# subject which contains "text". Use header~:regex to match against a regex.
-subject~:PATCH=contrib/hldiff.py
+# against (non-case-sensitive) and a comma, e.g. subject,text will match a
+# subject which contains "text". Use header,~regex to match against a regex.
+subject,~PATCH=contrib/hldiff.py
 text/html=w3m -T text/html -cols $(tput cols) -dump -o display_image=false -o display_link_number=true
 text/*=contrib/plaintext.py
 
ofani-tty/commit/tests/functionaltests/test_roster.c?id=f9a7e35001107dcbd3e03f24833478cf869caf5a'>f9a7e350 ^
7f98e013 ^

f9a7e350 ^


7f98e013 ^


f9a7e350 ^






7f98e013 ^


f9a7e350 ^







5b8b9074 ^




























f9a7e350 ^


7f98e013 ^
f9a7e350 ^






7f98e013 ^


f9a7e350 ^



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