Page 1 of 1

Change DMARC Report address

Posted: 23 Nov 2019 16:39
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!

Re: Change DMARC Report address

Posted: 23 Nov 2019 23:02
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

Re: Change DMARC Report address

Posted: 23 Nov 2019 23:04
by shawniverson