blob: bc49c570163fb8a18ab4070c881ab1bea10e339d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Exim filter
testprint "${if eq {1}{1}{yes}{no}}"
testprint "${if eq {1}{01}{yes}{no}}"
testprint "${if == {1}{01}{yes}{no}}"
testprint
"${if eq {1}{1}{yes}{${lookup{key1}lsearch{DIR/aux-fixed/junkjunk}{$value}{notfound}}}}"
testprint
"${if eq {1}{1}{yes}{${lookup{key1}lsearch{DIR/aux-fixed/0093.lsearch}{$value}{notfound}}}}"
testprint
"${if eq {1}{0}{yes}{${lookup{key1}lsearch{DIR/aux-fixed/0093.lsearch}{$value}{notfound}}}}"
testprint "body_linecount=$body_linecount"
|