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


-- 
Mark Sapiro <[email protected]>        The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan

------------------------------------------------------
Mailman-Users mailing list [email protected]
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