Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 May 2013 11:49:02 +0200
From:      Jaap Akkerhuis <jaap@NLnetLabs.nl>
To:        FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/177486: [NEW PORT] mail/opendmarc: DMARC library an milter implementation
Message-ID:  <201305220949.r4M9n2cg044832@bela.nlnetlabs.nl>
In-Reply-To: <201303292250.r2TMo3gO060105@freefall.freebsd.org>
References:  <201303292250.r2TMo3gO060105@freefall.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
------- =_aaaaaaaaaa0
Content-Type: text/plain; charset="us-ascii"

While waiting for the port to be accepted, a new version got released so
replace the previous shar ball with this one.

Regards,

	jaap


------- =_aaaaaaaaaa0
Content-Type: text/plain; name="opendmarc.shar"; charset="us-ascii"
Content-Description: opendmarc.shar
Content-Disposition: attachment; filename="opendmarc.shar"

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	opendmarc
#	opendmarc/files
#	opendmarc/files/opendmarc.in
#	opendmarc/distinfo
#	opendmarc/pkg-descr
#	opendmarc/Makefile
#	opendmarc/pkg-plist
#
echo c - opendmarc
mkdir -p opendmarc > /dev/null 2>&1
echo c - opendmarc/files
mkdir -p opendmarc/files > /dev/null 2>&1
echo x - opendmarc/files/opendmarc.in
sed 's/^X//' >opendmarc/files/opendmarc.in << '0691d92a2fd5094f408de10e46a3f473'
X#!/bin/sh
X# $FreeBSD: $
X
X# PROVIDE: opendmarc
X# REQUIRE: LOGIN
X# BEFORE:  mail
X# KEYWORD: opendmarc
X
X# Define these opendmarc_* variables in one of these files:
X#       /etc/rc.conf
X#       /etc/rc.conf.local
X#       /etc/rc.conf.d/opendmarc
X#
X# DO NOT CHANGE THESE DEFAULT VALUES HERE
X#
X
X. /etc/rc.subr
X
Xname="opendmarc"
Xrcvar=opendmarc_enable
X
Xcommand="%%PREFIX%%/sbin/opendmarc"
X
Xload_rc_config $name
X
Xopendmarc_enable=${opendmarc_enable-"NO"}
Xopendmarc_runas=${opendmarc_runas-"mailnull:mailnull"}
Xopendmarc_pidfile=${opendmarc_pidfile-"/var/run/opendmarc.pid"}
Xopendmarc_socketspec=${opendmarc_socketspec-"inet:8893@localhost"}
Xopendmarc_cfgfile=${opendmarc_cfgfile-"%%PREFIX%%/etc/mail/opendmarc.conf"}
Xopendmarc_flags=${opendmarc_flags-"-l -P $opendmarc_pidfile \
X -c $opendmarc_cfgfile -p $opendmarc_socketspec -u $opendmarc_runas"}
X
Xrun_rc_command "$1"
0691d92a2fd5094f408de10e46a3f473
echo x - opendmarc/distinfo
sed 's/^X//' >opendmarc/distinfo << '9ecc20552f2a7338b75cf94b84e5037e'
XSHA256 (opendmarc-1.1.3.tar.gz) = 4f9511ebd8cefb6e5a4d836f6285a1b6e4d682daec79fdba9fc7925b5f4fcfca
XSIZE (opendmarc-1.1.3.tar.gz) = 586574
9ecc20552f2a7338b75cf94b84e5037e
echo x - opendmarc/pkg-descr
sed 's/^X//' >opendmarc/pkg-descr << '028c53a7262934bbb64c9f215e3fab8d'
XOpenDMARC is an open source implementation of Domain-based Message
XAuthentication, Reporting & Conformance, or DMARC. It builds on the
Xsuccesses of technologies such as DomainKeys Identified Mail (DKIM)
Xand the Sender Policy Framework (SPF) to create an infrastructure
Xthat enforces policy on domain names that are visible to end users,
Xand creates a feedback framework for identifying and tracking
Xfraudulent use of domain names in email.
X
XIt includes a library for handling DMARC record parsing,
Xa database schema and tools for aggregating and processing transaction
Xhistory to produce DMARC reports, and a filter that ties it all together
Xwith an MTA using the milter protocol.
X
XWWW: http://www.trusteddomain.org/opendmarc.html
028c53a7262934bbb64c9f215e3fab8d
echo x - opendmarc/Makefile
sed 's/^X//' >opendmarc/Makefile << 'd494cdcd8f48b612572e611bb0ff5338'
X# Created by: Jaap Akkerhuis <jaap@NLnetLabs.nl>
X# $FreeBSD$
X
XPORTNAME=	opendmarc
XPORTVERSION=	1.1.3
XCATEGORIES=	mail security
XMASTER_SITES=	SF
XMASTER_SITE_SUBDIR=	${PORTNAME} \
X			${PORTNAME}/Previous%20Releases
X
XMAINTAINER=	jaap@NLnetLabs.nl
XCOMMENT=	DMARC library an milter implementation
X
XLICENSE=		BSD SENDMAIL
XLICENSE_COMB=		multi
X
XLICENSE_FILE_SENDMAIL=	${WRKSRC}/LICENSE.Sendmail
XLICENSE_GROUPS_SENDMAIL=	FSF OSI
XLICENSE_NAME_SENDMAIL=	Sendmail Open Source License
XLICENSE_PERMS_SENDMAIL=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
X
XUSE_RC_SUBR=	opendmarc
XUSE_LDCONFIG=	yes
X
XGNU_CONFIGURE=		yes
X
XPORTDOCS=	*
XMAN5=		opendmarc.conf.5
XMAN8=		opendmarc-check.8 opendmarc-expire.8 opendmarc-import.8 \
X		opendmarc-params.8 opendmarc-reports.8 opendmarc.8
X
Xpost-install:
X	@${MKDIR} ${PREFIX}/etc/mail
X	${INSTALL_DATA} \
X		${WRKSRC}/opendmarc/opendmarc.conf.sample ${PREFIX}/etc/mail
X
X.include <bsd.port.mk>
d494cdcd8f48b612572e611bb0ff5338
echo x - opendmarc/pkg-plist
sed 's/^X//' >opendmarc/pkg-plist << '7d291f5856c361266e877e9e019238fb'
Xetc/mail/opendmarc.conf.sample
Xinclude/opendmarc/dmarc.h
Xlib/libopendmarc.a
Xlib/libopendmarc.la
Xlib/libopendmarc.so.1
Xlib/libopendmarc.so
Xsbin/opendmarc
Xsbin/opendmarc-check
Xsbin/opendmarc-expire
Xsbin/opendmarc-import
Xsbin/opendmarc-importstats
Xsbin/opendmarc-params
Xsbin/opendmarc-reports
X@dirrm include/opendmarc
X@dirrmtry etc/mail
7d291f5856c361266e877e9e019238fb
exit


------- =_aaaaaaaaaa0--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305220949.r4M9n2cg044832>