On 3/8/26 19:17, iMark wrote:
I can see on a MM3 list's administration panel that a member has a bounce count of 4.
When I query the "bounceevent" table in the mailman database ...
SELECT * FROM mailman.public.bounceevent WHERE list_id = '<MY_LIST_ID>' AND email = '<MEMBERS_EMAIL_ADDRESS>'
... the result is only 2 records from the last 24 hours. It appears that the table only stores 24 hours worth.
===========
On 2026-03-09 02:32, Mark Sapiro wrote:
The Task runner runs periodically and among other things deletes all processed bounce events older than the configured dsn_lifetime which defaults to 1 day.
So I figure I'm looking in the wrong place. Where should I be looking?
What are you looking for?
===========
My thinking was that to reset that member's bounce_count from 4 to 0, I could just delete the records (resulting from the query) in the "bounceevent".
But as the query result only shows 2 bounces, I'm looking for where the Admin web UI is getting "4" from (ie. the processed bounce events older than 24 hours).