#! /bin/sh
sed '
/^Received:/d
/[	 ][	 ]*id /d
/^Message-Id:/d
/^X-Mailer:/d
' $* |
	if test -t 1; then
		more
	else
		cat
	fi
