Re: [exim] acl problem : unexpected deny in acl_check_smtp_r…

Etusivu
Poista viesti
Vastaa
Lähettäjä: Jeremy Harris
Päiväys:  
Vastaanottaja: exim-users @ exim. org
Aihe: Re: [exim] acl problem : unexpected deny in acl_check_smtp_rcpt:
hanasaki wrote:
> The follow is from exim -bh . It results in a 'deny" yet shouldn't
> another host on the same subnet and domain "home.hanaden.com" sends mail
> fine. Anyone have ideas as to what is going on and why this is
> failing/how to fix?
>
>
> ====== config rules
> acl_check_smtp_rcpt:
> accept hosts = :
>
>   accept  domains       = +local_domains
>        local_parts   = postmaster

>
>   deny  message   = "HELO/EHLO required by SMTP RFC"
>        condition = ${if eq{$sender_helo_name}{}{yes}{no}}
>        deny  message   = "Invalid domain or IP given in HELO/EHLO"
>        !condition = ${if match{$sender_helo_name}{\\\.}{yes}{no}}


There's a default "deny" implicit at the end of every ACL. Put
an explicit unconditional "accept" there if you need one.

- Jeremy