Re: [Exim] 451-Invalid HELO

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Tor Slettnes
Fecha:  
A: Tom Playford
Cc: exim-users
Asunto: Re: [Exim] 451-Invalid HELO
On Apr 28, 2004, at 17:27, Tom Playford wrote:

> Would an entry like this in the routers configuration be sensible?
>
> smarthost:
> driver = domainlist
> transport = remote_smtp
> route_list = "* smtp.ntlworld.com bydns_a"



There is no "domainlist" driver, AFAIK. What you probably want is the
"manualroute" driver:

  smarthost:
    debug_print       = "R: smarthost for $local_part@$domain"
    driver            = manualroute
    domains           = ! +local_domains
    transport         = remote_smtp
    route_list        = * smtp.ntlworld.com
    host_find_failed  = defer
    same_domain_copy_routing = yes
    no_more


(Taken from /etc/exim4/conf.d/router/200_exim4-config_primary in
Debian).

-tor