Change DMARC Report address

Questions and answers about how to do stuff
Post Reply
netris
Posts: 8
Joined: 08 Jun 2019 21:39

Change DMARC Report address

Post by netris »

Running EFA 4.0, I recently needed to change the main domain across our network. I've changed the domain in 7) Mail Settings > 3) Admin Email, and all of the notices are coming to the correct email it appears, but when EFA sends the DMARC summary emails to domains that have sent us mail, it still sends from the old domain email address. Where do I change this?

Thanks!
User avatar
shawniverson
Posts: 3644
Joined: 13 Jan 2014 23:30
Location: Indianapolis, Indiana USA
Contact:

Re: Change DMARC Report address

Post by shawniverson »

As root...

Code: Select all

DBHOST='localhost'
DBUSER='opendmarc'
DBPASS="`grep ^DMARCSQLPWD /etc/eFa/openDMARC-Config | sed 's/^.*://'`"
DBNAME='opendmarc'
DMARCRepDomain="`grep DOMAINNAME /etc/eFa/eFa-Config | sed 's/^.*://'`"
DMARCRepEmail="no-reply@$DMARCRepDomain"
/usr/sbin/opendmarc-reports -dbhost=${DBHOST} -dbuser=${DBUSER} -dbpasswd=${DBPASS} -dbname=${DBNAME} -interval=86400 -report-email $DMARCRepEmail -report-org $DMARCRepDomain -smtp-server=127.0.0.1
User avatar
shawniverson
Posts: 3644
Joined: 13 Jan 2014 23:30
Location: Indianapolis, Indiana USA
Contact:

Re: Change DMARC Report address

Post by shawniverson »

Post Reply