#!/bin/sh
# Copyright (c) 1995, HaL Software Systems, Inc.

# Shell wrapper to convert "sendmail" to use /usr/bin/mail. Ishmail calls
# sendmail with two command line flags, which are simply ignored.

while [ `echo $1 | cut -c1` = "-" ]
do
	shift
done
exec /usr/bin/mail $*
