blob: 78a5898a16062c9743a66ccdebdcddbbcef0eeb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Exim filter (system filter for test 444)
if error_message then finish endif
if foranyaddress $h_to: ($thisaddress matches "^(alice)") then
pipe "DIR/aux-fixed/showenv $thisaddress $1"
finish
endif
if $h_to: matches "^(j..)" then
pipe "DIR/aux-fixed/showenv $1"
endif
|