Extract list of lists with population?
Is there a command I can run that will quickly tell me the name of each list on a server AND the number of members in that list?
If not, what's the quickest way to check list membership totals?
Thanks -Brendan
Depending on your shell, something like
foreach l ( /your/path/to/mailman/bin/list_lists -b
)
echo -n $l
/your/path/to/mailman/bin/list_members | wc -l
end
might do the trick.
mjb.
Unthinking respect for authority is the greatest enemy of truth. -Albert Einstein.
Here's some really ugly perl that I slapped together last night. I think it does what the OP wanted. It sends mail and writes a log.
Thanks,
Charles
Charles Sprickman NetEng/SysAdmin Bway.net - New York's Best Internet - www.bway.net spork@bway.net - 212.655.9344
On Thu, 1 Jul 2004, Mark J. Bradakis wrote:
Depending on your shell, something like
foreach l (
/your/path/to/mailman/bin/list_lists -b
) echo -n $l /your/path/to/mailman/bin/list_members | wc -l endmight do the trick.
mjb.
Unthinking respect for authority is the greatest enemy of truth. -Albert Einstein.
Mailman-Users mailing list Mailman-Users@python.org http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
participants (3)
-
Brendan Chard
-
Charles Sprickman
-
Mark J. Bradakis