/etc/qmail/qmail-verify/run is in qmail-run 2.0.2+nmu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/sh
exec 2>&1
if CDB=$(grep fastforward ~alias/.qmail-default 2>&1); then
CDB=${CDB#|*fastforward}
CDB=${CDB##*-* }
test -z "$CDB" ||
exec env VERIFY_FASTFORWARDCDB="$CDB" /var/lib/qmail/bin/qmail-verify
fi
exec /var/lib/qmail/bin/qmail-verify
|