summaryrefslogtreecommitdiff
path: root/mail/spamassassin/patches/patch-ah
diff options
context:
space:
mode:
authorheinz <heinz>2003-11-03 00:56:25 +0000
committerheinz <heinz>2003-11-03 00:56:25 +0000
commite45f22d06e60c45c772997b93937ba62417a95ec (patch)
tree6ba2538c77f9c1d01aa31815d113354ff5ff437b /mail/spamassassin/patches/patch-ah
parentcffece78281f3f66cbd3ed96c6b83b381d5e7aa9 (diff)
downloadpkgsrc-e45f22d06e60c45c772997b93937ba62417a95ec.tar.gz
Update to version 2.60 (fixes PR pkg/23318):
Summary of changes since 2.5x ----------------------------------- - spamd supports UNIX-domain sockets - SSL support for spamc/spamd now usable - improved Bayes text analysis - improved expiration of Bayes-DB - better detection of 'invisible text' and other obfuscation techniques in HTML - new RBL (eg SORBS, SpamCop, Osirusoft dropped) - better handling of RBL timeouts - support for Razor V1 dropped - more flexible header and report rewriting - Perl taint mode enabled by default - bug fixes - new rules
Diffstat (limited to 'mail/spamassassin/patches/patch-ah')
-rw-r--r--mail/spamassassin/patches/patch-ah66
1 files changed, 0 insertions, 66 deletions
diff --git a/mail/spamassassin/patches/patch-ah b/mail/spamassassin/patches/patch-ah
deleted file mode 100644
index 59f81c0708b..00000000000
--- a/mail/spamassassin/patches/patch-ah
+++ /dev/null
@@ -1,66 +0,0 @@
-$NetBSD: patch-ah,v 1.5 2003/09/03 13:08:05 atatat Exp $
-
---- lib/Mail/SpamAssassin/Conf.pm.orig 2003-09-02 21:35:05.000000000 -0400
-+++ lib/Mail/SpamAssassin/Conf.pm
-@@ -115,7 +115,6 @@ sub new {
- "dialups.mail-abuse.org." => "127.0.0.3",
- # For DUL + other codes, we ignore that it's on DUL
- "rbl-plus.mail-abuse.org." => "127.0.0.2",
-- "relays.osirusoft.com." => "127.0.0.3",
- };
-
- $self->{num_check_received} = 2;
-@@ -1950,7 +1949,7 @@ Default:
- { "dialups.mail-abuse.org." => "127.0.0.3",
- # For DUL + other codes, we ignore that it's on DUL
- "rbl-plus.mail-abuse.org." => "127.0.0.2",
-- "relays.osirusoft.com." => "127.0.0.3" };
-+ };
-
- WARNING!!! When passing a reference to a hash, you need to put the whole hash
- in one line for the parser to read it correctly (you can check with
-@@ -1966,8 +1965,8 @@ on the originating hop
- The idea is to not penalize (or penalize less) people who properly relayed
- through their ISP's mail server
-
--Here's an example showing the use of Osirusoft and MAPS DUL, as well as the use
--of check_two_rbl_results to compensate for a match in both RBLs:
-+Here's an example showing the use of MAPS DUL, as well as the use
-+of check_two_rbl_results to compensate for a match in RBLs:
-
- header RCVD_IN_DUL rbleval:check_rbl('dialup', 'dialups.mail-abuse.org.')
- describe RCVD_IN_DUL Received from dialup, see http://www.mail-abuse.org/dul/
-@@ -1977,33 +1976,6 @@ of check_two_rbl_results to compensate f
- describe X_RCVD_IN_DUL_FH Received from first hop dialup, see http://www.mail-abuse.org/dul/
- score X_RCVD_IN_DUL_FH -3
-
-- header RCVD_IN_OSIRUSOFT_COM rbleval:check_rbl('osirusoft', 'relays.osirusoft.com.')
-- describe RCVD_IN_OSIRUSOFT_COM Received via an IP flagged in relays.osirusoft.com
--
-- header X_OSIRU_SPAM_SRC rbleval:check_rbl_results_for('osirusoft', '127.0.0.4')
-- describe X_OSIRU_SPAM_SRC DNSBL: sender is Confirmed Spam Source, penalizing further
-- score X_OSIRU_SPAM_SRC 3.0
--
-- header X_OSIRU_SPAMWARE_SITE rbleval:check_rbl_results_for('osirusoft', '127.0.0.6')
-- describe X_OSIRU_SPAMWARE_SITE DNSBL: sender is a Spamware site or vendor, penalizing further
-- score X_OSIRU_SPAMWARE_SITE 5.0
--
-- header X_OSIRU_DUL_FH rbleval:check_rbl('osirusoft-dul-firsthop', 'relays.osirusoft.com.')
-- describe X_OSIRU_DUL_FH Received from first hop dialup listed in relays.osirusoft.com
-- score X_OSIRU_DUL_FH -1.5
--
-- header Z_FUDGE_DUL_MAPS_OSIRU rblreseval:check_two_rbl_results('osirusoft', "127.0.0.3", 'dialup', "127.0.0.3")
-- describe Z_FUDGE_DUL_MAPS_OSIRU Do not double penalize for MAPS DUL and Osirusoft DUL
-- score Z_FUDGE_DUL_MAPS_OSIRU -2
--
-- header Z_FUDGE_RELAY_OSIRU rblreseval:check_two_rbl_results('osirusoft', "127.0.0.2", 'relay', "127.0.0.2")
-- describe Z_FUDGE_RELAY_OSIRU Do not double penalize for being an open relay on Osirusoft and another DNSBL
-- score Z_FUDGE_RELAY_OSIRU -2
--
-- header Z_FUDGE_DUL_OSIRU_FH rblreseval:check_two_rbl_results('osirusoft-dul-firsthop', "127.0.0.3", 'dialup-firsthop', "127.0.0.3")
-- describe Z_FUDGE_DUL_OSIRU_FH Do not double compensate for MAPS DUL and Osirusoft DUL first hop dialup
-- score Z_FUDGE_DUL_OSIRU_FH 1.5
--
- =cut
-
- if (/^dialup_codes\s+(.*)$/) {