Bug 148707 - [PATCH] mail/postgrey: update to 1.33
Summary: [PATCH] mail/postgrey: update to 1.33
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Wesley Shields
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-07-17 11:10 UTC by Sunpoet Po-Chuan Hsieh
Modified: 2010-08-18 01:00 UTC (History)
1 user (show)

See Also:


Attachments
postgrey-1.33.patch (2.06 KB, patch)
2010-07-17 11:10 UTC, Sunpoet Po-Chuan Hsieh
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Sunpoet Po-Chuan Hsieh 2010-07-17 11:10:02 UTC
- Update to 1.33
- Remove LOCAL/beech as MASTER_SITES (latest version is 1.31)
- Add Greylist header option

Port maintainer (haroldp@internal.org) is cc'd.

Generated with FreeBSD Port Tools 0.99
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2010-07-17 11:10:21 UTC
Maintainer of mail/postgrey,

Please note that PR ports/148707 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
    http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/148707

-- 
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2010-07-17 11:10:23 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 3 Sunpoet Po-Chuan Hsieh 2010-07-17 11:27:05 UTC
Hi,

A backslash is missing to escape semicolon in files/postgrey.in.
The updated patch is attached.
Thanks.

Regards,
Sunpoet

--- postgrey-1.33.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/mail/postgrey/Makefile /usr/ports/sunpoet/postgrey/Makefile
--- /usr/ports/mail/postgrey/Makefile	2010-01-18 14:01:20.000000000 +0800
+++ /usr/ports/sunpoet/postgrey/Makefile	2010-07-17 18:05:29.000000000 +0800
@@ -6,10 +6,10 @@
 #
 
 PORTNAME=	postgrey
-PORTVERSION=	1.32
-PORTREVISION=	1
+PORTVERSION=	1.33
 CATEGORIES=	mail
-MASTER_SITES=	http://postgrey.schweikert.ch/pub/ LOCAL/beech
+MASTER_SITES=	http://postgrey.schweikert.ch/pub/ \
+		http://postgrey.schweikert.ch/pub/old/
 
 MAINTAINER=	haroldp@internal.org
 COMMENT=	Greylisting policy server for Postfix
diff -ruN --exclude=CVS /usr/ports/mail/postgrey/distinfo /usr/ports/sunpoet/postgrey/distinfo
--- /usr/ports/mail/postgrey/distinfo	2008-08-26 05:52:52.000000000 +0800
+++ /usr/ports/sunpoet/postgrey/distinfo	2010-07-17 18:03:29.000000000 +0800
@@ -1,3 +1,3 @@
-MD5 (postgrey-1.32.tar.gz) = 524a4e165bf997996f3bccade394712f
-SHA256 (postgrey-1.32.tar.gz) = b460939018b98763c74f4d3272104adb85f321bcfd9c866daff73e4e061feb24
-SIZE (postgrey-1.32.tar.gz) = 35486
+MD5 (postgrey-1.33.tar.gz) = 334c908bb9d34e9b87790d4b0b6db87e
+SHA256 (postgrey-1.33.tar.gz) = 8417aee37f8a6518580989122240753bc65e99e47db5f52ef1a0bebbd6f82bda
+SIZE (postgrey-1.33.tar.gz) = 36077
diff -ruN --exclude=CVS /usr/ports/mail/postgrey/files/postgrey.in /usr/ports/sunpoet/postgrey/files/postgrey.in
--- /usr/ports/mail/postgrey/files/postgrey.in	2010-03-27 13:56:55.000000000 +0800
+++ /usr/ports/sunpoet/postgrey/files/postgrey.in	2010-07-17 18:19:47.000000000 +0800
@@ -36,9 +36,11 @@
 load_rc_config $name
 
 postgrey_enable=${postgrey_enable:-"NO"}
+postgrey_greylist_header=${postgrey_greylist_header:-"X-Greylist: delayed %t seconds by postgrey-%v at %h\; %d"}
 postgrey_pidfile=${postgrey_pidfile:-"/var/run/postgrey.pid"}
 postgrey_flags=${postgrey_flags:-"--pidfile=${postgrey_pidfile} \
-	--inet=10023 -d --user=%%USER%% --group=%%GROUP%% --dbdir=/var/db/postgrey"}
+	--inet=10023 -d --user=%%USER%% --group=%%GROUP%% --dbdir=/var/db/postgrey \
+	--x-greylist-header=${postgrey_greylist_header}"}
 
 pidfile="${postgrey_pidfile}"
 
--- postgrey-1.33.patch ends here ---
Comment 4 Wesley Shields freebsd_committer freebsd_triage 2010-07-21 20:55:28 UTC
Responsible Changed
From-To: freebsd-ports-bugs->wxs

I'll take it.
Comment 5 Wesley Shields freebsd_committer freebsd_triage 2010-08-18 00:52:45 UTC
State Changed
From-To: feedback->closed

Committed. Thanks!
Comment 6 dfilter service freebsd_committer freebsd_triage 2010-08-18 00:52:48 UTC
wxs         2010-08-17 23:52:34 UTC

  FreeBSD ports repository

  Modified files:
    mail/postgrey        Makefile distinfo 
    mail/postgrey/files  postgrey.in 
  Log:
  Update to 1.33 and add Greylist header option to RC script.
  
  PR:             ports/148707
  Submitted by:   Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
  Reviewed by:    maintainer timeout (1 month)
  
  Revision  Changes    Path
  1.23      +3 -3      ports/mail/postgrey/Makefile
  1.14      +3 -3      ports/mail/postgrey/distinfo
  1.5       +4 -2      ports/mail/postgrey/files/postgrey.in
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"