summaryrefslogtreecommitdiff
path: root/mail/spamassassin/patches/patch-ax
diff options
context:
space:
mode:
Diffstat (limited to 'mail/spamassassin/patches/patch-ax')
-rw-r--r--mail/spamassassin/patches/patch-ax13
1 files changed, 0 insertions, 13 deletions
diff --git a/mail/spamassassin/patches/patch-ax b/mail/spamassassin/patches/patch-ax
deleted file mode 100644
index b1c0c26c2f9..00000000000
--- a/mail/spamassassin/patches/patch-ax
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ax,v 1.1 2005/11/13 05:08:00 heinz Exp $
-
---- lib/Mail/SpamAssassin/Message.pm.orig Mon Jun 6 03:31:23 2005
-+++ lib/Mail/SpamAssassin/Message.pm
-@@ -324,7 +324,7 @@ sub get_pristine_header {
- my ($self, $hdr) = @_;
-
- return $self->{pristine_headers} unless $hdr;
-- my(@ret) = $self->{pristine_headers} =~ /^(?:$hdr:[ \t]+(.*\n(?:\s+\S.*\n)*))/mig;
-+ my(@ret) = $self->{pristine_headers} =~ /^\Q$hdr\E:[ \t]+(.*?\n(?![ \t]))/smgi;
- if (@ret) {
- return wantarray ? @ret : $ret[-1];
- }