Brian Carpenter wrote: > >Is there a way to add a single e-mail addy to about 30 lists at once? This >needs to be done on a server that runs mailman in a cpanel and virtual host >environment. The add_members options does not seem to allow for this.
Run add_members in a shell script. For example #!/bin/sh for list in `cat file_of_lists` ; do echo Real Name <[EMAIL PROTECTED]> | bin/add_members -r - $list done If the 30 or so lists are all the lists in the installation, replace `cat file_of_lists` with `bin/lists_lists --bare`. -- 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 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org Security Policy: http://wiki.list.org/x/QIA9
