Re: [exim] Add a whitelist for senders to skip auth check

Top Page
Delete this message
Reply to this message
Author: Damon Hill
Date:  
To: exim-users@exim.org
Subject: Re: [exim] Add a whitelist for senders to skip auth check
As long as I can unsderstand that way one's allowing every user to send
unauthenticated mail, isn't it? That's not what I want to achieve.

I just need to let one domain to skip this checking if the sending
domain is one the listed.

On 8/5/20 11:43, Cyborg via Exim-users wrote:

Am 08.05.20 um 14:03 schrieb Damon Hill via Exim-users:

I've got the ACL:

   deny    message       = smtp auth requried
           sender_domains = +local_domains
           !authenticated = *



A very bad idea ... but if it's your wish ... the order matters in acls :

   accept    message       = no smtp auth requried
           sender_domains = +local_domains


   deny    message       = smtp auth requried
           sender_domains = +local_domains
           !authenticated = *


Cu
Marius