>
>Is there a script equivalent of list_members that one could use
>to print out the real addresses of all the current list admins?
#!/bin/sh
cd /var/mailman/lists
for LIST in `ls`; do
echo -n $LIST
../bin/config_list -o - $LIST | grep "owner =" | cut -f2 -d=
done
With all the site admins here, someone must have come up with a
script to do this already, so I ask here first (that, and I don't
know Python in order to try it myself :)
Is there a script equivalent of list_members that one could use
to print out the real addresses of all the current list ad