Re: [Exim] Blacklists

Pàgina inicial
Delete this message
Reply to this message
Autor: Dominik Ruf
Data:  
A: exim-users
Assumpte: Re: [Exim] Blacklists
* Ralph Ballier <ballier@???> [2004-05-20 12:51]:
>
> If a mail comes *authenticated* from a blacklisted host, it is refused too,
> because of "host is in a blacklist".
>
> I mean, this is not ok.
>
> Is it possible, to accept *authenticated* mails always?


a) In your rcpt_acl first accept anything authenticated, then deny
with blacklists.

   accept authenticated = *
   deny   message       = your message
          dnslists      = your dnslists


b) Selectively use dnslists by appending !authenticated to this deny
statement.

   deny message        = your message
        dnslists       = your dnslists
    !authenticated = *


Dominik