Add a test for "!acl=" which was missing (and would have picked up a bug
[exim.git] / test / aux-fixed / 0352.F
1 # Exim filter
2
3 if foranyaddress $h_to: ($thisaddress contains abcd) then
4 headers add "Found: abcd yes"
5 else
6 headers add "Found: abcd no"
7 endif
8
9 if foranyaddress $h_to: ($thisaddress contains xyz) then
10 headers add "Found: xyz yes"
11 else
12 headers add "Found: xyz no"
13 endif
14
15 headers add "TO: >$h_to:<"
16
17