Getting rid of exim ACLs

mxroute

Verified User
Joined
Sep 24, 2019
Messages
267
If anyone has advice on this, it would be greatly appreciated. I'm trying to figure out a way to comment out this ACL and have it persist through exim configuration rebuilds:

Code:
    deny message = HELO_IS_LOCAL_DOMAIN
        condition = ${if match_domain{$sender_helo_name}{+local_domains}{true}{false}}
        hosts = ! +relay_hosts

It's far too common for customers to run their own servers that have a hostname that matches their website, and they want to send email through my DA servers, so I have to cut this out or they can't even authenticate over SMTP to send email through the server. I tried making an edited copy of exim.conf file in /usr/local/directadmin/custombuild/custom/exim (risky if something changes, but it's at least something) and that seems to have no impact as exim.conf continues to be replaced on configuration rebuild.

Any thoughts?
 
Back
Top