summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2011-03-22 09:37:27 +0000
committertaca <taca@pkgsrc.org>2011-03-22 09:37:27 +0000
commit25245f3b51bebaaa32acc0aabac9bd6a9b9a73a6 (patch)
tree865a4a324235d6878114b2c7dc76188e55e20fd4 /mail
parentb6b0db34bc8fc94e0c6c7dccf185723accacdada (diff)
downloadpkgsrc-25245f3b51bebaaa32acc0aabac9bd6a9b9a73a6.tar.gz
Update mail/postfix pacakge to 2.8.2.
Postfix stable release 2.8.2 is available. This release has minor fixes that are already in the experimental (2.9) release. - Bugfix: postscreen DNSBL scoring error. When a client disconnected and then reconnected before all DNSBL results for the earlier session arrived, DNSBL results for the earlier session would be added to the score for the later session. This is very unlikely to have affected any legitimate mail. - Workaround: the SMTP client did not support mail to [ipv6:ipv6addr]. - Portability: FreeBSD closefrom() was back-ported to FreeBSD 7, breaking FreeBSD 7.x support retroactively. - Portability: the SUN compiler had trouble with a pointer expression of the form ``("text1" "text2") + constant'' so we don't try to be so clever.
Diffstat (limited to 'mail')
-rw-r--r--mail/postfix/Makefile4
-rw-r--r--mail/postfix/distinfo10
-rw-r--r--mail/postfix/patches/patch-ag12
3 files changed, 8 insertions, 18 deletions
diff --git a/mail/postfix/Makefile b/mail/postfix/Makefile
index afb04191c7e..f2cc15aff5c 100644
--- a/mail/postfix/Makefile
+++ b/mail/postfix/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.237 2011/02/26 08:58:59 tron Exp $
+# $NetBSD: Makefile,v 1.238 2011/03/22 09:37:27 taca Exp $
-DISTNAME= postfix-2.8.1
+DISTNAME= postfix-2.8.2
CATEGORIES= mail
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/
MASTER_SITES+= http://postfix.it-austria.net/releases/official/
diff --git a/mail/postfix/distinfo b/mail/postfix/distinfo
index e48e590fd3b..db74c628543 100644
--- a/mail/postfix/distinfo
+++ b/mail/postfix/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.133 2011/02/26 08:58:59 tron Exp $
+$NetBSD: distinfo,v 1.134 2011/03/22 09:37:27 taca Exp $
-SHA1 (postfix-2.8.1.tar.gz) = c2b5aa6ed3520fd9298b140a71a09fee8ee40f4d
-RMD160 (postfix-2.8.1.tar.gz) = 21a7a46c2e62d98108271423129589bff30ee248
-Size (postfix-2.8.1.tar.gz) = 3643859 bytes
+SHA1 (postfix-2.8.2.tar.gz) = 224e0b6dd161f4648114de8902124c9dec64aa8c
+RMD160 (postfix-2.8.2.tar.gz) = cc1c7a4cced486fc35ef6d786397b336d00c2e40
+Size (postfix-2.8.2.tar.gz) = 3644570 bytes
SHA1 (patch-aa) = 5b4923402c80957e47b8a4e16c897287b88544bb
-SHA1 (patch-ag) = 53f42aec86af576e1ffc420f1b9a19c988c3fe6c
+SHA1 (patch-ag) = e335304c9126b9b648fc96110bc68e2795b1ae35
SHA1 (patch-ai) = ef3feef8a4fe7781a89f7e087fc5780760b461b1
diff --git a/mail/postfix/patches/patch-ag b/mail/postfix/patches/patch-ag
index 4c620c5745f..5e31725cc0d 100644
--- a/mail/postfix/patches/patch-ag
+++ b/mail/postfix/patches/patch-ag
@@ -1,4 +1,4 @@
-$NetBSD: patch-ag,v 1.30 2010/04/16 15:32:58 taca Exp $
+$NetBSD: patch-ag,v 1.31 2011/03/22 09:37:27 taca Exp $
Only define HAS_DB if it hasn't been defined.
Add support for NetBSD 5.x and DragonFly BSD.
@@ -27,16 +27,6 @@ Handle closefrom() on FreeBSD.
#define HAS_SA_LEN
#define DEF_DB_TYPE "hash"
#if (defined(__NetBSD_Version__) && __NetBSD_Version__ >= 104250000)
-@@ -111,7 +113,8 @@
- #define HAS_DUPLEX_PIPE /* 4.1 breaks with kqueue(2) */
- #endif
-
--#if __FreeBSD_version >= 800107 /* safe; don't believe the experts */
-+#if (__FreeBSD_version >= 702104 && __FreeBSD_version <= 800000) \
-+ || __FreeBSD_version >= 800100
- #define HAS_CLOSEFROM
- #endif
-
@@ -163,9 +166,19 @@
#define HAS_FUTIMES
#endif