aboutsummaryrefslogtreecommitdiffstats
path: root/filter/filtertypes.xml
diff options
context:
space:
mode:
Diffstat (limited to 'filter/filtertypes.xml')
-rw-r--r--filter/filtertypes.xml20
1 files changed, 10 insertions, 10 deletions
diff --git a/filter/filtertypes.xml b/filter/filtertypes.xml
index d0fdf7156f..370175785d 100644
--- a/filter/filtertypes.xml
+++ b/filter/filtertypes.xml
@@ -435,49 +435,49 @@
<part name="mlist">
<title>Mailing list</title>
- <input type="optionlist" name="sender-type">
+ <input type="optionlist" name="mlist-type">
<option value="contains">
<title>contains</title>
- <code>(match-all (header-contains "x-camel-mlist" ${sender}))</code>
+ <code>(match-all (header-contains "x-camel-mlist" ${mlist}))</code>
</option>
<option value="not contains">
<title>does not contain</title>
- <code>(match-all (not (header-contains "x-camel-mlist" ${sender})))</code>
+ <code>(match-all (not (header-contains "x-camel-mlist" ${mlist})))</code>
</option>
<option value="is">
<title>is</title>
- <code>(match-all (header-matches "x-camel-mlist" ${sender}))</code>
+ <code>(match-all (header-matches "x-camel-mlist" ${mlist}))</code>
</option>
<option value="is not">
<title>is not</title>
- <code>(match-all (not (header-matches "x-camel-mlist" ${sender})))</code>
+ <code>(match-all (not (header-matches "x-camel-mlist" ${mlist})))</code>
</option>
<option value="starts with">
<title>starts with</title>
<code>
- (match-all (header-starts-with "x-camel-mlist" ${sender}))
+ (match-all (header-starts-with "x-camel-mlist" ${mlist}))
</code>
</option>
<option value="not starts with">
<title>does not start with</title>
<code>
- (match-all (not (header-starts-with "x-camel-mlist" ${sender})))
+ (match-all (not (header-starts-with "x-camel-mlist" ${mlist})))
</code>
</option>
<option value="ends with">
<title>ends with</title>
<code>
- (match-all (header-ends-with "x-camel-mlist" ${sender}))
+ (match-all (header-ends-with "x-camel-mlist" ${mlist}))
</code>
</option>
<option value="not ends with">
<title>does not end with</title>
<code>
- (match-all (not (header-ends-with "x-camel-mlist" ${sender})))
+ (match-all (not (header-ends-with "x-camel-mlist" ${mlist})))
</code>
</option>
</input>
- <input type="string" name="sender"/>
+ <input type="string" name="mlist"/>
</part>
<part name="regex">