Re: [Exim] DNSBLs not working

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Nico Erfurth
Fecha:  
A: Michael Jakscht, Exim-users
Asunto: Re: [Exim] DNSBLs not working
Michael Jakscht wrote:
>
> Hi,
>
> it seems that my actual ACL configuration does not check the DNSBLs as it
> should.
> I need help setting up my ACL on exim 4.12 to do this DNSBLs checking with
> the following lists:
> (The host I'm talking about is MX=20, mail2.vit.de, 213.69.199.244)
>
> - relays.ordb.org
> - or.orbl.org
> - sbl.spamhaus.org
> - opm.blitzed.org
>
> and my ACL configuration is as follows:


........

> begin acl
>
> acl_check_rcpt:
>
>   accept  hosts = :
>   deny    local_parts   = ^.*[@%!/|] : ^\\.
>   accept  local_parts   = postmaster
>           domains       = +local_domains
>   accept  domains       = +local_domains

     ^^^^^^^^^^^^^^^^^^
     This accepts anything to your local domains, before the check is
     done, remove it and .....

>   accept  hosts         = +local_networks : +relay_from_hosts
>   require verify        = sender
>   deny    hosts         = !+vrfy_hosts : !+expn_hosts
>           message       = relaying denied !!! - as we said... we don't
> respect spammers!
>   deny    message       = rejected because $sender_host_address is in a
> black list at $dnslist_domain\n$dnslist_text
>           log_message   = found in $dnslist_domain
>           dnslists      = relays.ordb.org : or.orbl.org : sbl.spamhaus.org
> : opm.blitzed.org
>           domains       = !+local_domains


Place it here:
    accept  domains       = +local_domains



>   deny    message       = relaying denied !!! - as we said... we don't
> respect spammers!
> ==============================================