[Mailman-Users] List all members of All lists

Martin Schütte lists at mschuette.name
Fri Nov 20 22:00:42 CET 2009


Harold Pritchett wrote:
> How do I list all of the members of all of my lists.

Hello,
I use this script to get a list of all lists and all members:

#! /bin/sh
for i in `/usr/local/mailman/bin/list_lists | tail +2 | awk '{print
$1}'`; do \
  for j in `/usr/local/mailman/bin/list_members $i`; do \
    echo $i, $j; \
  done; \
done


-- 
Martin



More information about the Mailman-Users mailing list