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: [email protected]"; echo "To: [email protected]"; 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 -- ## List details at http://lists.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://wiki.exim.org/
