#!/bin/sh

/bin/rm -f $HOME/Mail/outbox/#*

for i in $HOME/Mail/outbox/*
do
if [ -f $i ] ; then /usr/bin/mh/send $i; fi
done


