Re: [Mailman-Users] create multiple lists resolved

Dear Mr. Shapiro,
I just wanted to let you know how I resolved it. Thanks again for your help.
#!/bin/sh
list=`cat $1`
for user in $list
do
echo $user
./newlist -q $user user@eamiladdress.com password
done
From: msapiro@value.net Subject: Re: [Mailman-Users] create multiple lists Date: March 29, 2006 5:22:54 PM PST To: carconni@earthlink.net, mailman-users@python.org
Carconni wrote:
Were moving to mailman and I need to create over 250 "lists". All the lists will have the same owner and and the same password. Is there anyway to automate this? I can set up a script to loop through a test file but how can I set the owner_mail = args[1] and listpasswd = args[2] to a default value?
See
bin/newlist --help
-- Mark Sapiro <msapiro@value.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
participants (1)
-
Carconni