#!/bin/sh
#	testpath a b c ...
#
# Generate a test message to a!b!c!... and mail it.
if [ ! -n "$LOGNAME" ];then LOGNAME=$USER ;fi
P=`echo $* | tr ' ' '!'` 
{	echo Subject: test
	echo
	echo This is a test of mail to:
	echo '	'$P
	echo Origin: `hostname`!$USER
	echo If you receive this, please try to send back a response.
}	| Mail -v $P
