| Summary | Invalid test of Precendence in vacation/Sieve |
| Queue | Ingo |
| Queue Version | 1.1.2 |
| Type | Bug |
| State | Resolved |
| Priority | 2. Medium |
| Owners | chuck (at) horde (dot) org |
| Requester | skhorde (at) inf (dot) fh-brs (dot) de |
| Created | 07/10/2007 (6713 days ago) |
| Due | |
| Updated | 07/10/2007 (6713 days ago) |
| Assigned | |
| Resolved | 07/10/2007 (6713 days ago) |
| Github Issue Link | |
| Github Pull Request | |
| Milestone | |
| Patch | No |
Assigned to Chuck Hagenbuch
State ⇒ Resolved
State ⇒ Unconfirmed
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ Invalid test of Precendence in vacation/Sieve
Queue ⇒ Ingo
Precedences "list" and "bulk".
if allof ( not exists ["list-help", "list-unsubscribe",
"list-subscribe", "list-owner", "list-post", "list-archive",
"list-id"], not header :comparator "i;ascii-casemap" :is "Precedence"
"list,bulk" ) {
The latter test of "Precedence" is incorrect, because one need to test
for either "list" or "bulk" and not for the string given, hence, you
need to specify a list of strings:
[ "list", "bulk" ]