/usr/lib/courier/faxmail/init is in courier-faxmail 0.68.2-1ubuntu3.
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 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | #
# Copyright 2002 Double Precision, Inc. See COPYING for
# distribution information.
#
# Common initialization for shell-based filters
OUTDIR="$1"
TROFF=/usr/bin/troff
DPOST=/usr/bin/grops
TBL=/usr/bin/tbl
GS="/usr/bin/gs -P-"
prefix=/usr
exec_prefix=/usr
sysconfdir=/etc/courier
FAXRES="${FAXRES:-hi}"
if test "$FAXRES" = "lo"
then
FAXRES="-r204x98"
else
FAXRES="-r204x196"
fi
die() {
echo "Unable to generate fax document - $1 not found" >&2
exit 1
}
test -x $TROFF || die $TROFF
test -x $DPOST || die $DPOST
test -x $TBL || die $TBL
set -e
|