Re: [Exim] (no subject)

Pàgina inicial
Delete this message
Reply to this message
Autor: Nico Erfurth
Data:  
A: Dave C.
CC: Adam Moffett, exim-users@exim.org
Assumpte: Re: [Exim] (no subject)
> On Sat, 5 Oct 2002, Adam Moffett wrote:
>
> Yes, but in exim4, I can only reject at the RCPT TO, and the connections
> sit there wading thru hundreds of RCPT TO's each - I'd like to find way
> to just DROP the connection with a short delay and a 5xx once it says
> "HELO whatever.optprofessionals.com"


You can't drop the connection, but you can stall him.

deny condition = ${if match
           {$sender_helo_name}{\N\.optprofessionals\.com$\N}
           {${run{/bin/sleep 30}{1}{1}}{0}
         }



ciao