Re: [exim] Gateway uses 2 instances of Exim - How do I direc…

Top Page
Delete this message
Reply to this message
Author: Graeme Fowler
Date:  
To: exim users
Subject: Re: [exim] Gateway uses 2 instances of Exim - How do I direct commands to one or the other
On Wed, 2009-04-15 at 15:51 -0400, Rick Duval wrote:
> exim -C /etc/exim/exim_send.conf -bpr | grep frozen | awk {'print $3'}
> | xargs exim -Mrm
>
> It gave the following 23 times:
>
> Spool read error for 1LrpM1-0001yE-2u-H: No such file or directory
> Continuing to ensure all files removed
> Message 1LrpM1-0001yE-2u has been removed or did not exist


You need the last bit of the pipe to be:

... | exim -C /etc/exim/exim_send.conf -Mrm

Otherwise exim is trying to remove from the other queue.

Graeme