Re: [exim] Remove from queue

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Simon Beale
Fecha:  
A: tower
Cc: Exim-Users
Asunto: 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.