On 07/06/10 16:34, Mark Sapiro wrote:
Sergi wrote:
thanks for the reply, but I was thinking not on a list administration
context but on a whole mailman server administration context, something
set at list creation time and unavailable for a list administrator.
I am thinking of an ugly method of watching config.pck files, counting
members and taking action if thresholds are reached.

#!/bin/bash
cd ~mailman
for list in `bin/list_lists --bare`; do
   if [ `bin/list_members $list | wc -l` -gt 200 ] ; then
     echo $list has over 200 members
   fi
done


Hello,

yes, something like that :-)

Thanks,
regards,
Sergi
------------------------------------------------------
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Reply via email to