OpenDMARC is a free open source software implementation of the DMARC specification. The OpenDMARC project is a community effort to develop and maintain an open source package for providing DMARC report generation and policy enforcement services. It includes a library for handling DMARC record parsing, a database schema and tools for aggregating and processing transaction history to produce DMARC reports, and a filter that ties it all together with an MTA using the milter protocol.
13 lines
226 B
Bash
13 lines
226 B
Bash
#!/bin/ksh
|
|
#
|
|
# $OpenBSD: opendmarc.rc,v 1.1.1.1 2019/05/24 11:35:02 sthen Exp $
|
|
|
|
daemon="${TRUEPREFIX}/sbin/opendmarc"
|
|
daemon_flags="-c ${SYSCONFDIR}/opendmarc.conf -u _opendmarc"
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
rc_reload=NO
|
|
|
|
rc_cmd $1
|