> Is there an easy way that I can create a distribution list for
all of my
> users. I am an ISP and am adding users all the time. I would
like
> something better than manualy putting in each email address.
Or point me
> in the right direction.
I posed the same question a while back and here is what I got,
hope it helps:
------
check the moongroup archives for the mailhelp list (or perhaps
even this
one) where there was a tread on this recently. A simple cut
command will
get you all users out of /etc/passwd, and it would work nicely
save
gettign a few extra emails to the postmaster for users like bin,
daemon
etc. Somethign like this iirc
cut -d: -f1 /etc/passwd | xargs cat mail_message.txt | mail - s
"Quarterly Update"
should do the trick. above snippet **UNTESTED**
hth
charles
-----
Later,
Steven
--
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.