Re: [exim] Sudden problem - exim failing

Pàgina inicial
Delete this message
Reply to this message
Autor: Graeme Fowler
Data:  
A: exim-users
Assumpte: Re: [exim] Sudden problem - exim failing
On Thu, 2010-02-18 at 07:04 +0100, Bill Hayles wrote:
> 2010-02-17 21:46:50 1Nh23i-0004ro-Ee unable to set gid=100 or uid=1001 (euid=8): system filter
> 2010-02-17 21:46:50 1Nh23i-0004ro-Ee internal problem in system filter: failure to transfer data from subprocess: status=0100 readerror='No such file or directory'
> 2010-02-17 21:46:50 1Nh23i-0004ro-Ee Error in system filter: internal problem in system filter: failure to transfer data from subprocess: status=0100 readerror='No such file or directory'


One of two things has happened:

1. Your system filter file has disappeared (unlikely), or
2. A file referred to in your system filter file has disappeared

Do this:

exim -bP system_filter

Then have a look in the file referred to in that config directive to
check for any other files it might be looking for. Alternatively, run
this:

( echo "From: foo@???"; echo "To: foo@???"; echo "Subject: foo";
echo; echo "test" ) | exim -v -bF `exim -bP system_filter | awk '{ print
$3 }'`

That will run a test on your system filter file and tell you where the
error occurs.

Graeme