[Mailman-Users] Finding out all the list administrator on a site

Georg Koch gorg at sun1.imbi.uni-freiburg.de
Tue Jan 30 10:24:59 CET 2001


> 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 (gorg at ami1.ukl.uni-freiburg.de)   | 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 (gorg at ami1.ukl.uni-freiburg.de)   | 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!






More information about the Mailman-Users mailing list