31c01a65295e1ad5d76c95e2bb8cfe14dc187242
[exim.git] / 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