Feature macros, show-supported and build-time selection for malware interfaces
[users/jgh/exim.git] / test / aux-fixed / 4008.script
diff --git a/test/aux-fixed/4008.script b/test/aux-fixed/4008.script
new file mode 100755 (executable)
index 0000000..e391a2b
--- /dev/null
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+if [ x$1 = "x-o" ]
+then
+  shift
+  action=$1
+  shift
+fi
+
+if [ -r $1 ]
+then
+  echo "scanning file $1"
+else
+  echo "$1 not readable"
+  exit 1
+fi
+
+case $action in
+accept) ;;
+reject) echo "VNAME found in file $1";;
+pause3) sleep 3;;
+esac
+