> We will be upgrading our Mailman installation shortly  and I wish to notify 
> all the list admins of this. Is there straightforward way of collecting all
> the mail addresses using a script?

Ray, here is my script. 

 #!/bin/sh
 # output 'listname : owner' for all lists
 for i in ../lists/*; do
         this=`basename $i`
         printf  "$this : "
         config_list -o - $this | egrep '^owner =' | cut -f2 -d"'"
 done

 I redirect the output in a file 'owners' for quick reference (and to 
'sync_members' a listowners list that I use to announce such things )

Best wishes
        Georg

-- 
--
Georg Koch ([EMAIL PROTECTED])   | Phone: +49 761 203 6710
German Cochrane Centre                       | Fax:   +49 761 203 6712
Mail: Institute of Medical Biometry and Medical Informatics
      Stefan-Meier-Strasse 26, D-79104 Freiburg, Germany
......................................................................
Do you know what a kibibit, mebibyte, or gibibyte is?
go to http://physics.nist.gov/cuu/Units/binary.html to find out!

-- 
--
Georg Koch ([EMAIL PROTECTED])   | Phone: +49 761 203 6710
German Cochrane Centre                       | Fax:   +49 761 203 6712
Mail: Institute of Medical Biometry and Medical Informatics
      Stefan-Meier-Strasse 26, D-79104 Freiburg, Germany
......................................................................
Do you know what a kibibit, mebibyte, or gibibyte is?
go to http://physics.nist.gov/cuu/Units/binary.html to find out!



------------------------------------------------------
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users

Reply via email to