Brandon Rodak wrote:
>
>Thanks for your advice on the broadcast message and how to add the
>appropriate header.  I guess my next question would be if it is possible at
>all to send such a broadcast message to all lists (and thus all list
>members) at one time.  I have 60 + distinct/unique lists and would not want
>to send the same message sixty times if I did not have to - Any ideas?


bin/find_member . | grep -v "^ " | sed "s/ found in://" | \
xargs mail < message_file -s "The Subject"

If you want to include owners and moderators who aren't list members,

#!bin/sh
bin/find_member . | grep -v "^ " | sed "s/ found in://" > member_file
bin/list_owners -m > owner_moderator_file
sort -u member_file owner_moderator_file | \
xargs mail < message_file -s "The Subject"


-- 
Mark Sapiro <[email protected]>        The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan

------------------------------------------------------
Mailman-Users mailing list [email protected]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Reply via email to