Autor: Simon Beale Data: Para: tower CC: Exim-Users Assunto: Re: [exim] Remove from queue
> Hi >
> I want to remove messages from exim queue. There is a lot of message id
> but one sender, so use exim -Mrm <id-message> isn't a nice idea. I
> should use some like exim -?? <sender address>.
Try:
exipick -f <sender_address> -i |xargs exim -Mrm
That picks out all the message-ids on the queue with that sender_address,
and feeds them in to the deletion command.