22 Jan
2022
22 Jan
'22
12:57 a.m.
On Fri, 2022-01-21 at 16:50 -0800, Mark Sapiro wrote:
On 1/21/22 4:32 PM, William Oliver wrote:
I have installed mailman3 and it's up and running great. However, I noticed that, during a mass subscribe, I mis-typed an address, e.g. name@domain.ned rather than name@domain.net. I found how to unsubscribe the bad address, but I haven't found a "delete" option under Users or anywhere else. How to I purge a user from the users list?
You need to do it via REST or
mailman shell
. In mailman shell,>>> um = getUtility(IUserManager) >>> usr = um.get_user('user@example.com') >>> um.delete_user(usr) >>> commit()
As a related question, in docs.mailman.org, I can find a list member's manual, but I can't seem to find an admin manual. Is there one?
No, not per se.
Thanks!
billo