summaryrefslogtreecommitdiff
path: root/test/aux-var-src/0184.filter
blob: 4766b628a2df720df8319dd909676d31cd804760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Exim filter

if error_message or not first_delivery then finish endif

logfile DIR/test-stdout

logwrite "To: contains\n$h_to:\n"

if 
  $header_to is $header_from or
  "${lookup{$h_to:}lsearch{DIR/aux-fixed/0184.lsearch}{$value}}" is y or
  "${lookup{${local_part:$h_to:}}lsearch{DIR/aux-fixed/0184.lsearch}{$value}}" is y
then
  logwrite "yyyyyy"
else
  logwrite "nnnnnn"
endif   

mail to "$h_to:\nrhubarb"

seen finish