View | Details | Raw Unified | Return to bug 189458
Collapse All | Expand All

(-)Makefile (-6 / +8 lines)
Lines 2-23 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	postfix-policyd-spf-perl
4
PORTNAME=	postfix-policyd-spf-perl
5
PORTVERSION=	2.007
5
PORTVERSION=	2.010
6
CATEGORIES=	mail
6
CATEGORIES=	mail
7
MASTER_SITES=	http://www.openspf.org/blobs/
7
MASTER_SITES=	https://launchpadlibrarian.net/107864701/
8
8
9
MAINTAINER=	ports.maintainer@evilphi.com
9
MAINTAINER=	ports.maintainer@evilphi.com
10
COMMENT=	SPF policy service for Postfix written in Perl
10
COMMENT=	SPF policy service for Postfix written in Perl
11
11
12
RUN_DEPENDS=	p5-Mail-SPF>=0:${PORTSDIR}/mail/p5-Mail-SPF \
12
RUN_DEPENDS=	p5-Mail-SPF>=2.006:${PORTSDIR}/mail/p5-Mail-SPF \
13
		p5-NetAddr-IP>=4:${PORTSDIR}/net-mgmt/p5-NetAddr-IP \
13
		p5-NetAddr-IP>=4:${PORTSDIR}/net-mgmt/p5-NetAddr-IP \
14
		p5-Sys-Hostname-Long>=0:${PORTSDIR}/sysutils/p5-Sys-Hostname-Long \
14
		p5-version>=0:${PORTSDIR}/devel/p5-version
15
		p5-version>=0:${PORTSDIR}/devel/p5-version
15
16
16
USES=		perl5
17
USES=		perl5 shebangfix
17
USE_PERL5=	run
18
USE_PERL5=	run
18
NO_BUILD=	yes
19
NO_BUILD=	yes
19
20
20
PLIST_FILES=	sbin/postfix-policyd-spf-perl
21
PLIST_FILES=	libexec/postfix-policyd-spf-perl
22
SHEBANG_FILES=	postfix-policyd-spf-perl
21
23
22
SUB_LIST=	PREFIX=${PREFIX}
24
SUB_LIST=	PREFIX=${PREFIX}
23
SUB_FILES=	pkg-message
25
SUB_FILES=	pkg-message
Lines 42-47 Link Here
42
	@${REINPLACE_CMD} -e '${REINPLACE}' ${WRKSRC}/postfix-policyd-spf-perl
44
	@${REINPLACE_CMD} -e '${REINPLACE}' ${WRKSRC}/postfix-policyd-spf-perl
43
45
44
do-install:
46
do-install:
45
	@${INSTALL_SCRIPT} ${WRKSRC}/postfix-policyd-spf-perl ${STAGEDIR}${PREFIX}/sbin
47
	@${INSTALL_SCRIPT} ${WRKSRC}/postfix-policyd-spf-perl ${STAGEDIR}${PREFIX}/libexec
46
48
47
.include <bsd.port.mk>
49
.include <bsd.port.mk>
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (postfix-policyd-spf-perl-2.007.tar.gz) = 5137b03d9b6009684fe432451acb25db5513d7e9f69ccd218279d81d152a8cd3
1
SHA256 (postfix-policyd-spf-perl-2.010.tar.gz) = aafc09ed52e946572acf804b3c79caf464a1062df5710c2f2426276442f04042
2
SIZE (postfix-policyd-spf-perl-2.007.tar.gz) = 13460
2
SIZE (postfix-policyd-spf-perl-2.010.tar.gz) = 13981
(-)files/patch-postfix-policyd-spf-perl (-14 / +15 lines)
Lines 1-25 Link Here
1
--- postfix-policyd-spf-perl.orig	2008-07-25 19:35:01.000000000 -0700
1
--- ./postfix-policyd-spf-perl.orig	2012-06-18 03:50:55.000000000 +0000
2
+++ postfix-policyd-spf-perl	2009-01-25 16:46:38.991336330 -0800
2
+++ ./postfix-policyd-spf-perl	2014-05-08 00:22:28.000000000 +0000
3
@@ -263,14 +263,14 @@
3
@@ -284,7 +284,7 @@
4
             info => "%s: SPF %s: HELO/EHLO: %s",
4
                 $attr->{helo_name} || '<UNKNOWN>'
5
             $attr->{queue_id}, $helo_result, $attr->{helo_name}
5
             );
6
         );
6
         };
7
-        return "550 $helo_authority_exp";
7
-        return "550 $helo_authority_exp";
8
+        return "%%SPF_FAIL%% $helo_authority_exp";
8
+        return "%%SPF_FAIL%% $helo_authority_exp";
9
     }
9
     }
10
     elsif ($helo_result->is_code('temperror')) {
10
     elsif ($helo_result->is_code('temperror')) {
11
         syslog(
11
         if ($VERBOSE) {
12
             info => "%s: SPF %s: HELO/EHLO: %s",
12
@@ -294,7 +294,7 @@
13
             $attr->{queue_id}, $helo_result, $attr->{helo_name}
13
                 $attr->{helo_name} || '<UNKNOWN>'
14
         );
14
             );
15
         };
15
-        return "DEFER_IF_PERMIT SPF-Result=$helo_local_exp";
16
-        return "DEFER_IF_PERMIT SPF-Result=$helo_local_exp";
16
+        return "%%SPF_TEMPERROR%% SPF-Result=$helo_local_exp";
17
+        return "%%SPF_TEMPERROR%% SPF-Result=$helo_local_exp";
17
     }
18
     }
18
     elsif ($attr->{sender} eq '') {
19
     elsif ($attr->{sender} eq '') {
19
         syslog(
20
         if ($VERBOSE) {
20
@@ -334,10 +334,10 @@
21
@@ -368,10 +368,10 @@
21
         $attr->{queue_id}, $mfrom_result, $attr->{sender}
22
         );
22
     );
23
     };
23
     if ($mfrom_result->is_code('fail')) {
24
     if ($mfrom_result->is_code('fail')) {
24
-        return "550 $mfrom_authority_exp";
25
-        return "550 $mfrom_authority_exp";
25
+        return "%%SPF_FAIL%% $mfrom_authority_exp";
26
+        return "%%SPF_FAIL%% $mfrom_authority_exp";
(-)files/pkg-message.in (-1 / +1 lines)
Lines 3-9 Link Here
3
1. Add the following to /etc/postfix/master.cf:
3
1. Add the following to /etc/postfix/master.cf:
4
4
5
	spf-policy unix -       n       n       -       0       spawn
5
	spf-policy unix -       n       n       -       0       spawn
6
	  user=nobody argv=%%PREFIX%%/sbin/postfix-policyd-spf-perl
6
	  user=nobody argv=%%PREFIX%%/libexec/postfix-policyd-spf-perl
7
7
8
   The user nobody is fine if you have no other daemons running as nobody.
8
   The user nobody is fine if you have no other daemons running as nobody.
9
   Otherwise, you should use a dedicated user and group for this policy
9
   Otherwise, you should use a dedicated user and group for this policy
(-)pkg-descr (-1 / +1 lines)
Lines 1-4 Link Here
1
postfix-policyd-spf-perl is an RFC-4408-compliant SPF policy service for
1
postfix-policyd-spf-perl is an RFC-4408-compliant SPF policy service for
2
postfix written in Perl.
2
postfix written in Perl.
3
3
4
WWW: http://www.openspf.org/Software/
4
WWW: https://launchpad.net/postfix-policyd-spf-perl/

Return to bug 189458