1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Mail::SPF is an object-oriented Perl implementation of the Sender Policy

Framework (SPF) e-mail sender authentication system.

This release of Mail::SPF fully conforms to RFC 4408 and passes the 2006.11
release of the official test-suite <http://www.openspf.org/Test_Suite>.

The Mail::SPF source package includes the following additional tools:

  * spfquery:  A command-line tool for performing SPF checks.
  * spfd:      A daemon for services that perform SPF checks frequently.

WWW:	http://www.openspf.org/

- Koen Martens
gmc@sonologic.nl

PR:		ports/109020
Submitted by:	gmc at sonologic.nl
This commit is contained in:
Martin Wilke 2007-02-10 16:39:01 +00:00
parent 1502b52954
commit 48585a89c3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=184790
5 changed files with 111 additions and 0 deletions

View File

@ -354,6 +354,7 @@
SUBDIR += p5-Mail-QuoteWrap
SUBDIR += p5-Mail-RBL
SUBDIR += p5-Mail-RFC822-Address
SUBDIR += p5-Mail-SPF
SUBDIR += p5-Mail-SPF-Query
SUBDIR += p5-Mail-SRS
SUBDIR += p5-Mail-SendEasy

54
mail/p5-Mail-SPF/Makefile Normal file
View File

@ -0,0 +1,54 @@
# New ports collection makefile for: p5-Mail-SPF
# Date created: Thu Feb 8 18:46:25 CET 2007
# Whom: gmc@sonologic.nl
#
# $FreeBSD$
#
PORTNAME= Mail-SPF
PORTVERSION= 2.004
CATEGORIES= mail perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= Mail
PKGNAMEPREFIX= p5-
MAINTAINER= gmc@sonologic.nl
COMMENT= Reference implementation of the RFC 4408 SPF protocol
RUN_DEPENDS= ${SITE_PERL}/Net/DNS/Resolver/Programmable.pm:${PORTSDIR}/dns/p5-Net-DNS-Resolver-Programmable \
${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm:${PORTSDIR}/dns/p5-Net-DNS \
${SITE_PERL}/${PERL_ARCH}/version.pm:${PORTSDIR}/devel/p5-version \
${SITE_PERL}/Error.pm:${PORTSDIR}/lang/p5-Error \
${SITE_PERL}/${PERL_ARCH}/NetAddr/IP.pm:${PORTSDIR}/net-mgmt/p5-NetAddr-IP \
${SITE_PERL}/URI.pm:${PORTSDIR}/net/p5-URI \
${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple
BUILD_DEPENDS= ${RUN_DEPENDS}
PERL_MODBUILD= yes
CONFIGURE_ARGS= --install_path sbin=${PREFIX}/sbin
MAN1= spfquery.1
MAN3= Mail::SPF.3 Mail::SPF::Mech::PTR.3 Mail::SPF::Mech.3 \
Mail::SPF::SenderIPAddrMech.3 Mail::SPF::MacroString.3 \
Mail::SPF::Mech::IP4.3 Mail::SPF::Mech::A.3 \
Mail::SPF::Request.3 Mail::SPF::Result.3 Mail::SPF::Mod.3 \
Mail::SPF::Mod::Exp.3 Mail::SPF::Mech::MX.3 \
Mail::SPF::Server.3 Mail::SPF::Util.3 Mail::SPF::Mech::IP6.3 \
Mail::SPF::Record.3 Mail::SPF::Mech::Include.3 \
Mail::SPF::v2::Record.3 Mail::SPF::Mod::Redirect.3 \
Mail::SPF::Base.3 Mail::SPF::Mech::All.3 Mail::SPF::Term.3 \
Mail::SPF::v1::Record.3 Mail::SPF::Mech::Exists.3
.include <bsd.port.pre.mk>
DOCSDIR= ${PREFIX}/share/doc/p5-Mail-SPF
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for doc in CHANGES LICENSE README TODO
${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>

View File

@ -0,0 +1,3 @@
MD5 (Mail-SPF-2.004.tar.gz) = 0923798432e0f25dffc4bc6428abef6a
SHA256 (Mail-SPF-2.004.tar.gz) = a835227941680e223a3584e4d6056b09ab48a9b2a9d09860dab09811b5c39fa7
SIZE (Mail-SPF-2.004.tar.gz) = 69531

View File

@ -0,0 +1,15 @@
Mail::SPF is an object-oriented Perl implementation of the Sender Policy
Framework (SPF) e-mail sender authentication system.
This release of Mail::SPF fully conforms to RFC 4408 and passes the 2006.11
release of the official test-suite <http://www.openspf.org/Test_Suite>.
The Mail::SPF source package includes the following additional tools:
* spfquery: A command-line tool for performing SPF checks.
* spfd: A daemon for services that perform SPF checks frequently.
WWW: http://www.openspf.org/
- Koen Martens
gmc@sonologic.nl

View File

@ -0,0 +1,38 @@
bin/spfquery
sbin/spfd
%%SITE_PERL%%/Mail/SPF.pm
%%SITE_PERL%%/Mail/SPF/MacroString.pm
%%SITE_PERL%%/Mail/SPF/SenderIPAddrMech.pm
%%SITE_PERL%%/Mail/SPF/Exception.pm
%%SITE_PERL%%/Mail/SPF/Server.pm
%%SITE_PERL%%/Mail/SPF/Util.pm
%%SITE_PERL%%/Mail/SPF/Base.pm
%%SITE_PERL%%/Mail/SPF/Term.pm
%%SITE_PERL%%/Mail/SPF/Mech.pm
%%SITE_PERL%%/Mail/SPF/Record.pm
%%SITE_PERL%%/Mail/SPF/Mod.pm
%%SITE_PERL%%/Mail/SPF/Result.pm
%%SITE_PERL%%/Mail/SPF/Request.pm
%%SITE_PERL%%/Mail/SPF/v1/Record.pm
%%SITE_PERL%%/Mail/SPF/Mech/All.pm
%%SITE_PERL%%/Mail/SPF/Mech/A.pm
%%SITE_PERL%%/Mail/SPF/Mech/IP6.pm
%%SITE_PERL%%/Mail/SPF/Mech/MX.pm
%%SITE_PERL%%/Mail/SPF/Mech/Include.pm
%%SITE_PERL%%/Mail/SPF/Mech/Exists.pm
%%SITE_PERL%%/Mail/SPF/Mech/IP4.pm
%%SITE_PERL%%/Mail/SPF/Mech/PTR.pm
%%SITE_PERL%%/Mail/SPF/Mod/Redirect.pm
%%SITE_PERL%%/Mail/SPF/Mod/Exp.pm
%%SITE_PERL%%/Mail/SPF/v2/Record.pm
%%PORTDOCS%%%%DOCSDIR%%/CHANGES
%%PORTDOCS%%%%DOCSDIR%%/LICENSE
%%PORTDOCS%%%%DOCSDIR%%/README
%%PORTDOCS%%%%DOCSDIR%%/TODO
%%PORTDOCS%%@dirrm %%DOCSDIR%%/
@dirrmtry %%SITE_PERL%%/Mail/SPF/v1
@dirrmtry %%SITE_PERL%%/Mail/SPF/Mod
@dirrmtry %%SITE_PERL%%/Mail/SPF/Mech
@dirrmtry %%SITE_PERL%%/Mail/SPF/v2
@dirrmtry %%SITE_PERL%%/Mail/SPF
@dirrmtry %%SITE_PERL%%/Mail