1#! /bin/sh
2# delivermail hack thanks to Jay Lepreau
3echo "Subject: delivermail $*" >/tmp/foo.$$
4echo "---------------------------------" >>/tmp/foo.$$
5cat /tmp/foo.$$ - | /bin/mail postmaster
6rm /tmp/foo.$$
7