Deleting mail in Deferred Mail

Feb 21, 2022
28
5
8
71
We have been hit with a flood of SPAM from .bio addresses

In Queues --> Deferred Mail I can get a list of the mail

What I can't figure out is how to delete more than one message at a time from that screen..

I know I can delete all messages but I would like to just delete all messages from the offending domain

TIA
 
What I can't figure out is how to delete more than one message at a time from that screen..
This is currently not possible in the GUI

If you want to delete all the mail in the queue you can use `postsuper -d ALL`
if you only want to delete specific mails you need to get the queue ids from the postqueue command and feed them to postsuper (postqueue has json output - so you could use `jq` to select the relevant ones)

I hope this helps!