Re: [EXIM] SMTP timeout after DATA

Top Page
Delete this message
Reply to this message
Author: Hans-Georg v. Zezschwitz
Date:  
To: Jeffrey Goldberg
CC: exim-users
Subject: Re: [EXIM] SMTP timeout after DATA
Hi!

> > or set up a transport filter that drops \0-characters (they are
> > illegal, anyways).
>
> Any advice on how to do that efficiently. I really don't want to run a
> perl processes on every message.


You might set up a special transport for this:

Get a second transport like this:

remote_smtp:
driver = smtp

remote_silly_smtp:
driver = smtp
transport_filter = "/usr/bin/tr -d '\\\\0'"

And use it like this:

sillymta:
driver = lookuphost
domains = "pretty-broken.de:also-broken.de"
transport = remote_silly_smtp

lookuphost:
driver = lookuphost
transport = remote_smtp


Greetings,


Georg


--
*** Exim information can be found at http://www.exim.org/ ***