Re: [Mailman-Users] mailman mod list

2009-02-03 Thread Jim McIver
Thx Mark. That worked. -jm Mark Sapiro wrote: Jim McIver wrote: 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

Re: [Mailman-Users] mailman mod list

2009-02-03 Thread Mark Sapiro
Jim McIver wrote: > >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 memb

[Mailman-Users] mailman mod list

2009-02-02 Thread Jim McIver
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 li