#!/bin/sh
cat >/tmp/bounce.$$
if [ -s /tmp/bounce.$$ ]
then
  /usr/lib/sendmail $1 < /tmp/bounce.$$
fi

rm /tmp/bounce.$$
