blob: 31c01a65295e1ad5d76c95e2bb8cfe14dc187242 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Exim filter
if foranyaddress $h_to: ($thisaddress contains abcd) then
headers add "Found: abcd yes"
else
headers add "Found: abcd no"
endif
if foranyaddress $h_to: ($thisaddress contains xyz) then
headers add "Found: xyz yes"
else
headers add "Found: xyz no"
endif
headers add "TO: >$h_to:<"
|