#! /bin/ksh

exit

list=`cat mail.lst`

message="Dear |STAT User,

I think it's been ten years since I sent out a mailing,
but except for changing machines, not much has changed.
I am pleased to announce that the |STAT handbook and
manual entries have been reformatted as Web pages and
are available at the |STAT home page:
	http://www.acm.org/~perlman/stat/
Also, in case you wanted |STAT for DOS, executables and
documentation are available as a WinZip file:
	http://www.acm.org/~perlman/stat/DOS-STAT.ZIP

Changes to the |STAT programs themselves do not seem likely,
but I might add more documentation to the Web pages.

Gary Perlman"

xlist="perlman@oclc.org
perlman@computer.org"

for email in $list
do
	echo $email
	echo "$message" |
		Mail $email -s "|STAT software update"
	sleep 3
done
