Re: [Exim] Bypassing RBL check for authenticated users.

Página Principal
Apagar esta mensagem
Responder a esta mensagem
Autor: Robert Kehl
Data:  
Para: Oren Levi, exim-users
Assunto: Re: [Exim] Bypassing RBL check for authenticated users.
----- Original Message -----
From: "Oren Levi" <orenlevi@???>
To: "Tabor J. Wells" <twells@???>
Cc: <exim-users@???>
Sent: Tuesday, September 16, 2003 9:16 PM
Subject: Re: [Exim] Bypassing RBL check for authenticated users.


Use this one:

begin acl

check_recipient:

accept hosts = :

require verify = sender
       message       = Sender verification required


accept authenticated = *
       condition = ${if eq{$authenticated_id}{$sender_address}{yes}{no}}
       endpass
       message = $sender_fullhost is currently not permitted to send - \
              you must first authenticate


deny dnslists = bl.spamcop.net : \
              some.other.list
       message = rejected because $sender_host_address is \
              blacklisted at $dnslist_domain\n\
              $dnslist_text


Should do what you want.

Robert Kehl