summaryrefslogtreecommitdiff
path: root/mail/spamassassin/patches/patch-aa
diff options
context:
space:
mode:
authorheinz <heinz>2003-02-02 19:38:39 +0000
committerheinz <heinz>2003-02-02 19:38:39 +0000
commit54bca5a9e9a979f418a4321f380fd6814fce34a2 (patch)
treed763ff1acf775e8daf277491dfefaea5aef351e3 /mail/spamassassin/patches/patch-aa
parent0d8e3a697eb30706c06ff07c40710aaa0d4c6338 (diff)
downloadpkgsrc-54bca5a9e9a979f418a4321f380fd6814fce34a2.tar.gz
Maintenance update to 2.44
Parts of patch-ag and patch-ah as well as complete patch-aa could be removed again, they are now included in SA 2.44 (see below). #### official release announcement ############### This is a bug-fix release, which fixes the following bugs: - Backport fix for Bug 1306: Possible buffer overflow in libspamc when running in BSMTP mode (patch 1.15 -> 1.18) - Backport workaround from Bug 526: Failed sanity check because of clobbered STDOUT (patch 1.147 -> 1.148) - Backport fix for Debian Bug 160206: Insufficient buffer in libspamc (patch 1.8 -> 1.9) - Backport fix for warnings in sed_path (patch 1.141 -> 1.142) - Backport fix for Bug 1127: Existing lowercase x-spam-status header kills SpamAssassin (patch 1.40 -> 1.41) - localized %ENV to fix problem where Razor2 erases the PATH so DCC and pyzor don't work, etc. Note that this is *not* 2.50, which offers Bayesian filtering etc. These bugs are already fixed in the 2.50 CVS tree, but that is not yet ready for release. This is a stable maintainance release only.
Diffstat (limited to 'mail/spamassassin/patches/patch-aa')
-rw-r--r--mail/spamassassin/patches/patch-aa13
1 files changed, 0 insertions, 13 deletions
diff --git a/mail/spamassassin/patches/patch-aa b/mail/spamassassin/patches/patch-aa
deleted file mode 100644
index 0361317f725..00000000000
--- a/mail/spamassassin/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.4 2003/01/29 17:34:29 tron Exp $
-
---- spamd/libspamc.c.orig 2002-10-15 17:22:49.000000000 +0200
-+++ spamd/libspamc.c 2003-01-29 18:32:03.000000000 +0100
-@@ -309,7 +309,7 @@
- case MESSAGE_BSMTP:
- total=full_write(fd, m->pre, m->pre_len);
- for(i=0; i<m->out_len; ){
-- for(j=0; i<m->out_len && j<sizeof(buffer)/sizeof(*buffer)-1; ){
-+ for(j=0; i<m->out_len && j<sizeof(buffer)/sizeof(*buffer)-2; ){
- if(i+1<m->out_len && m->out[i]=='\n' && m->out[i+1]=='.'){
- buffer[j++]=m->out[i++];
- buffer[j++]=m->out[i++];