Re: [Mailman-Users] Finding all unmoderated users in a list

2008-11-19 Thread Mark Sapiro
D G Teed wrote: > >If this is called "queries.py", then you can use the following command to >list all unmoderated members of a mailing list: > >withlist -r queries.unmoderated LISTNAME > >Note that the file queries.py must be located in the home directory >of mailman (not in bin). The above stat

Re: [Mailman-Users] Finding all unmoderated users in a list

2008-11-19 Thread D G Teed
Here is a solution I received from Jerry Stratton using withlist command from the command line... Create a file to use with "withlist". ==snip= from Mailman import mm_cfg def unmoderated(mlist): memberCount = 0 for member in mlist.getMembers():

[Mailman-Users] Finding all unmoderated users in a list

2008-11-19 Thread D G Teed
Howdy, We have some moderated lists with thousands of members and a handful of people are appointed rights to post to it (who are also members). Periodically we don't know who has that posting right, and someone asks for a list of those who can post. How can this be queried? --Donald ---