diff options
author | wxs <wxs@FreeBSD.org> | 2010-08-18 07:52:34 +0800 |
---|---|---|
committer | wxs <wxs@FreeBSD.org> | 2010-08-18 07:52:34 +0800 |
commit | a8be0598a5075f3a495adc0acb053759c7049988 (patch) | |
tree | 1b2c7a983cdbb361f123253d3c04c0daf5a8145a /mail/postgrey | |
parent | fe90baba2cf9d70d5dd18cd61d8e0cdc31edd575 (diff) | |
download | freebsd-ports-gnome-a8be0598a5075f3a495adc0acb053759c7049988.tar.gz freebsd-ports-gnome-a8be0598a5075f3a495adc0acb053759c7049988.tar.zst freebsd-ports-gnome-a8be0598a5075f3a495adc0acb053759c7049988.zip |
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)
Diffstat (limited to 'mail/postgrey')
-rw-r--r-- | mail/postgrey/Makefile | 6 | ||||
-rw-r--r-- | mail/postgrey/distinfo | 6 | ||||
-rw-r--r-- | mail/postgrey/files/postgrey.in | 4 |
3 files changed, 9 insertions, 7 deletions
diff --git a/mail/postgrey/Makefile b/mail/postgrey/Makefile index 1cb211fca6d1..5d050ca1026b 100644 --- a/mail/postgrey/Makefile +++ b/mail/postgrey/Makefile @@ -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 --git a/mail/postgrey/distinfo b/mail/postgrey/distinfo index 7ab92ff0830c..ac4e89b978a6 100644 --- a/mail/postgrey/distinfo +++ b/mail/postgrey/distinfo @@ -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 --git a/mail/postgrey/files/postgrey.in b/mail/postgrey/files/postgrey.in index bf8431667bd6..c8b25560a99e 100644 --- a/mail/postgrey/files/postgrey.in +++ b/mail/postgrey/files/postgrey.in @@ -36,9 +36,11 @@ stop_postcmd() 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}" |