Re: [Exim] Exim Authentication variables...

Top Page
Delete this message
Reply to this message
Author: Alexander Sabourenkov
Date:  
To: Jose de Paula Eufrasio Junior
CC: Lista Exim
Subject: Re: [Exim] Exim Authentication variables...
Jose de Paula Eufrasio Junior wrote:
> --
> Hello
>
> I tried to find a list of variables that Exim sets in its various
> functions but I can't find any..
>
> I'm wanting to test if a user is authenticated, if it's true exim will
> skip the RBL checks...
>
> I think that there is an $authenticated_user variable, but I can't find
> nothing about what's the content..


Use something like :

deny    message = host $sender_host_address is listed at $dnslist_domain
($dnslist_text)
          !authenticated = *
          !hosts = +rbl_no_check_hosts : +relay_hosts
           dnslists = DNSBL_LISTS


The condition of interest is
!authenticated = *

--

./lxnt