
I have an admittedly out-of-date installation of Mailman 3.3 (3.3.2 Tom Sawyer) but it's been working without issues for a long time, so I haven't had much incentive to bring it up to date. Sorry!
A couple of my larger mailing lists (around 500 members) are currently very slow when making changes through the UI (maybe that's my raison-to-update).
They also both have very large lists of members "pending confirmation."
My suspicion is that the large pending list is slowing down other operations.
But pendingdb.evict() doesn't seem to clear the list. For example, on one of my lists:
from mailman.interfaces.pending import IPendings
from zope.component import getUtility
pendingdb = getUtility(IPendings) pendingdb.count() 5040 pendingdb.evict() pendingdb.count() 5040
I have several lists, but none of them are extremely active, so I don't have a problem with wiping the pending db for all of them.
And I also might be totally wrong in my guess.
Mojo
Morris Jones, Monrovia, CA