On Fri, Dec 27, 2024 at 09:20:46AM -0600, Scott Neader wrote:
> Hello all!  Somehow, one of our Mailman2 lists has a member with a bad
> email address, in the format of user@@example.com  (i.e. two @ symbols).
> This is breaking at least one cron (disabled)
> 
> I've tried removing the address via the backend admin, as well as command
> line, but it's not working.
> 
> Any other ways to remove it?

A somewhat dirty way but how to fix rather than remove:

Open up your database command line interface:

use mailman3;   -- choose that database

select * from address where email like "user@@example.com";

That will give you an id -- so if the value is 50:

update address set email="[email protected]" where id=50;

-- 
Alain Williams
Linux/GNU Consultant - Mail systems, Web sites, Networking, Programmer, IT 
Lecturer.
+44 (0) 787 668 0256  https://www.phcomp.co.uk/
Parliament Hill Computers. Registration Information: 
https://www.phcomp.co.uk/Contact.html
#include <std_disclaimer.h>
------------------------------------------------------
Mailman-Users mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/mailman-users.python.org/
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: https://www.mail-archive.com/[email protected]/
    https://mail.python.org/archives/list/[email protected]/
Member address: [email protected]

Reply via email to