Re: [Exim] 451-Invalid HELO

Αρχική Σελίδα
Delete this message
Reply to this message
Συντάκτης: Tor Slettnes
Ημερομηνία:  
Προς: Tom Playford
Υ/ο: exim-users
Αντικείμενο: 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