Re: [Exim] blocking incoming addresses

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Nico Erfurth
Fecha:  
A: Steve Foster
Cc: exim-users
Asunto: Re: [Exim] blocking incoming addresses
Steve Foster wrote:
> lol...yeah i know what you mean...
>
> i think compatibility wise they are practically the same with some changes
> to syntax, as i had to make some changes to previous exim configure files
> when i moved to exim3 on some other machines...


maybe this helps:

add a verify_only forwardfile-director and receiver_verify to the
config, add an condition that does a lookup for the receiver-address and
return :fail:
example:

denied_users:
driver = forwardfile
condition = ${lookup \
{$receiver_address}lsearch {/etc/exim/denied_senders}}
allow_system_actions
data = :fail:

ciao