Bug #593020 - Do not check Bcc in "Sender or Recipients" condition

This commit is contained in:
Milan Crha
2011-01-10 17:51:11 +01:00
parent 2bfc6d2b48
commit 06ba0287d7
2 changed files with 16 additions and 32 deletions

View File

@ -257,8 +257,7 @@
<code>
(match-all (or (header-contains "From" ${recipient})
(header-contains "To" ${recipient})
(header-contains "Cc" ${recipient})
(header-contains "Bcc" ${recipient})))
(header-contains "Cc" ${recipient})))
</code>
</option>
<option value="not contains">
@ -267,8 +266,7 @@
(match-all (not (or
(header-contains "From" ${recipient})
(header-contains "To" ${recipient})
(header-contains "Cc" ${recipient})
(header-contains "Bcc" ${recipient}))))
(header-contains "Cc" ${recipient}))))
</code>
</option>
<option value="is">
@ -276,8 +274,7 @@
<code>
(match-all (or (header-matches "From" ${recipient})
(header-matches "To" ${recipient})
(header-matches "Cc" ${recipient})
(header-matches "Bcc" ${recipient})))
(header-matches "Cc" ${recipient})))
</code>
</option>
<option value="is not">
@ -286,8 +283,7 @@
(match-all (not (or
(header-matches "From" ${recipient})
(header-matches "To" ${recipient})
(header-matches "Cc" ${recipient})
(header-matches "Bcc" ${recipient}))))
(header-matches "Cc" ${recipient}))))
</code>
</option>
<option value="starts with">
@ -295,8 +291,7 @@
<code>
(match-all (or (header-starts-with "From" ${recipient})
(header-starts-with "To" ${recipient})
(header-starts-with "Cc" ${recipient})
(header-starts-with "Bcc" ${recipient})))
(header-starts-with "Cc" ${recipient})))
</code>
</option>
<option value="not starts with">
@ -305,8 +300,7 @@
(match-all (not (or
(header-starts-with "From" ${recipient})
(header-starts-with "To" ${recipient})
(header-starts-with "Cc" ${recipient})
(header-starts-with "Bcc" ${recipient}))))
(header-starts-with "Cc" ${recipient}))))
</code>
</option>
<option value="ends with">
@ -314,8 +308,7 @@
<code>
(match-all (or (header-ends-with "From" ${recipient})
(header-ends-with "To" ${recipient})
(header-ends-with "Cc" ${recipient})
(header-ends-with "Bcc" ${recipient})))
(header-ends-with "Cc" ${recipient})))
</code>
</option>
<option value="not ends with">
@ -324,8 +317,7 @@
(match-all (not (or
(header-ends-with "From" ${recipient})
(header-ends-with "To" ${recipient})
(header-ends-with "Cc" ${recipient})
(header-ends-with "Bcc" ${recipient}))))
(header-ends-with "Cc" ${recipient}))))
</code>
</option>
</input>

View File

@ -257,8 +257,7 @@
<code>
(match-all (or (header-contains "From" ${recipient})
(header-contains "To" ${recipient})
(header-contains "Cc" ${recipient})
(header-contains "Bcc" ${recipient})))
(header-contains "Cc" ${recipient})))
</code>
</option>
<option value="not contains">
@ -267,8 +266,7 @@
(match-all (not (or
(header-contains "From" ${recipient})
(header-contains "To" ${recipient})
(header-contains "Cc" ${recipient})
(header-contains "Bcc" ${recipient}))))
(header-contains "Cc" ${recipient}))))
</code>
</option>
<option value="is">
@ -276,8 +274,7 @@
<code>
(match-all (or (header-matches "From" ${recipient})
(header-matches "To" ${recipient})
(header-matches "Cc" ${recipient})
(header-matches "Bcc" ${recipient})))
(header-matches "Cc" ${recipient})))
</code>
</option>
<option value="is not">
@ -286,8 +283,7 @@
(match-all (not (or
(header-matches "From" ${recipient})
(header-matches "To" ${recipient})
(header-matches "Cc" ${recipient})
(header-matches "Bcc" ${recipient}))))
(header-matches "Cc" ${recipient}))))
</code>
</option>
<option value="starts with">
@ -295,8 +291,7 @@
<code>
(match-all (or (header-starts-with "From" ${recipient})
(header-starts-with "To" ${recipient})
(header-starts-with "Cc" ${recipient})
(header-starts-with "Bcc" ${recipient})))
(header-starts-with "Cc" ${recipient})))
</code>
</option>
<option value="not starts with">
@ -305,8 +300,7 @@
(match-all (not (or
(header-starts-with "From" ${recipient})
(header-starts-with "To" ${recipient})
(header-starts-with "Cc" ${recipient})
(header-starts-with "Bcc" ${recipient}))))
(header-starts-with "Cc" ${recipient}))))
</code>
</option>
<option value="ends with">
@ -314,8 +308,7 @@
<code>
(match-all (or (header-ends-with "From" ${recipient})
(header-ends-with "To" ${recipient})
(header-ends-with "Cc" ${recipient})
(header-ends-with "Bcc" ${recipient})))
(header-ends-with "Cc" ${recipient})))
</code>
</option>
<option value="not ends with">
@ -324,8 +317,7 @@
(match-all (not (or
(header-ends-with "From" ${recipient})
(header-ends-with "To" ${recipient})
(header-ends-with "Cc" ${recipient})
(header-ends-with "Bcc" ${recipient}))))
(header-ends-with "Cc" ${recipient}))))
</code>
</option>
</input>