summaryrefslogtreecommitdiff
path: root/test/aux-var-src/0114.filter
blob: 578f49afe70e1066013646508cc90d313ad44fec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Exim filter

if $local_part is null then
  save /dev/null
elif $local_part is file then
  save DIR/test-mail/file
elif $local_part is pipe then
  pipe "/bin/sh -c \"cat >DIR/test-mail/pipe\""
elif $local_part is reply then
  seen mail 
    to "A. File <file>, No One <null>"
    subject autoreply
    text "Test Text"
    once DIR/test-once
endif