I'm a newbie and have just had mailman 2.1 running on Freebsd with postfix for a couple of days.

I've found a mod.py that will show users in a list that have the moderator bit set.

# mod.py

from Mailman import mm_cfg
import sys

def mod(list):
   for member in list.getMembers():
       if list.getMemberOption(member, mm_cfg.Moderate):
           print member, "is moderated"


How can I modify this to show users "don't" have the moderator bit set?
Search FAQ...no luck.

Regards,
-jm
------------------------------------------------------
Mailman-Users mailing list
[email protected]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: http://wiki.list.org/x/QIA9

Reply via email to