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