Init the resolver even in -be mode.
[exim.git] / test / aux-fixed / 4007.script
CommitLineData
c687f03b
JH
1#!/bin/sh
2
3if [ x$1 = "x-o" ]
4then
5 shift
6 action=$1
7 shift
8fi
9
10if [ -r $1 ]
11then
12 echo "scanning file $1"
13else
14 echo "$1 not readable"
15 exit 1
16fi
17
18case $action in
19accept) ;;
20reject) echo "VNAME found in file $1";;
0e42da1b 21pause3) sleep 3;;
c687f03b
JH
22esac
23