Re: [Exim] Re:TNEF Problems

Top Page
Delete this message
Reply to this message
Author: Tom Kistner
Date:  
To: R.B. (Rick)
CC: Exim users list, scott, arb
Subject: Re: [Exim] Re:TNEF Problems
OK, I just checked on a RH9 box and it does NOT crash :(.

Is anyone here able to run strace on his box? Use one of the leftover
.eml files, and this shell script (test.sh):

----------------------------------
#!/bin/sh
echo "helo me"
sleep 1
echo "mail from:<someone@???>"
sleep 1
echo "rcpt to:<address@???>"
sleep 1
echo "data"
sleep 1
cat $1
echo
echo "."
echo "quit"
-----------------------------------

Then run it like this:

./test.sh emlfile.eml | strace -f exim -bs -d

And send me the output. Maybe there will be something meaningful in there...

/tom