# It's local UN.NET stuff!!!
#
# Forget about using it, cause it only will try to distribute the latest
# ix/MBox release to a specified receiver ... 

RECEIVER=$1
MAX=0
NUM=0 

for i in /xa*
	do
		MAX=$[MAX+1]
	done

echo
echo Receiver: $RECEIVER
echo
echo Number of Packs: $MAX
echo


for i in /xa*		
	do
		NUM=$[NUM+1]
		mail -s "ix/MBox BBS 2.2 ("$NUM"/"$MAX") uuencoded, gzipped and tared part of a HUGE file" $RECEIVER < $i
	done

