summaryrefslogtreecommitdiff
path: root/mail/postfix/patches
diff options
context:
space:
mode:
authoritojun <itojun@pkgsrc.org>2001-04-02 10:48:58 +0000
committeritojun <itojun@pkgsrc.org>2001-04-02 10:48:58 +0000
commitb45a74e171a66e58cf896441b212d6bfcd2ca616 (patch)
tree450466028e8391a2b43ce331e4e94ec23ba37ca9 /mail/postfix/patches
parentf8d07c2f7ff1a54b45ef3a69f688bd41a91c40f0 (diff)
downloadpkgsrc-b45a74e171a66e58cf896441b212d6bfcd2ca616.tar.gz
upgrade to 20010228-pl01.
20010313 Bugfix: the RFC 822 untokenizer quoted newlines inside comments. File: global/tok822_parse.c. 20010316 Cleanup: removed an extraneous warning when a queue file write error happened. 20010321 Workaround: LMTP connection caching never worked for destinations starting with unix: or inet:. File: lmtp/lmtp_connect.c. 20010322 Portability: Solaris <2.6 does not have srandom() and random() in libc. File: util/rand_sleep.c. It does not have to be cryptographically strong. Bugfix: the fast ETRN flush server could not handle [ipaddr] or domain names with one-character hostname part. This fix changes the destination to logfile name mapping, so that you need to populate the new files with "sendmail -q". The old files go away automatically. File: flush/flush.c. 20010327 Speed up mailq (sendmail -bp) display by flushing output after each file. File: showq/showq.c. Portability: missing string.h includes, %p wants (void *), Lamont Jones, HP. 20010328 Bugfix: swapped logic caused cleanup to stall when the queue file size exceeded the file size limit by less than one the VSTREAM buffer size, so that the "file too big" was detected after flushing the last queue file record. File: cleanup/cleanup.c. 20010329 Portability: workaround for missing prototype problem in dict_ldap.c. This module should move to the global directory, because it depends on Postfix main.cf parameter information.
Diffstat (limited to 'mail/postfix/patches')
-rw-r--r--mail/postfix/patches/patch-ba23
1 files changed, 0 insertions, 23 deletions
diff --git a/mail/postfix/patches/patch-ba b/mail/postfix/patches/patch-ba
deleted file mode 100644
index bad461123d4..00000000000
--- a/mail/postfix/patches/patch-ba
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD: patch-ba,v 1.5 2001/03/20 13:02:05 hubertf Exp $
-
-fix sprious \ in mail header.
-
-Message-Id: <20010313174719.35692BC070@spike.porcupine.org>
-Subject: PATCH (spurious \ in mail header)
-From: wietse@porcupine.org (Wietse Venema)
-To: Postfix users <postfix-users@postfix.org>
-Date: Tue, 13 Mar 2001 12:47:19 -0500 (EST)
-
-Index: src/global/tok822_parse.c
-diff -u -r1.1 -r1.2
---- src/global/tok822_parse.c 2001/03/13 17:47:13 1.1
-+++ src/global/tok822_parse.c 2001/03/16 11:57:53 1.2
-@@ -252,7 +252,7 @@
- VSTRING_ADDCH(vp, ')');
- break;
- case TOK822_COMMENT_TEXT:
-- tok822_copy_quoted(vp, vstring_str(tp->vstr), "()\\\r\n");
-+ tok822_copy_quoted(vp, vstring_str(tp->vstr), "()\\");
- break;
- case TOK822_QSTRING:
- VSTRING_ADDCH(vp, '"');