#!/bin/sh
#	testpath a b c ...
#
# Generate a test message to a!b!c!...!<nobody> and mail it.
# We'll try to guess at an id that won't ever be valid.

P=`echo $* | tr ' ' '!'` 
R=abcdefgh
{	echo Subject: test
	echo
	echo This is a bounce test of mail to:
	echo '	'$P
	echo Origin: $HOST!$LOGNAME
}	| mail $P!$R
