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="u...@example.com" 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 -- mailman-users@python.org
To unsubscribe send an email to mailman-users-le...@python.org
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/mailman-users@python.org/
    https://mail.python.org/archives/list/mailman-users@python.org/
Member address: arch...@jab.org

Reply via email to