diff -Nru spamassassin-3.4.0/build/md5sum.pl spamassassin-3.4.2/build/md5sum.pl --- spamassassin-3.4.0/build/md5sum.pl 2014-02-07 08:36:34.000000000 +0000 +++ spamassassin-3.4.2/build/md5sum.pl 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -#!/usr/bin/perl -use Digest::MD5 qw/md5_hex/; - -$/=undef; - -while(<>) { - print md5_hex($_)," $ARGV\n"; -} diff -Nru spamassassin-3.4.0/build/mkrules spamassassin-3.4.2/build/mkrules --- spamassassin-3.4.0/build/mkrules 2014-02-07 08:36:34.000000000 +0000 +++ spamassassin-3.4.2/build/mkrules 2018-09-14 01:27:52.000000000 +0000 @@ -47,12 +47,11 @@ use lib 'lib'; use Mail::SpamAssassin; -use vars qw( - @opt_srcs $opt_out $opt_sandboxout $opt_manifest - $opt_manifestskip $opt_listpromotable $opt_active - $opt_activeout $default_file_header - $opt_rulemetadata $opt_exit_on_no_src -); +our ( @opt_srcs, $opt_out, $opt_sandboxout, $opt_manifest, + $opt_manifestskip, $opt_listpromotable, $opt_active, + $opt_activeout, $default_file_header, + $opt_rulemetadata, $opt_exit_on_no_src); + GetOptions("src=s" => \@opt_srcs, "out=s", "sandboxout=s", @@ -115,7 +114,7 @@ my $newest_src_mtime = 0; my $newest_out_mtime = 0; -my $default_file_header = join('', ); +$default_file_header = join('', ); compile_utf8ify_function(); foreach my $src (@opt_srcs) { diff -Nru spamassassin-3.4.0/build/parse-rules-for-masses spamassassin-3.4.2/build/parse-rules-for-masses --- spamassassin-3.4.0/build/parse-rules-for-masses 2014-02-07 08:36:34.000000000 +0000 +++ spamassassin-3.4.2/build/parse-rules-for-masses 2018-09-14 01:27:52.000000000 +0000 @@ -36,7 +36,7 @@ use Getopt::Long; use Data::Dumper; -use vars qw(@rulesdirs $outputfile $scoreset $skip_test_rules); +our (@rulesdirs, $outputfile, $scoreset, $skip_test_rules); GetOptions ( "d=s" => \@rulesdirs, "o=s" => \$outputfile, diff -Nru spamassassin-3.4.0/build/preprocessor spamassassin-3.4.2/build/preprocessor --- spamassassin-3.4.0/build/preprocessor 2014-02-07 08:36:34.000000000 +0000 +++ spamassassin-3.4.2/build/preprocessor 2018-09-14 01:27:52.000000000 +0000 @@ -69,7 +69,7 @@ foreach (@ARGV) { if (/^-M([a-z]+)$/) { $modules{$1} = 1; } - elsif (/^-D([A-Z_]+)=(.*)$/) { $defines{$1} = $2; } + elsif (/^-D([A-Z0-9_]+)=(.*)$/) { $defines{$1} = $2; } elsif (/^-D([^=]+)$/) { read_defs($1); } elsif (/^-i(.+)$/) { $infile = $1; } elsif (/^-o(.+)$/) { $outfile = $1; } diff -Nru spamassassin-3.4.0/build/sha1sum.pl spamassassin-3.4.2/build/sha1sum.pl --- spamassassin-3.4.0/build/sha1sum.pl 2014-02-07 08:36:34.000000000 +0000 +++ spamassassin-3.4.2/build/sha1sum.pl 1970-01-01 00:00:00.000000000 +0000 @@ -1,12 +0,0 @@ -#!/usr/bin/perl - -BEGIN { - eval { require Digest::SHA; import Digest::SHA qw(sha1_hex); 1 } - or do { require Digest::SHA1; import Digest::SHA1 qw(sha1_hex) } -} - -$/=undef; - -while(<>) { - print sha1_hex($_)," $ARGV\n"; -} diff -Nru spamassassin-3.4.0/build/sha256sum.pl spamassassin-3.4.2/build/sha256sum.pl --- spamassassin-3.4.0/build/sha256sum.pl 1970-01-01 00:00:00.000000000 +0000 +++ spamassassin-3.4.2/build/sha256sum.pl 2018-09-14 01:27:52.000000000 +0000 @@ -0,0 +1,11 @@ +#!/usr/bin/perl + +BEGIN { + require Digest::SHA; import Digest::SHA qw(sha256_hex sha512_hex); +} + +$/=undef; + +while(<>) { + print sha256_hex($_)," $ARGV\n"; +} diff -Nru spamassassin-3.4.0/build/sha512sum.pl spamassassin-3.4.2/build/sha512sum.pl --- spamassassin-3.4.0/build/sha512sum.pl 1970-01-01 00:00:00.000000000 +0000 +++ spamassassin-3.4.2/build/sha512sum.pl 2018-09-14 01:27:52.000000000 +0000 @@ -0,0 +1,11 @@ +#!/usr/bin/perl + +BEGIN { + require Digest::SHA; import Digest::SHA qw(sha256_hex sha512_hex); +} + +$/=undef; + +while(<>) { + print sha512_hex($_)," $ARGV\n"; +} diff -Nru spamassassin-3.4.0/Changes spamassassin-3.4.2/Changes --- spamassassin-3.4.0/Changes 2014-02-07 08:36:38.000000000 +0000 +++ spamassassin-3.4.2/Changes 2018-09-14 01:27:51.000000000 +0000 @@ -1,8220 +1,1609 @@ ------------------------------------------------------------------------ -r1565570 | kmcgrail | 2014-02-07 08:10:37 +0000 (Fri, 07 Feb 2014) | 1 -line +r1840662 | sidney | 2018-09-12 11:35:41 +0000 (Wed, 12 Sep 2018) | 1 line - Fixing KB + Add Paul Stead as committer ------------------------------------------------------------------------ -r1565566 | kmcgrail | 2014-02-07 07:54:52 +0000 (Fri, 07 Feb 2014) | 1 +r1840385 | kmcgrail | 2018-09-08 21:37:32 +0000 (Sat, 08 Sep 2018) | 1 line - cleanup of emeritus/inactive list, logo credits, prep for 3.40 for -version ------------------------------------------------------------------------- -r1565522 | spamassassin_role | 2014-02-07 03:05:47 +0000 (Fri, 07 Feb -2014) | 1 line - - updated scores for revision 1565117 active rules added since last -mass-check ------------------------------------------------------------------------- -r1565380 | jhardin | 2014-02-06 18:10:53 +0000 (Thu, 06 Feb 2014) | 1 line - - Tuning LOTTO_AGENT FP avoidance and score limit ------------------------------------------------------------------------- -r1565378 | jhardin | 2014-02-06 18:09:18 +0000 (Thu, 06 Feb 2014) | 1 line - - Fixing cross-sandbox dependencies per bug#6999 ------------------------------------------------------------------------- -r1565371 | axb | 2014-02-06 17:35:20 +0000 (Thu, 06 Feb 2014) | 2 lines - - disabled - tflags KHOP_DYNAMIC2 nopublish + more build updates and new rc1 sums for announcement ------------------------------------------------------------------------ -r1565368 | axb | 2014-02-06 17:33:34 +0000 (Thu, 06 Feb 2014) | 1 line +r1840380 | kmcgrail | 2018-09-08 21:08:05 +0000 (Sat, 08 Sep 2018) | 1 +line - disabled nopublish rules + preparing to release 3.4.2-rc1 again with new sa-update ------------------------------------------------------------------------ -r1565311 | axb | 2014-02-06 15:45:56 +0000 (Thu, 06 Feb 2014) | 1 line +r1840377 | kmcgrail | 2018-09-08 20:40:12 +0000 (Sat, 08 Sep 2018) | 1 +line - re-enabled __BUGGED_IMG co J.Harding is using it + Removing sha-1 sig support from sa-update - bug 7614 ------------------------------------------------------------------------ -r1565264 | axb | 2014-02-06 14:17:31 +0000 (Thu, 06 Feb 2014) | 1 line +r1840330 | kmcgrail | 2018-09-08 01:05:14 +0000 (Sat, 08 Sep 2018) | 1 +line - PLEASE KEEP THIS TIDY + changing to 3.3.3 to 3.3.2 ------------------------------------------------------------------------ -r1565231 | axb | 2014-02-06 13:28:48 +0000 (Thu, 06 Feb 2014) | 2 lines +r1840329 | kmcgrail | 2018-09-08 01:03:42 +0000 (Sat, 08 Sep 2018) | 1 +line - disabled - tflags URIBL_META_SURBL_ANY net nopublish + fixing a small typo in the announcement ------------------------------------------------------------------------ -r1565213 | axb | 2014-02-06 12:50:06 +0000 (Thu, 06 Feb 2014) | 2 lines - - disabled ancient bloat -need to speed up masscheckers to handle larger -corpus +r1840233 | kmcgrail | 2018-09-06 16:07:14 +0000 (Thu, 06 Sep 2018) | 1 +line + updating the hash sigs for the announcement ------------------------------------------------------------------------ -r1565199 | axb | 2014-02-06 12:22:11 +0000 (Thu, 06 Feb 2014) | 1 line +r1840230 | kmcgrail | 2018-09-06 15:47:47 +0000 (Thu, 06 Sep 2018) | 1 +line - Disabled expensive, ancient, experimental rules + preparing to release 3.4.2-rc1 ------------------------------------------------------------------------ -r1565159 | axb | 2014-02-06 10:49:47 +0000 (Thu, 06 Feb 2014) | 1 line +r1840219 | kmcgrail | 2018-09-06 13:02:56 +0000 (Thu, 06 Sep 2018) | 1 +line - cleanup + more cleanup of branding and build process ------------------------------------------------------------------------ -r1565095 | axb | 2014-02-06 07:23:15 +0000 (Thu, 06 Feb 2014) | 1 line +r1840213 | kmcgrail | 2018-09-06 12:04:10 +0000 (Thu, 06 Sep 2018) | 1 +line - added __HAS_ORGANIZATION + fix for Util wrap pre Perl 5.14 - bug 7616 ------------------------------------------------------------------------ -r1565063 | spamassassin_role | 2014-02-06 03:15:04 +0000 (Thu, 06 Feb -2014) | 1 line +r1840170 | kmcgrail | 2018-09-05 23:46:20 +0000 (Wed, 05 Sep 2018) | 1 +line - updated scores for revision 1564672 active rules added since last -mass-check + updating the readme and announcement text ------------------------------------------------------------------------ -r1564982 | kmcgrail | 2014-02-05 23:02:07 +0000 (Wed, 05 Feb 2014) | 1 +r1840128 | kmcgrail | 2018-09-05 12:15:57 +0000 (Wed, 05 Sep 2018) | 1 line - missed one bogus version per bug 6422 + sa-update version work - bug 7006 ------------------------------------------------------------------------ -r1564676 | kmcgrail | 2014-02-05 08:53:06 +0000 (Wed, 05 Feb 2014) | 1 +r1840072 | billcole | 2018-09-04 22:27:55 +0000 (Tue, 04 Sep 2018) | 1 line - Tweaks on announcement and build instructions while prepping rc6 + Make leading space/zero for one-digit dates in mbox separator optional +Bug 7445 ------------------------------------------------------------------------ -r1564636 | kmcgrail | 2014-02-05 05:05:04 +0000 (Wed, 05 Feb 2014) | 1 +r1840053 | kmcgrail | 2018-09-04 17:32:36 +0000 (Tue, 04 Sep 2018) | 1 line - preparing to release 3.4.0-rc6 + Fixing the docs bug 7042 ------------------------------------------------------------------------ -r1564626 | kmcgrail | 2014-02-05 04:10:03 +0000 (Wed, 05 Feb 2014) | 1 +r1840050 | billcole | 2018-09-04 16:39:43 +0000 (Tue, 04 Sep 2018) | 1 line - Removed tests for FM_FRM_RN_L_BRACK + document %x token foe Exim-like virtual config dirs ------------------------------------------------------------------------ -r1564613 | kmcgrail | 2014-02-05 03:20:26 +0000 (Wed, 05 Feb 2014) | 1 -line +r1839962 | hege | 2018-09-03 13:21:42 +0000 (Mon, 03 Sep 2018) | 2 lines + + Optimize loop, run hits only once - Fixing CREDITS to include Daniel Lemke and Henrik Krohns ------------------------------------------------------------------------ -r1564612 | spamassassin_role | 2014-02-05 03:07:34 +0000 (Wed, 05 Feb -2014) | 1 line +r1839883 | hege | 2018-09-02 13:50:12 +0000 (Sun, 02 Sep 2018) | 2 lines + + Fix SHA512 verification - updated scores for revision 1564230 active rules added since last -mass-check ------------------------------------------------------------------------ -r1564604 | mmartinec | 2014-02-05 01:33:28 +0000 (Wed, 05 Feb 2014) | 1 +r1839865 | billcole | 2018-09-02 00:44:43 +0000 (Sun, 02 Sep 2018) | 1 line - Bug 6996 #11: spamd to honour --min-children + Add SHA512 support to build/mkupdates/* scripts and sa-update ------------------------------------------------------------------------ -r1564329 | mmartinec | 2014-02-04 15:00:15 +0000 (Tue, 04 Feb 2014) | 1 +r1839854 | kmcgrail | 2018-09-01 21:23:41 +0000 (Sat, 01 Sep 2018) | 1 line - added a missing "use Time::HiRes" to TinyRedis.pm (not a bug, just a -"right thing" to do) + More SHA256/512issues identified ------------------------------------------------------------------------ -r1564256 | axb | 2014-02-04 11:28:30 +0000 (Tue, 04 Feb 2014) | 1 line +r1839851 | kmcgrail | 2018-09-01 21:11:42 +0000 (Sat, 01 Sep 2018) | 1 +line - added util_rb_2tld biz.ua + preparing to release 3.4.2-pre5 ------------------------------------------------------------------------ -r1564194 | kmcgrail | 2014-02-04 04:44:52 +0000 (Tue, 04 Feb 2014) | 1 +r1839848 | kmcgrail | 2018-09-01 21:05:17 +0000 (Sat, 01 Sep 2018) | 1 line - reversal of r1557309 for bayes_store_module_additional conf option + Preparing 3.4.2-pre4 ------------------------------------------------------------------------ -r1564168 | spamassassin_role | 2014-02-04 03:06:04 +0000 (Tue, 04 Feb -2014) | 1 line +r1839835 | kmcgrail | 2018-09-01 18:03:57 +0000 (Sat, 01 Sep 2018) | 1 +line - updated scores for revision 1563802 active rules added since last -mass-check + Minor MANIFEST fix ------------------------------------------------------------------------ -r1564078 | kmcgrail | 2014-02-03 21:45:42 +0000 (Mon, 03 Feb 2014) | 1 +r1839834 | kmcgrail | 2018-09-01 18:01:46 +0000 (Sat, 01 Sep 2018) | 1 line - adding tflag publish per -http://wiki.apache.org/spamassassin/SaUpdateBackend + Streamlining the build process, Updating the build process for new +infrastructure and switching to sha256/512 - bug 7596 ------------------------------------------------------------------------ -r1563762 | spamassassin_role | 2014-02-03 03:00:47 +0000 (Mon, 03 Feb -2014) | 1 line +r1839832 | billcole | 2018-09-01 17:46:01 +0000 (Sat, 01 Sep 2018) | 1 +line - updated scores for revision 1563579 active rules added since last -mass-check + remove pointless and incompatible modifier from recent patch ------------------------------------------------------------------------ -r1563559 | spamassassin_role | 2014-02-02 03:09:12 +0000 (Sun, 02 Feb -2014) | 1 line +r1839826 | kmcgrail | 2018-09-01 14:55:44 +0000 (Sat, 01 Sep 2018) | 1 +line - updated scores for revision 1563382 active rules added since last -mass-check + Cleanup on README file ------------------------------------------------------------------------ -r1563367 | spamassassin_role | 2014-02-01 03:06:58 +0000 (Sat, 01 Feb -2014) | 1 line +r1839824 | kmcgrail | 2018-09-01 14:21:36 +0000 (Sat, 01 Sep 2018) | 1 +line - updated scores for revision 1563086 active rules added since last -mass-check + Placeholder for Upgrade info ------------------------------------------------------------------------ -r1563172 | mmartinec | 2014-01-31 16:54:36 +0000 (Fri, 31 Jan 2014) | 1 +r1839807 | kmcgrail | 2018-09-01 05:39:30 +0000 (Sat, 01 Sep 2018) | 1 line - Bug 6996 - spamd --round-robin conflicts with multiple listen sockets + Preparing to release 3.4.2-pre4 ------------------------------------------------------------------------ -r1563162 | kmcgrail | 2014-01-31 16:22:28 +0000 (Fri, 31 Jan 2014) | 1 +r1839806 | kmcgrail | 2018-09-01 05:37:42 +0000 (Sat, 01 Sep 2018) | 1 line - optimized the gibberish rule + Fixing minor logic issue on HAS_DSA ------------------------------------------------------------------------ -r1563039 | spamassassin_role | 2014-01-31 03:18:11 +0000 (Fri, 31 Jan -2014) | 1 line +r1839797 | billcole | 2018-08-31 23:43:25 +0000 (Fri, 31 Aug 2018) | 1 +line - updated scores for revision 1562725 active rules added since last -mass-check + skip unparseable Cyrus LMTPA over unix socket Received header ------------------------------------------------------------------------ -r1562916 | kmcgrail | 2014-01-30 18:42:29 +0000 (Thu, 30 Jan 2014) | 1 +r1839792 | billcole | 2018-08-31 22:04:32 +0000 (Fri, 31 Aug 2018) | 1 line - Adding html tag gibberish tag rule for testing from Amir Caspi on the -mailing list + Actually implementing use_bayes_rules distinct from use_bayes. Bug #7110 ------------------------------------------------------------------------ -r1562908 | kmcgrail | 2014-01-30 18:04:41 +0000 (Thu, 30 Jan 2014) | 1 +r1839684 | kmcgrail | 2018-08-30 15:26:34 +0000 (Thu, 30 Aug 2018) | 1 line - Small debug enabled in rbl server lookup + Fix warnings on Windows platform in 3.4 - bug 7259 ------------------------------------------------------------------------ -r1562705 | axb | 2014-01-30 07:17:05 +0000 (Thu, 30 Jan 2014) | 1 line +r1839641 | gbechis | 2018-08-30 07:32:41 +0000 (Thu, 30 Aug 2018) | 2 +lines - nailed URIBL_MW_SURBL ------------------------------------------------------------------------- -r1562704 | axb | 2014-01-30 07:16:49 +0000 (Thu, 30 Jan 2014) | 1 line + typo in man page - set fixed score for URIBL_MW_SURBL ------------------------------------------------------------------------ -r1562681 | spamassassin_role | 2014-01-30 03:16:01 +0000 (Thu, 30 Jan -2014) | 1 line +r1839639 | gbechis | 2018-08-30 07:30:54 +0000 (Thu, 30 Aug 2018) | 2 +lines - updated scores for revision 1562377 active rules added since last -mass-check ------------------------------------------------------------------------- -r1562345 | spamassassin_role | 2014-01-29 03:11:17 +0000 (Wed, 29 Jan -2014) | 1 line + Phishing plugin - updated scores for revision 1562007 active rules added since last -mass-check ------------------------------------------------------------------------ -r1561929 | spamassassin_role | 2014-01-28 03:08:10 +0000 (Tue, 28 Jan -2014) | 1 line +r1839638 | gbechis | 2018-08-30 07:27:29 +0000 (Thu, 30 Aug 2018) | 6 +lines - updated scores for revision 1561610 active rules added since last -mass-check ------------------------------------------------------------------------- -r1561584 | spamassassin_role | 2014-01-27 03:05:14 +0000 (Mon, 27 Jan -2014) | 1 line + Add Mail::SpamAssassin::Plugin::Phishing + This phishing plugin finds uris used in phishing campaigns detected by + OpenPhish or PhishTank feeds. - updated scores for revision 1561463 active rules added since last -mass-check ------------------------------------------------------------------------- -r1561436 | spamassassin_role | 2014-01-26 03:11:59 +0000 (Sun, 26 Jan -2014) | 1 line + bz 7564 - updated scores for revision 1561274 active rules added since last -mass-check ------------------------------------------------------------------------ -r1561249 | spamassassin_role | 2014-01-25 03:03:21 +0000 (Sat, 25 Jan -2014) | 1 line +r1839529 | kmcgrail | 2018-08-29 01:29:54 +0000 (Wed, 29 Aug 2018) | 1 +line - updated scores for revision 1560920 active rules added since last -mass-check + Fixing small perlcritic issue ------------------------------------------------------------------------ -r1560916 | axb | 2014-01-24 08:19:12 +0000 (Fri, 24 Jan 2014) | 3 lines - - Jan 24 09:16:42.734 [9302] dbg: config: warning: score set for -non-existent rule FH_HAS_XID +r1839517 | kmcgrail | 2018-08-29 00:27:22 +0000 (Wed, 29 Aug 2018) | 1 +line - removed score + small spelling error ------------------------------------------------------------------------ -r1560894 | spamassassin_role | 2014-01-24 03:12:15 +0000 (Fri, 24 Jan -2014) | 1 line +r1839515 | billcole | 2018-08-28 23:55:29 +0000 (Tue, 28 Aug 2018) | 1 +line - updated scores for revision 1560608 active rules added since last -mass-check + Detect UTF-16 flavor ------------------------------------------------------------------------ -r1560576 | spamassassin_role | 2014-01-23 03:13:05 +0000 (Thu, 23 Jan -2014) | 1 line +r1839514 | billcole | 2018-08-28 23:44:51 +0000 (Tue, 28 Aug 2018) | 1 +line - updated scores for revision 1560283 active rules added since last -mass-check + switch default for parse_dkim_uris ------------------------------------------------------------------------ -r1560289 | axb | 2014-01-22 09:13:23 +0000 (Wed, 22 Jan 2014) | 1 line +r1839511 | billcole | 2018-08-28 23:12:05 +0000 (Tue, 28 Aug 2018) | 1 +line - removed bad & no hits rules + Fixing t/util_wrap.t for new tab=>8 spaces accounting ------------------------------------------------------------------------ -r1560282 | axb | 2014-01-22 08:46:08 +0000 (Wed, 22 Jan 2014) | 1 line +r1839487 | billcole | 2018-08-28 17:16:00 +0000 (Tue, 28 Aug 2018) | 1 +line - Disabled - "no hits at all" ancient rules - Axb 2014-01-22 + Making allowance for tabs in M::SA::Util=>wrap(), tweaking default wrap +width ------------------------------------------------------------------------ -r1560243 | spamassassin_role | 2014-01-22 03:18:39 +0000 (Wed, 22 Jan -2014) | 1 line +r1839410 | gbechis | 2018-08-28 07:45:52 +0000 (Tue, 28 Aug 2018) | 4 +lines - updated scores for revision 1559940 active rules added since last -mass-check ------------------------------------------------------------------------- -r1559968 | axb | 2014-01-21 10:40:11 +0000 (Tue, 21 Jan 2014) | 1 line + Fix indented rules to be rescored + Give a chance to RCVD_IN_MSPIKE rules. + bz #6400 - we need __THREADED for metas (will move to 10_hasbase.cf) ------------------------------------------------------------------------ -r1559962 | axb | 2014-01-21 10:18:48 +0000 (Tue, 21 Jan 2014) | 1 line +r1839409 | gbechis | 2018-08-28 07:35:13 +0000 (Tue, 28 Aug 2018) | 2 +lines - disabled old nopublish rules - seems like pointless masscheck overhead ------------------------------------------------------------------------- -r1559956 | axb | 2014-01-21 10:01:26 +0000 (Tue, 21 Jan 2014) | 1 line + Mention 'report_wrap_width' new option - disabled nopublish rules - seems like pointless masscheck overhead ------------------------------------------------------------------------ -r1559955 | axb | 2014-01-21 09:57:08 +0000 (Tue, 21 Jan 2014) | 1 line +r1839390 | kmcgrail | 2018-08-28 02:48:28 +0000 (Tue, 28 Aug 2018) | 1 +line - disabled "forgotten" RCVD_IN_SPAMCOP net nopublish + Adding more features to WLBLEval - Bug 7354 ------------------------------------------------------------------------ -r1559954 | axb | 2014-01-21 09:36:26 +0000 (Tue, 21 Jan 2014) | 1 line +r1839388 | kmcgrail | 2018-08-28 02:39:26 +0000 (Tue, 28 Aug 2018) | 1 +line - disabled "nopublish" + Adding FromNameSpoof plugin - bug 7606 ------------------------------------------------------------------------ -r1559949 | axb | 2014-01-21 09:04:38 +0000 (Tue, 21 Jan 2014) | 1 line +r1839367 | billcole | 2018-08-27 19:18:16 +0000 (Mon, 27 Aug 2018) | 1 +line - disabled nopublish rules + Adding configurable wrap width for X-Spam-Report header. Bug #6104 ------------------------------------------------------------------------ -r1559948 | axb | 2014-01-21 09:03:21 +0000 (Tue, 21 Jan 2014) | 1 line +r1839294 | gbechis | 2018-08-27 10:41:59 +0000 (Mon, 27 Aug 2018) | 2 +lines - disabled nopublish rules ------------------------------------------------------------------------- -r1559940 | axb | 2014-01-21 08:49:23 +0000 (Tue, 21 Jan 2014) | 2 lines + detect Sympa mailinglists, bz #7523 - removed more fixed scores for 00_FVGT_File001.cf rules - let ruleqa autopromote ------------------------------------------------------------------------ -r1559938 | axb | 2014-01-21 08:32:03 +0000 (Tue, 21 Jan 2014) | 2 lines +r1839260 | kmcgrail | 2018-08-26 21:55:00 +0000 (Sun, 26 Aug 2018) | 1 +line - removed fixed scores for 00_FVGT_File001.cf rules - let ruleqa decide + build_spamc & build_spamd are options for win32 only - bug 7376 ------------------------------------------------------------------------ -r1559932 | axb | 2014-01-21 08:11:56 +0000 (Tue, 21 Jan 2014) | 4 lines +r1839147 | kmcgrail | 2018-08-25 23:31:00 +0000 (Sat, 25 Aug 2018) | 1 +line - removed - score FR_ALMOST_VIAG2 2.299 1.594 2.299 1.531 # n=2 - score FR_CANTSEETEXT 0 # n=0 n=1 n=2 n=3 - let ruleqa decide + Addig tag for LASTEXTERNALIP - Bug 7334 ------------------------------------------------------------------------ -r1559931 | axb | 2014-01-21 08:10:23 +0000 (Tue, 21 Jan 2014) | 4 lines +r1839143 | kmcgrail | 2018-08-25 23:17:51 +0000 (Sat, 25 Aug 2018) | 1 +line - removed - publish FR_ALMOST_VIAG2 - publish FR_CANTSEETEXT - let ruleqa autopromote + allow font names in tickmarks - bug 7312 ------------------------------------------------------------------------ -r1559913 | spamassassin_role | 2014-01-21 03:06:25 +0000 (Tue, 21 Jan -2014) | 1 line +r1839141 | kmcgrail | 2018-08-25 23:11:53 +0000 (Sat, 25 Aug 2018) | 1 +line - updated scores for revision 1559645 active rules added since last -mass-check + changing socket handling for spamd - bug 7274 ------------------------------------------------------------------------ -r1559639 | axb | 2014-01-20 08:06:41 +0000 (Mon, 20 Jan 2014) | 3 lines - - removed fixed scores for rules in 00_FVGT_File001.cf - seems these were assigned before ruleqa autopromoted rules +r1839140 | kmcgrail | 2018-08-25 23:04:42 +0000 (Sat, 25 Aug 2018) | 1 +line + Improving razor2 test ------------------------------------------------------------------------ -r1559622 | spamassassin_role | 2014-01-20 03:22:09 +0000 (Mon, 20 Jan -2014) | 1 line +r1839137 | kmcgrail | 2018-08-25 22:49:01 +0000 (Sat, 25 Aug 2018) | 1 +line - updated scores for revision 1559481 active rules added since last -mass-check + changing make to $Config{make} for sa-compile - bug 7294 ------------------------------------------------------------------------ -r1559593 | kmcgrail | 2014-01-19 22:52:03 +0000 (Sun, 19 Jan 2014) | 1 +r1839132 | kmcgrail | 2018-08-25 22:35:14 +0000 (Sat, 25 Aug 2018) | 1 line - Fixing lang_pl_test rule disable condition + Add references to plugins - bug 7280 ------------------------------------------------------------------------ -r1559456 | spamassassin_role | 2014-01-19 03:16:52 +0000 (Sun, 19 Jan -2014) | 1 line +r1839127 | kmcgrail | 2018-08-25 22:08:33 +0000 (Sat, 25 Aug 2018) | 1 +line - updated scores for revision 1559330 active rules added since last -mass-check + Adding information rule updates and sha1 to announcement ------------------------------------------------------------------------ -r1559446 | jhardin | 2014-01-19 02:16:25 +0000 (Sun, 19 Jan 2014) | 1 line +r1839085 | gbechis | 2018-08-25 17:20:14 +0000 (Sat, 25 Aug 2018) | 2 +lines - Disable Jimdo phishing rule, add WordPress phishing rule ------------------------------------------------------------------------- -r1559431 | jhardin | 2014-01-18 22:15:24 +0000 (Sat, 18 Jan 2014) | 1 line + revert r1826179, fixes bz #7602 - Migrate some subrules from emailed/FVGT sandbox prior to dropping old -rules file entirely ------------------------------------------------------------------------ -r1559309 | spamassassin_role | 2014-01-18 03:10:09 +0000 (Sat, 18 Jan -2014) | 1 line +r1839015 | billcole | 2018-08-25 05:15:19 +0000 (Sat, 25 Aug 2018) | 1 +line - updated scores for revision 1559048 active rules added since last -mass-check + Really skip Devel::SawAmpersand test when it's unneeded ------------------------------------------------------------------------ -r1558999 | spamassassin_role | 2014-01-17 03:06:21 +0000 (Fri, 17 Jan -2014) | 1 line +r1839005 | kmcgrail | 2018-08-25 01:44:30 +0000 (Sat, 25 Aug 2018) | 1 +line - updated scores for revision 1558716 active rules added since last -mass-check + adding a description of why the change exists ------------------------------------------------------------------------ -r1558958 | kmcgrail | 2014-01-16 23:15:24 +0000 (Thu, 16 Jan 2014) | 1 +r1839002 | kmcgrail | 2018-08-25 01:22:03 +0000 (Sat, 25 Aug 2018) | 1 line - set score ceiling for FH_RANDOM_SURE rule of 0.5 + Adding more cases for user_prefs.template to be found - bug 7298 ------------------------------------------------------------------------ -r1558682 | spamassassin_role | 2014-01-16 03:12:08 +0000 (Thu, 16 Jan -2014) | 1 line +r1838999 | kmcgrail | 2018-08-25 00:47:02 +0000 (Sat, 25 Aug 2018) | 1 +line - updated scores for revision 1558319 active rules added since last -mass-check + Small fix for new6 bug - reported by ToddR, cPanel ------------------------------------------------------------------------ -r1558475 | jhardin | 2014-01-15 17:23:56 +0000 (Wed, 15 Jan 2014) | 1 line +r1838992 | kmcgrail | 2018-08-24 23:58:13 +0000 (Fri, 24 Aug 2018) | 1 +line - add URI_WPADMIN rule for evaluation, possible phishing sign + fixing Use of uninitialized value $file in File::Spec->catpath bug 7272 ------------------------------------------------------------------------ -r1558457 | hstern | 2014-01-15 16:43:28 +0000 (Wed, 15 Jan 2014) | 2 lines +r1838856 | gbechis | 2018-08-24 13:39:02 +0000 (Fri, 24 Aug 2018) | 2 +lines - sandbox/hstern/*: Removed my old garbage + typo in optional module ------------------------------------------------------------------------ -r1558271 | spamassassin_role | 2014-01-15 03:09:46 +0000 (Wed, 15 Jan -2014) | 1 line +r1838854 | gbechis | 2018-08-24 13:29:27 +0000 (Fri, 24 Aug 2018) | 2 +lines - updated scores for revision 1557976 active rules added since last -mass-check ------------------------------------------------------------------------- -r1558190 | kmcgrail | 2014-01-14 21:00:22 +0000 (Tue, 14 Jan 2014) | 1 -line + Mention Mail::SpamAssassin::Plugin::ResourceLimit - cleaned up PHW to PCCC references in Credits ------------------------------------------------------------------------ -r1558095 | kmcgrail | 2014-01-14 16:17:40 +0000 (Tue, 14 Jan 2014) | 1 +r1838779 | kmcgrail | 2018-08-24 01:53:14 +0000 (Fri, 24 Aug 2018) | 1 line - disabled lang_pl_tests.t by default - see bug 6992 ------------------------------------------------------------------------- -r1557912 | spamassassin_role | 2014-01-14 03:15:40 +0000 (Tue, 14 Jan -2014) | 1 line - - updated scores for revision 1557663 active rules added since last -mass-check + fixing an opt not freed. bug 7509 ------------------------------------------------------------------------ -r1557645 | spamassassin_role | 2014-01-13 03:14:55 +0000 (Mon, 13 Jan -2014) | 1 line +r1838777 | kmcgrail | 2018-08-24 01:45:57 +0000 (Fri, 24 Aug 2018) | 1 +line - updated scores for revision 1557499 active rules added since last -mass-check + Reverting previous comment of return - bug 7191 comment 18 ------------------------------------------------------------------------ -r1557490 | spamassassin_role | 2014-01-12 03:04:58 +0000 (Sun, 12 Jan -2014) | 1 line +r1838775 | kmcgrail | 2018-08-24 01:35:46 +0000 (Fri, 24 Aug 2018) | 1 +line - updated scores for revision 1557327 active rules added since last -mass-check + logic switch on spamd to fix the unlimited timeout option. bug 6748 ------------------------------------------------------------------------ -r1557425 | kmcgrail | 2014-01-11 17:19:21 +0000 (Sat, 11 Jan 2014) | 1 +r1838771 | kmcgrail | 2018-08-24 00:45:27 +0000 (Fri, 24 Aug 2018) | 1 line - updated proposed txt with the sha1/md5sum of the rc5 build and more -tweaks to build README + Adding ResourceLimits.pm plugin and dependency test for BSD::Resources ------------------------------------------------------------------------ -r1557421 | kmcgrail | 2014-01-11 17:12:00 +0000 (Sat, 11 Jan 2014) | 1 +r1838645 | billcole | 2018-08-22 15:24:51 +0000 (Wed, 22 Aug 2018) | 1 line - preparing to release 3.4.0 rc5 + Restoring required -D flag so that the patterns & antipatterns can +actually work ------------------------------------------------------------------------ -r1557419 | kmcgrail | 2014-01-11 16:43:51 +0000 (Sat, 11 Jan 2014) | 1 +r1838604 | kmcgrail | 2018-08-22 04:41:03 +0000 (Wed, 22 Aug 2018) | 1 line - Fixed MANIFEST for TinyRedis.pm move to Util + Minor version check robustness bug 7095 ------------------------------------------------------------------------ -r1557418 | kmcgrail | 2014-01-11 16:33:32 +0000 (Sat, 11 Jan 2014) | 1 +r1838601 | kmcgrail | 2018-08-22 04:15:31 +0000 (Wed, 22 Aug 2018) | 1 line - Add documentation for Redis Bayes backend to Redis.pm, moved TinyRedis -to Util.pm, updated example config for Redis and changed all TinyRedis -references to Util::TinyRedis + Adding info about rules being in root to manifest ------------------------------------------------------------------------ -r1557372 | mmartinec | 2014-01-11 12:40:47 +0000 (Sat, 11 Jan 2014) | 1 +r1838598 | kmcgrail | 2018-08-22 04:06:35 +0000 (Wed, 22 Aug 2018) | 1 line - added a missing "use Mail::SpamAssassin::BayesStore::TinyRedis" + Commenting a change accidentally committed for Bug 7095 ------------------------------------------------------------------------ -r1557316 | kmcgrail | 2014-01-11 06:04:33 +0000 (Sat, 11 Jan 2014) | 1 +r1838597 | kmcgrail | 2018-08-22 03:56:32 +0000 (Wed, 22 Aug 2018) | 1 line - a few more small tweaks to the build/README + rules, rulesrc and t.rules are only in trunk now ------------------------------------------------------------------------ -r1557315 | kmcgrail | 2014-01-11 05:55:31 +0000 (Sat, 11 Jan 2014) | 1 +r1838596 | kmcgrail | 2018-08-22 03:55:49 +0000 (Wed, 22 Aug 2018) | 1 line - updated proposed txt with the sha1/md5sum of the rc4 build + prepping for 3.4.2 release ------------------------------------------------------------------------ -r1557312 | kmcgrail | 2014-01-11 05:46:37 +0000 (Sat, 11 Jan 2014) | 1 +r1838594 | kmcgrail | 2018-08-22 02:27:45 +0000 (Wed, 22 Aug 2018) | 1 line - preparing to release 3.4.0-rc4 + Removing 3 experimental/devel plugins ------------------------------------------------------------------------ -r1557311 | kmcgrail | 2014-01-11 04:46:45 +0000 (Sat, 11 Jan 2014) | 1 +r1838591 | kmcgrail | 2018-08-21 23:53:30 +0000 (Tue, 21 Aug 2018) | 1 line - Adding TinyRedis.pm + Remove pretty command line in ps so pkill can work ------------------------------------------------------------------------ -r1557310 | kmcgrail | 2014-01-11 04:46:11 +0000 (Sat, 11 Jan 2014) | 1 +r1838588 | kmcgrail | 2018-08-21 23:22:01 +0000 (Tue, 21 Aug 2018) | 1 line - Added autolearn_force debugging and logging - bug 5503 + Reminder not to leave -D ------------------------------------------------------------------------ -r1557309 | kmcgrail | 2014-01-11 04:45:35 +0000 (Sat, 11 Jan 2014) | 1 +r1838586 | billcole | 2018-08-21 21:34:03 +0000 (Tue, 21 Aug 2018) | 1 line - Split Redis.pm into two files including TinyRedis.pm, added -configuration option to load a second module bug 6990 - and documented -autolearn_force better for bug 5503 as well as documented the multiple -and maxhits tflags better + tighten up patterns in t/dnsbl.t ------------------------------------------------------------------------ -r1557303 | spamassassin_role | 2014-01-11 03:01:00 +0000 (Sat, 11 Jan -2014) | 1 line +r1838522 | gbechis | 2018-08-21 07:51:57 +0000 (Tue, 21 Aug 2018) | 2 +lines + + Describe some of the code developed and to be released in 3.4.2 - updated scores for revision 1557056 active rules added since last -mass-check ------------------------------------------------------------------------ -r1557256 | kmcgrail | 2014-01-10 21:00:38 +0000 (Fri, 10 Jan 2014) | 1 +r1838511 | billcole | 2018-08-20 23:48:03 +0000 (Mon, 20 Aug 2018) | 1 line - renamed Redis Package to match filename to pass xt test - Bug 6990 + Check for rules before using them in test ------------------------------------------------------------------------ -r1557018 | spamassassin_role | 2014-01-10 03:08:28 +0000 (Fri, 10 Jan -2014) | 1 line +r1838509 | kmcgrail | 2018-08-20 23:32:03 +0000 (Mon, 20 Aug 2018) | 1 +line - updated scores for revision 1556762 active rules added since last -mass-check + Updated committer and pmc list ------------------------------------------------------------------------ -r1556959 | kmcgrail | 2014-01-09 21:39:16 +0000 (Thu, 09 Jan 2014) | 1 +r1838499 | billcole | 2018-08-20 21:45:37 +0000 (Mon, 20 Aug 2018) | 1 line - Changed Credits for Duncan + backport trunk sa-compile and t/sa_compile.t fixes ------------------------------------------------------------------------ -r1556764 | axb | 2014-01-09 09:27:41 +0000 (Thu, 09 Jan 2014) | 1 line +r1838491 | kmcgrail | 2018-08-20 20:52:44 +0000 (Mon, 20 Aug 2018) | 1 +line - added AXB_XM_MYECLNT + rewrite of razor2 test and a sample email for testing ------------------------------------------------------------------------ -r1556705 | spamassassin_role | 2014-01-09 03:04:44 +0000 (Thu, 09 Jan -2014) | 1 line +r1838489 | kmcgrail | 2018-08-20 20:52:11 +0000 (Mon, 20 Aug 2018) | 1 +line - updated scores for revision 1556465 active rules added since last -mass-check + rewrite of razor2 test and a sample email for testing ------------------------------------------------------------------------ -r1556598 | jhardin | 2014-01-08 18:24:07 +0000 (Wed, 08 Jan 2014) | 1 line +r1838485 | kmcgrail | 2018-08-20 20:07:49 +0000 (Mon, 20 Aug 2018) | 1 +line - tune CN_B2B_SPAMMER + removing prototype on bgread for PerlCritic ------------------------------------------------------------------------ -r1556457 | axb | 2014-01-08 07:34:47 +0000 (Wed, 08 Jan 2014) | 1 line +r1838443 | kmcgrail | 2018-08-20 17:39:25 +0000 (Mon, 20 Aug 2018) | 1 +line - removed util_rb_2tld firm.in - already in RB + moved rules and rules-extra to trunk-only for 3.4 and continue +streamlining build process ------------------------------------------------------------------------ -r1556452 | axb | 2014-01-08 07:19:14 +0000 (Wed, 08 Jan 2014) | 1 line +r1838429 | kmcgrail | 2018-08-20 14:20:05 +0000 (Mon, 20 Aug 2018) | 1 +line - added util_rb_2tld firm.in + framework for 3.4.2 announcement ------------------------------------------------------------------------ -r1556431 | spamassassin_role | 2014-01-08 03:12:29 +0000 (Wed, 08 Jan -2014) | 1 line +r1838390 | kmcgrail | 2018-08-19 16:14:03 +0000 (Sun, 19 Aug 2018) | 1 +line - updated scores for revision 1556147 active rules added since last -mass-check + Fixing the MANIFEST ------------------------------------------------------------------------ -r1556355 | kmcgrail | 2014-01-07 21:01:28 +0000 (Tue, 07 Jan 2014) | 1 +r1838387 | kmcgrail | 2018-08-19 16:13:01 +0000 (Sun, 19 Aug 2018) | 1 line - moved Duncan to previous committers + Bug 7591 not using this faster untaint ------------------------------------------------------------------------ -r1556113 | spamassassin_role | 2014-01-07 03:06:46 +0000 (Tue, 07 Jan -2014) | 1 line +r1838374 | gbechis | 2018-08-19 10:10:16 +0000 (Sun, 19 Aug 2018) | 2 +lines - updated scores for revision 1555697 active rules added since last -mass-check ------------------------------------------------------------------------- -r1555649 | spamassassin_role | 2014-01-06 02:59:50 +0000 (Mon, 06 Jan -2014) | 1 line + refactor some "require" code - updated scores for revision 1555471 active rules added since last -mass-check ------------------------------------------------------------------------ -r1555450 | spamassassin_role | 2014-01-05 03:08:27 +0000 (Sun, 05 Jan -2014) | 1 line +r1838365 | gbechis | 2018-08-19 08:54:59 +0000 (Sun, 19 Aug 2018) | 2 +lines - updated scores for revision 1555333 active rules added since last -mass-check ------------------------------------------------------------------------- -r1555311 | spamassassin_role | 2014-01-04 03:00:01 +0000 (Sat, 04 Jan -2014) | 1 line + skip tests if GeoIP is installed but there are no databases available - updated scores for revision 1555032 active rules added since last -mass-check ------------------------------------------------------------------------ -r1555003 | spamassassin_role | 2014-01-03 03:01:31 +0000 (Fri, 03 Jan -2014) | 1 line +r1838364 | gbechis | 2018-08-19 08:52:11 +0000 (Sun, 19 Aug 2018) | 2 +lines - updated scores for revision 1554768 active rules added since last -mass-check ------------------------------------------------------------------------- -r1554725 | spamassassin_role | 2014-01-02 03:00:52 +0000 (Thu, 02 Jan -2014) | 1 line + better detection of GeoIP installed modules - updated scores for revision 1554602 active rules added since last -mass-check ------------------------------------------------------------------------ -r1554697 | duncf | 2014-01-01 23:16:48 +0000 (Wed, 01 Jan 2014) | 1 line +r1837877 | gbechis | 2018-08-11 18:33:18 +0000 (Sat, 11 Aug 2018) | 2 +lines - Move me to "inactive committers". ------------------------------------------------------------------------- -r1554598 | spamassassin_role | 2014-01-01 02:58:34 +0000 (Wed, 01 Jan -2014) | 1 line + typo - updated scores for revision 1554386 active rules added since last -mass-check ------------------------------------------------------------------------ -r1554362 | spamassassin_role | 2013-12-31 03:00:29 +0000 (Tue, 31 Dec -2013) | 1 line +r1837876 | gbechis | 2018-08-11 18:23:51 +0000 (Sat, 11 Aug 2018) | 3 +lines - updated scores for revision 1554166 active rules added since last -mass-check ------------------------------------------------------------------------- -r1554308 | jhardin | 2013-12-30 20:17:16 +0000 (Mon, 30 Dec 2013) | 1 line + close file descriptors when they are no more needed + probably only partial fix for #7587 - bug#6988: __HAS_MIMEOLE overlaps __MIMEOLE_MS, may hit non-MSFT MUA, -don't use __HAS_MIMEOLE in MSFT-only message rules ------------------------------------------------------------------------ -r1554125 | spamassassin_role | 2013-12-30 03:02:08 +0000 (Mon, 30 Dec -2013) | 1 line +r1837466 | gbechis | 2018-08-05 13:39:41 +0000 (Sun, 05 Aug 2018) | 4 +lines - updated scores for revision 1554003 active rules added since last -mass-check ------------------------------------------------------------------------- -r1553988 | spamassassin_role | 2013-12-29 03:03:46 +0000 (Sun, 29 Dec -2013) | 1 line + Starting from 04/01/2018 GeoLite Legacy databases have been +discontinued. + Add optional support to new Maxmind database type (GeoIP2). + fixes bz #7529 - updated scores for revision 1553799 active rules added since last -mass-check ------------------------------------------------------------------------ -r1553783 | spamassassin_role | 2013-12-28 02:59:18 +0000 (Sat, 28 Dec -2013) | 1 line +r1837465 | gbechis | 2018-08-05 13:38:31 +0000 (Sun, 05 Aug 2018) | 8 +lines - updated scores for revision 1553646 active rules added since last -mass-check ------------------------------------------------------------------------- -r1553615 | spamassassin_role | 2013-12-27 03:01:44 +0000 (Fri, 27 Dec -2013) | 1 line + Starting from 04/01/2018 GeoLite Legacy databases have been +discontinued. + Add optional support to new Maxmind database type (GeoIP2). + In addiction to that add support also to IP::Country::DB_File database; + IP::Country::DB_File database is created from official +Ripe/Arin/Afrinic/... + data, it's faster than IP::Country::Fast on updating a database and it +supports ipv6. - updated scores for revision 1553460 active rules added since last -mass-check ------------------------------------------------------------------------- -r1553440 | spamassassin_role | 2013-12-26 03:00:10 +0000 (Thu, 26 Dec -2013) | 1 line + fixes bz #7529 - updated scores for revision 1553361 active rules added since last -mass-check ------------------------------------------------------------------------ -r1553348 | spamassassin_role | 2013-12-25 03:03:40 +0000 (Wed, 25 Dec -2013) | 1 line +r1836883 | gbechis | 2018-07-28 09:38:39 +0000 (Sat, 28 Jul 2018) | 3 +lines - updated scores for revision 1553256 active rules added since last -mass-check ------------------------------------------------------------------------- -r1553242 | spamassassin_role | 2013-12-24 03:04:49 +0000 (Tue, 24 Dec -2013) | 1 line + Add possibility to match multiple rules + for a single uri, bz #7595 - updated scores for revision 1553083 active rules added since last -mass-check ------------------------------------------------------------------------ -r1553063 | spamassassin_role | 2013-12-23 03:11:25 +0000 (Mon, 23 Dec -2013) | 1 line +r1836855 | gbechis | 2018-07-27 18:03:13 +0000 (Fri, 27 Jul 2018) | 2 +lines - updated scores for revision 1552973 active rules added since last -mass-check ------------------------------------------------------------------------- -r1552962 | spamassassin_role | 2013-12-22 03:15:55 +0000 (Sun, 22 Dec -2013) | 1 line + improve tests - updated scores for revision 1552888 active rules added since last -mass-check ------------------------------------------------------------------------ -r1552870 | spamassassin_role | 2013-12-21 03:12:02 +0000 (Sat, 21 Dec -2013) | 1 line +r1836516 | gbechis | 2018-07-23 21:23:37 +0000 (Mon, 23 Jul 2018) | 2 +lines - updated scores for revision 1552541 active rules added since last -mass-check ------------------------------------------------------------------------- -r1552484 | spamassassin_role | 2013-12-20 03:02:57 +0000 (Fri, 20 Dec -2013) | 1 line + Add Mail::SpamAssassin::Plugin::URILocalBL regression tests - updated scores for revision 1552250 active rules added since last -mass-check ------------------------------------------------------------------------ -r1552216 | spamassassin_role | 2013-12-19 03:12:12 +0000 (Thu, 19 Dec -2013) | 1 line +r1836275 | gbechis | 2018-07-19 14:19:48 +0000 (Thu, 19 Jul 2018) | 2 +lines - updated scores for revision 1551881 active rules added since last -mass-check ------------------------------------------------------------------------- -r1551815 | spamassassin_role | 2013-12-18 03:05:44 +0000 (Wed, 18 Dec -2013) | 1 line + Mail::SpamAssassin::Plugin::RelayCountry regression tests - updated scores for revision 1551487 active rules added since last -mass-check ------------------------------------------------------------------------ -r1551451 | spamassassin_role | 2013-12-17 02:56:08 +0000 (Tue, 17 Dec -2013) | 1 line +r1835030 | gbechis | 2018-07-03 22:20:19 +0000 (Tue, 03 Jul 2018) | 2 +lines - updated scores for revision 1551131 active rules added since last -mass-check ------------------------------------------------------------------------- -r1551106 | spamassassin_role | 2013-12-16 02:57:07 +0000 (Mon, 16 Dec -2013) | 1 line + make it work even if SA is not installed - updated scores for revision 1551006 active rules added since last -mass-check ------------------------------------------------------------------------ -r1550995 | spamassassin_role | 2013-12-15 02:58:43 +0000 (Sun, 15 Dec -2013) | 1 line +r1834725 | gbechis | 2018-06-30 07:01:43 +0000 (Sat, 30 Jun 2018) | 2 +lines - updated scores for revision 1550902 active rules added since last -mass-check ------------------------------------------------------------------------- -r1550872 | spamassassin_role | 2013-12-14 03:01:33 +0000 (Sat, 14 Dec -2013) | 1 line + typo in man page - updated scores for revision 1550663 active rules added since last -mass-check ------------------------------------------------------------------------ -r1550622 | spamassassin_role | 2013-12-13 02:54:59 +0000 (Fri, 13 Dec -2013) | 1 line +r1834723 | gbechis | 2018-06-30 06:37:15 +0000 (Sat, 30 Jun 2018) | 3 +lines - updated scores for revision 1550373 active rules added since last -mass-check ------------------------------------------------------------------------- -r1550343 | spamassassin_role | 2013-12-12 03:56:55 +0000 (Thu, 12 Dec -2013) | 1 line + correct syntax for GRANT with PostgreSQL + bz 7281 - updated scores for revision 1550073 active rules added since last -mass-check ------------------------------------------------------------------------ -r1550036 | spamassassin_role | 2013-12-11 02:57:18 +0000 (Wed, 11 Dec -2013) | 1 line +r1834722 | gbechis | 2018-06-30 06:12:21 +0000 (Sat, 30 Jun 2018) | 5 +lines - updated scores for revision 1549785 active rules added since last -mass-check ------------------------------------------------------------------------- -r1549751 | spamassassin_role | 2013-12-10 03:04:21 +0000 (Tue, 10 Dec -2013) | 1 line + remove an extra blank line put on the MIME-parts + array. That way the resultant email analized + by SA was a bit different from the original one. + bz 6708 - updated scores for revision 1549514 active rules added since last -mass-check ------------------------------------------------------------------------ -r1549373 | spamassassin_role | 2013-12-09 02:59:24 +0000 (Mon, 09 Dec -2013) | 1 line +r1834452 | billcole | 2018-06-26 17:37:23 +0000 (Tue, 26 Jun 2018) | 1 +line - updated scores for revision 1549009 active rules added since last -mass-check + Test for bug 7591 ------------------------------------------------------------------------ -r1549047 | jhardin | 2013-12-08 15:59:23 +0000 (Sun, 08 Dec 2013) | 1 line +r1834327 | billcole | 2018-06-25 13:34:44 +0000 (Mon, 25 Jun 2018) | 1 +line - GA score limit apparently not working for FILL_THIS_FORM_LONG, broken by -#ifplugin? Set manual score. + REALLY revert whitewash fix of t/idn_dots.t ------------------------------------------------------------------------ -r1548980 | spamassassin_role | 2013-12-08 03:00:00 +0000 (Sun, 08 Dec -2013) | 1 line +r1834325 | billcole | 2018-06-25 13:30:17 +0000 (Mon, 25 Jun 2018) | 1 +line - updated scores for revision 1548817 active rules added since last -mass-check + Revert whitewash fix of t/idn_dots.t ------------------------------------------------------------------------ -r1548788 | spamassassin_role | 2013-12-07 02:55:57 +0000 (Sat, 07 Dec -2013) | 1 line +r1834218 | billcole | 2018-06-23 17:21:42 +0000 (Sat, 23 Jun 2018) | 1 +line - updated scores for revision 1548435 active rules added since last -mass-check + add 'use utf8' for older Perl ------------------------------------------------------------------------ -r1548375 | spamassassin_role | 2013-12-06 02:54:18 +0000 (Fri, 06 Dec -2013) | 1 line +r1834151 | kmcgrail | 2018-06-22 18:09:19 +0000 (Fri, 22 Jun 2018) | 1 +line - updated scores for revision 1548039 active rules added since last -mass-check + Working on idn_dots.t test failures for RC4 ------------------------------------------------------------------------ -r1547998 | spamassassin_role | 2013-12-05 02:51:28 +0000 (Thu, 05 Dec -2013) | 1 line +r1833929 | gbechis | 2018-06-20 17:16:33 +0000 (Wed, 20 Jun 2018) | 3 +lines - updated scores for revision 1547729 active rules added since last -mass-check ------------------------------------------------------------------------- -r1547863 | jhardin | 2013-12-04 18:01:58 +0000 (Wed, 04 Dec 2013) | 1 line + silence a warning if GeoIP v6 database is not installed + but a v6 address is on relay headers - Tweak BODY_SINGLE_WORD and FILL_THIS_FORM_LONG ------------------------------------------------------------------------ -r1547695 | spamassassin_role | 2013-12-04 02:54:27 +0000 (Wed, 04 Dec -2013) | 1 line +r1833660 | gbechis | 2018-06-17 09:41:02 +0000 (Sun, 17 Jun 2018) | 11 +lines - updated scores for revision 1547315 active rules added since last -mass-check ------------------------------------------------------------------------- -r1547264 | spamassassin_role | 2013-12-03 02:52:15 +0000 (Tue, 03 Dec -2013) | 1 line + partial fix for bz 7529 + starting from 04/01/2018, Geolite legacy databases has been + discontinued and they will be no more updates. + Add a "country_db_type" option that will let the user choose + between GeoIP and IP::Country::Fast databases. + By default GeoIP is enabled and there is still a fallback + on IP::Country::Fast as in previuos implementation. - updated scores for revision 1546929 active rules added since last -mass-check ------------------------------------------------------------------------- -r1546879 | spamassassin_role | 2013-12-02 02:52:17 +0000 (Mon, 02 Dec -2013) | 1 line + IP::Country::Fast has no ipv6 support, so a better api + should be adopted sooner or later. - updated scores for revision 1546791 active rules added since last -mass-check ------------------------------------------------------------------------ -r1546775 | spamassassin_role | 2013-12-01 02:48:18 +0000 (Sun, 01 Dec -2013) | 1 line +r1833617 | billcole | 2018-06-15 17:33:15 +0000 (Fri, 15 Jun 2018) | 1 +line - updated scores for revision 1546700 active rules added since last -mass-check + Reverting prematurely-committed changes ------------------------------------------------------------------------ -r1546681 | spamassassin_role | 2013-11-30 02:50:07 +0000 (Sat, 30 Nov -2013) | 1 line +r1833615 | billcole | 2018-06-15 17:23:05 +0000 (Fri, 15 Jun 2018) | 1 +line - updated scores for revision 1546520 active rules added since last -mass-check + Corrected link to Pyzor documentation site, replacing OTHER dead SF link. ------------------------------------------------------------------------ -r1546494 | spamassassin_role | 2013-11-29 02:46:19 +0000 (Fri, 29 Nov -2013) | 1 line +r1832678 | gbechis | 2018-06-01 11:15:23 +0000 (Fri, 01 Jun 2018) | 2 +lines - updated scores for revision 1546311 active rules added since last -mass-check ------------------------------------------------------------------------- -r1546259 | spamassassin_role | 2013-11-28 02:51:37 +0000 (Thu, 28 Nov -2013) | 1 line + fix custom headers length, fix another fp via Google Groups - updated scores for revision 1545965 active rules added since last -mass-check ------------------------------------------------------------------------ -r1545914 | spamassassin_role | 2013-11-27 02:49:03 +0000 (Wed, 27 Nov -2013) | 1 line +r1831955 | gbechis | 2018-05-21 06:24:55 +0000 (Mon, 21 May 2018) | 2 +lines - updated scores for revision 1545569 active rules added since last -mass-check ------------------------------------------------------------------------- -r1545516 | spamassassin_role | 2013-11-26 02:48:01 +0000 (Tue, 26 Nov -2013) | 1 line + more generic regexp to match ipv6 - updated scores for revision 1545174 active rules added since last -mass-check ------------------------------------------------------------------------ -r1545138 | spamassassin_role | 2013-11-25 02:46:10 +0000 (Mon, 25 Nov -2013) | 1 line +r1831837 | gbechis | 2018-05-18 09:04:10 +0000 (Fri, 18 May 2018) | 2 +lines - updated scores for revision 1544945 active rules added since last -mass-check ------------------------------------------------------------------------- -r1544903 | spamassassin_role | 2013-11-24 02:47:10 +0000 (Sun, 24 Nov -2013) | 1 line + Unbreak FORGED_GMAIL_RCVD - updated scores for revision 1544761 active rules added since last -mass-check ------------------------------------------------------------------------ -r1544738 | spamassassin_role | 2013-11-23 02:48:06 +0000 (Sat, 23 Nov -2013) | 1 line +r1831826 | gbechis | 2018-05-18 07:13:02 +0000 (Fri, 18 May 2018) | 2 +lines - updated scores for revision 1544436 active rules added since last -mass-check ------------------------------------------------------------------------- -r1544397 | spamassassin_role | 2013-11-22 02:48:28 +0000 (Fri, 22 Nov -2013) | 1 line + Fix another fp on FORGED_GMAIL_RCVD rule - updated scores for revision 1544065 active rules added since last -mass-check ------------------------------------------------------------------------ -r1544010 | spamassassin_role | 2013-11-21 02:47:50 +0000 (Thu, 21 Nov -2013) | 1 line +r1831443 | gbechis | 2018-05-11 19:44:30 +0000 (Fri, 11 May 2018) | 2 +lines - updated scores for revision 1543736 active rules added since last -mass-check ------------------------------------------------------------------------- -r1543698 | spamassassin_role | 2013-11-20 02:51:07 +0000 (Wed, 20 Nov -2013) | 1 line + fix fp for FORGED_GMAIL_RCVD rule - updated scores for revision 1543347 active rules added since last -mass-check ------------------------------------------------------------------------ -r1543295 | spamassassin_role | 2013-11-19 02:49:20 +0000 (Tue, 19 Nov -2013) | 1 line +r1831329 | billcole | 2018-05-10 12:08:55 +0000 (Thu, 10 May 2018) | 1 +line - updated scores for revision 1542949 active rules added since last -mass-check + revert r1823175 ------------------------------------------------------------------------ -r1542882 | spamassassin_role | 2013-11-18 02:50:04 +0000 (Mon, 18 Nov -2013) | 1 line +r1831273 | billcole | 2018-05-09 17:37:07 +0000 (Wed, 09 May 2018) | 1 +line - updated scores for revision 1542661 active rules added since last -mass-check + Improve spamd PID detection with a fixed pidfile ------------------------------------------------------------------------ -r1542636 | spamassassin_role | 2013-11-17 02:53:21 +0000 (Sun, 17 Nov -2013) | 1 line +r1831272 | billcole | 2018-05-09 17:35:07 +0000 (Wed, 09 May 2018) | 1 +line - updated scores for revision 1542483 active rules added since last -mass-check + Decouple mass-check from "base" perl ------------------------------------------------------------------------ -r1542453 | spamassassin_role | 2013-11-16 02:48:13 +0000 (Sat, 16 Nov -2013) | 1 line +r1831073 | gbechis | 2018-05-07 06:37:50 +0000 (Mon, 07 May 2018) | 3 +lines - updated scores for revision 1542202 active rules added since last -mass-check ------------------------------------------------------------------------- -r1542160 | spamassassin_role | 2013-11-15 02:48:03 +0000 (Fri, 15 Nov -2013) | 1 line + Enforce a C locale when logging to stder + bz #7305 - updated scores for revision 1541849 active rules added since last -mass-check ------------------------------------------------------------------------ -r1541789 | spamassassin_role | 2013-11-14 02:48:57 +0000 (Thu, 14 Nov -2013) | 1 line +r1829671 | gbechis | 2018-04-20 17:45:03 +0000 (Fri, 20 Apr 2018) | 2 +lines - updated scores for revision 1541424 active rules added since last -mass-check ------------------------------------------------------------------------- -r1541479 | smf | 2013-11-13 11:41:58 +0000 (Wed, 13 Nov 2013) | 1 line + Test spamc also with --option=value case - FP avoidance ------------------------------------------------------------------------ -r1541365 | spamassassin_role | 2013-11-13 02:48:26 +0000 (Wed, 13 Nov -2013) | 1 line +r1829628 | gbechis | 2018-04-20 06:48:21 +0000 (Fri, 20 Apr 2018) | 3 +lines - updated scores for revision 1540972 active rules added since last -mass-check ------------------------------------------------------------------------- -r1540990 | axb | 2013-11-12 10:04:35 +0000 (Tue, 12 Nov 2013) | 1 line + too much free(3) will kill --reporttype=option handling + problem spotted by Reio Remma, thanks - piggy tweak ------------------------------------------------------------------------ -r1540928 | spamassassin_role | 2013-11-12 02:50:07 +0000 (Tue, 12 Nov -2013) | 1 line +r1829033 | gbechis | 2018-04-13 06:45:35 +0000 (Fri, 13 Apr 2018) | 5 +lines + + Add an option to score uris per continent. + Possible continent codes are: + af, as, eu, na, oc, sa for Africa, Asia, Europe, North America, + Oceania and South America. - updated scores for revision 1540636 active rules added since last -mass-check ------------------------------------------------------------------------ -r1540791 | mmartinec | 2013-11-11 17:58:55 +0000 (Mon, 11 Nov 2013) | 1 +r1828218 | kmcgrail | 2018-04-03 11:28:11 +0000 (Tue, 03 Apr 2018) | 1 line - Adjusted docs regarding EDNS0 dns option to refer to RFC 6891 instead of -RFC 2671bis draft, refine text, reduce conservative default from 1240 to -1220 bytes + Adding Manifest items fo3 3.42 ------------------------------------------------------------------------ -r1540588 | spamassassin_role | 2013-11-11 02:52:21 +0000 (Mon, 11 Nov -2013) | 1 line +r1826916 | billcole | 2018-03-16 03:15:19 +0000 (Fri, 16 Mar 2018) | 1 +line - updated scores for revision 1540453 active rules added since last -mass-check + added optional support for SHA256 in addition to or instead of SHA1 +validation ------------------------------------------------------------------------ -r1540435 | spamassassin_role | 2013-11-10 02:44:02 +0000 (Sun, 10 Nov -2013) | 1 line +r1826822 | gbechis | 2018-03-15 14:27:09 +0000 (Thu, 15 Mar 2018) | 2 +lines - updated scores for revision 1540279 active rules added since last -mass-check ------------------------------------------------------------------------- -r1540246 | spamassassin_role | 2013-11-09 02:47:57 +0000 (Sat, 09 Nov -2013) | 1 line + fix for perl older than 5.24 - updated scores for revision 1539950 active rules added since last -mass-check ------------------------------------------------------------------------ -r1540110 | jhardin | 2013-11-08 16:35:48 +0000 (Fri, 08 Nov 2013) | 1 line +r1826771 | gbechis | 2018-03-15 07:33:00 +0000 (Thu, 15 Mar 2018) | 4 +lines - FROM_OFFERS: defer to nightly GA rescorer per bug 6580 ------------------------------------------------------------------------- -r1539514 | spamassassin_role | 2013-11-07 02:45:51 +0000 (Thu, 07 Nov -2013) | 1 line + If there are rules present in score but not in .cf files a warning is +printed, + shut up the warning. + bz 7535 - updated scores for revision 1539273 active rules added since last -mass-check ------------------------------------------------------------------------ -r1539217 | spamassassin_role | 2013-11-06 02:45:54 +0000 (Wed, 06 Nov -2013) | 1 line +r1826742 | gbechis | 2018-03-14 17:36:30 +0000 (Wed, 14 Mar 2018) | 3 +lines - updated scores for revision 1538906 active rules added since last -mass-check ------------------------------------------------------------------------- -r1538858 | spamassassin_role | 2013-11-05 02:47:00 +0000 (Tue, 05 Nov -2013) | 1 line + detect more http[s] url mismatches + bz 6977 - updated scores for revision 1538529 active rules added since last -mass-check ------------------------------------------------------------------------ -r1538498 | spamassassin_role | 2013-11-04 02:47:25 +0000 (Mon, 04 Nov -2013) | 1 line +r1826740 | gbechis | 2018-03-14 17:26:02 +0000 (Wed, 14 Mar 2018) | 2 +lines - updated scores for revision 1538327 active rules added since last -mass-check ------------------------------------------------------------------------- -r1538310 | spamassassin_role | 2013-11-03 02:56:00 +0000 (Sun, 03 Nov -2013) | 1 line + fix utf8 mode - updated scores for revision 1538154 active rules added since last -mass-check ------------------------------------------------------------------------ -r1538132 | spamassassin_role | 2013-11-02 02:45:53 +0000 (Sat, 02 Nov -2013) | 1 line +r1826582 | billcole | 2018-03-12 17:49:59 +0000 (Mon, 12 Mar 2018) | 1 +line - updated scores for revision 1537852 active rules added since last -mass-check + Update documentation of 'eval' rule method source, sanity-check method +calls. Fixes Bug #7558 ------------------------------------------------------------------------ -r1537808 | spamassassin_role | 2013-11-01 02:50:17 +0000 (Fri, 01 Nov -2013) | 1 line +r1826356 | billcole | 2018-03-09 16:02:43 +0000 (Fri, 09 Mar 2018) | 1 +line - updated scores for revision 1537405 active rules added since last -mass-check + Partial fix for bug 7558 ------------------------------------------------------------------------ -r1537471 | axb | 2013-10-31 12:44:57 +0000 (Thu, 31 Oct 2013) | 1 line +r1826202 | gbechis | 2018-03-08 10:48:04 +0000 (Thu, 08 Mar 2018) | 3 +lines - added AXB_X_ORIG_OMNIMS ------------------------------------------------------------------------- -r1537367 | spamassassin_role | 2013-10-31 02:45:12 +0000 (Thu, 31 Oct -2013) | 1 line + add homedir parameter in dccproc call + RedHat bz 1532139 - updated scores for revision 1537009 active rules added since last -mass-check ------------------------------------------------------------------------ -r1537303 | axb | 2013-10-30 21:02:34 +0000 (Wed, 30 Oct 2013) | 1 line +r1826187 | gbechis | 2018-03-08 08:17:53 +0000 (Thu, 08 Mar 2018) | 3 +lines - added util_rb_2tld com.de ------------------------------------------------------------------------- -r1537189 | mmartinec | 2013-10-30 17:24:05 +0000 (Wed, 30 Oct 2013) | 1 -line + fix utf8 decoding in some corner cases + bz 7520 - Bug 6983: Uninitialized value in lc in t/dnsbl_subtests - perl bug, -fixed in 5.8.9 ------------------------------------------------------------------------ -r1536956 | spamassassin_role | 2013-10-30 02:48:58 +0000 (Wed, 30 Oct -2013) | 1 line +r1826179 | billcole | 2018-03-08 06:41:57 +0000 (Thu, 08 Mar 2018) | 1 +line - updated scores for revision 1536612 active rules added since last -mass-check + Fix for Bug #7557 ------------------------------------------------------------------------ -r1536864 | mmartinec | 2013-10-29 19:44:28 +0000 (Tue, 29 Oct 2013) | 1 +r1826177 | billcole | 2018-03-08 05:33:13 +0000 (Thu, 08 Mar 2018) | 1 line - Bug 6984: r1531991 breaks perl.req script + Fix for bug #7556 ------------------------------------------------------------------------ -r1536582 | spamassassin_role | 2013-10-29 02:46:58 +0000 (Tue, 29 Oct -2013) | 1 line +r1825725 | gbechis | 2018-03-02 13:57:33 +0000 (Fri, 02 Mar 2018) | 2 +lines - updated scores for revision 1536284 active rules added since last -mass-check ------------------------------------------------------------------------- -r1536408 | axb | 2013-10-28 16:58:22 +0000 (Mon, 28 Oct 2013) | 1 line + Add HashBL (Email Blocklist (EBL), http://msbl.org/ebl.html) plugin, bz +#7548 - tflags AXB_X_ORIG_OMNIMS nopublish ------------------------------------------------------------------------ -r1536236 | spamassassin_role | 2013-10-28 02:50:15 +0000 (Mon, 28 Oct -2013) | 1 line +r1825185 | gbechis | 2018-02-24 00:37:46 +0000 (Sat, 24 Feb 2018) | 4 +lines - updated scores for revision 1536066 active rules added since last -mass-check ------------------------------------------------------------------------- -r1536046 | spamassassin_role | 2013-10-27 02:46:33 +0000 (Sun, 27 Oct -2013) | 1 line + As per rfc 5322 the time zone is a required field, + so a date without time zone should be considered as invalid + bz #6894 - updated scores for revision 1535946 active rules added since last -mass-check ------------------------------------------------------------------------ -r1535990 | kmcgrail | 2013-10-26 13:33:00 +0000 (Sat, 26 Oct 2013) | 1 -line +r1825177 | gbechis | 2018-02-23 22:50:32 +0000 (Fri, 23 Feb 2018) | 3 +lines - A few small rule description updates ------------------------------------------------------------------------- -r1535910 | jhardin | 2013-10-26 02:00:02 +0000 (Sat, 26 Oct 2013) | 1 line + document when --mbox or --mbx parameters are needed + bz #6857 - Add jimdo.com phishing webform rule ------------------------------------------------------------------------ -r1534966 | axb | 2013-10-23 09:40:11 +0000 (Wed, 23 Oct 2013) | 1 line +r1825175 | gbechis | 2018-02-23 22:44:45 +0000 (Fri, 23 Feb 2018) | 4 +lines - fixed typo ------------------------------------------------------------------------- -r1533992 | jhardin | 2013-10-20 21:27:18 +0000 (Sun, 20 Oct 2013) | 1 line + In OpenBSD /usr/sbin/sysctl is a symlink to /sbin/sysctl + fix path, no functional change + bz #7545 - More FP avoidance ------------------------------------------------------------------------ -r1533681 | spamassassin_role | 2013-10-19 02:55:22 +0000 (Sat, 19 Oct -2013) | 1 line +r1825157 | gbechis | 2018-02-23 18:25:25 +0000 (Fri, 23 Feb 2018) | 5 +lines - updated scores for revision 1533363 active rules added since last -mass-check ------------------------------------------------------------------------- -r1533678 | khopesh | 2013-10-19 02:18:58 +0000 (Sat, 19 Oct 2013) | 1 line + Change a couple of die calls into warnings, + this way pyzor throws a python error, + all other async lookups are not aborted. + bz #7026 - lots of new freemail domains ------------------------------------------------------------------------ -r1533672 | jhardin | 2013-10-19 00:51:26 +0000 (Sat, 19 Oct 2013) | 1 line +r1825154 | gbechis | 2018-02-23 18:17:29 +0000 (Fri, 23 Feb 2018) | 3 +lines - Standardize minimal-body rule names, add BODY_SINGLE_WORD ------------------------------------------------------------------------- -r1533492 | axb | 2013-10-18 15:15:24 +0000 (Fri, 18 Oct 2013) | 3 lines + check for freemail for all emails in a Reply-To header + bz #6664 - removed "publish FB_CIALIS_LEO3" - low S/O - FP prone - let autopromotion decide ------------------------------------------------------------------------ -r1533481 | axb | 2013-10-18 15:05:24 +0000 (Fri, 18 Oct 2013) | 4 lines +r1825032 | gbechis | 2018-02-22 08:20:37 +0000 (Thu, 22 Feb 2018) | 3 +lines - removed forced score for ancient FB_CIALIS_LEO3 - was way too high (3.1) - see ruleqa for SO info - autopromotion can take care of it. - Seee list thread *False positive in FB_CIALIS_LEO3 rule" ------------------------------------------------------------------------- -r1533352 | axb | 2013-10-18 07:57:48 +0000 (Fri, 18 Oct 2013) | 1 line + Check if $socket is defined and print error accordingly + bz 7380 - added util_rb_2tld in.net ------------------------------------------------------------------------ -r1533317 | spamassassin_role | 2013-10-18 02:55:07 +0000 (Fri, 18 Oct -2013) | 1 line +r1825018 | billcole | 2018-02-21 23:46:08 +0000 (Wed, 21 Feb 2018) | 1 +line - updated scores for revision 1533008 active rules added since last -mass-check + Group switching code for bugs #7554 and #7555 ------------------------------------------------------------------------ -r1533234 | jhardin | 2013-10-17 19:57:48 +0000 (Thu, 17 Oct 2013) | 1 line +r1824931 | gbechis | 2018-02-21 07:33:02 +0000 (Wed, 21 Feb 2018) | 2 +lines - minimal-body rules should not hit on S/MIME messages (bug#6979) ------------------------------------------------------------------------- -r1533093 | axb | 2013-10-17 14:48:14 +0000 (Thu, 17 Oct 2013) | 2 lines + Add an example of a rule that matches an ASN, bz 6929 - changed URIBL_SBL description - Note: changes in rule name may break metas - leave as is. ------------------------------------------------------------------------ -r1532955 | spamassassin_role | 2013-10-17 02:57:28 +0000 (Thu, 17 Oct -2013) | 1 line +r1824688 | gbechis | 2018-02-18 18:35:40 +0000 (Sun, 18 Feb 2018) | 2 +lines - updated scores for revision 1532689 active rules added since last -mass-check ------------------------------------------------------------------------- -r1532709 | axb | 2013-10-16 10:34:24 +0000 (Wed, 16 Oct 2013) | 1 line + fix all pod errors spotted in bz 7168 and many more - added AXB_X_ORIG_OMNIMS (Microsoft's outbound 419 spew engines) ------------------------------------------------------------------------ -r1532635 | spamassassin_role | 2013-10-16 02:53:02 +0000 (Wed, 16 Oct -2013) | 1 line +r1824577 | gbechis | 2018-02-17 09:47:43 +0000 (Sat, 17 Feb 2018) | 2 +lines - updated scores for revision 1532248 active rules added since last -mass-check ------------------------------------------------------------------------- -r1532171 | spamassassin_role | 2013-10-15 02:53:04 +0000 (Tue, 15 Oct -2013) | 1 line + Fix some regression tests on OpenBSD, bz 7499 - updated scores for revision 1531815 active rules added since last -mass-check ------------------------------------------------------------------------ -r1532100 | axb | 2013-10-14 21:12:33 +0000 (Mon, 14 Oct 2013) | 4 lines - - added +r1823276 | kmcgrail | 2018-02-06 06:05:37 +0000 (Tue, 06 Feb 2018) | 1 +line - jpn.com - yolasite.com + Bug 7418 - sa-update change to handle cross platform newline better ------------------------------------------------------------------------ -r1532010 | jhardin | 2013-10-14 18:12:43 +0000 (Mon, 14 Oct 2013) | 1 line +r1823274 | kmcgrail | 2018-02-06 05:10:42 +0000 (Tue, 06 Feb 2018) | 1 +line - tweak UNSUBSCRIBE_ES + Bug 7496 - speed up startup code ------------------------------------------------------------------------ -r1532009 | jhardin | 2013-10-14 18:11:55 +0000 (Mon, 14 Oct 2013) | 1 line +r1823205 | kmcgrail | 2018-02-05 16:13:03 +0000 (Mon, 05 Feb 2018) | 1 +line - FSL_FROM_INFO_DOM performing poorly as scored rule, converted to subrule -and relocated + Clean-up of unmaintained tools and files that are only maintained in +trunk - see trunk-only/ ------------------------------------------------------------------------ -r1531995 | mmartinec | 2013-10-14 17:43:19 +0000 (Mon, 14 Oct 2013) | 1 +r1823175 | kmcgrail | 2018-02-05 14:10:22 +0000 (Mon, 05 Feb 2018) | 1 line - Redis.pm: ignore error if an old redis server (e.g. 2.4) does not -recognize a CLIENT SETNAME command + Bug 7492 - switch from use vars to our cleanup ------------------------------------------------------------------------ -r1531991 | kmcgrail | 2013-10-14 17:38:18 +0000 (Mon, 14 Oct 2013) | 1 -line +r1823171 | davej | 2018-02-05 13:34:29 +0000 (Mon, 05 Feb 2018) | 1 line - small tweak to dependency output for wget/curl/fetch + Bug 7417 ------------------------------------------------------------------------ -r1531973 | mmartinec | 2013-10-14 16:41:22 +0000 (Mon, 14 Oct 2013) | 1 +r1823142 | kmcgrail | 2018-02-05 09:10:12 +0000 (Mon, 05 Feb 2018) | 1 line - docs: change a very long title in the tflags description, avoiding a -warning in a man page resulting from the POD; reported by Andreas Schulze + Bug 7491 switch test framework to Test::More ------------------------------------------------------------------------ -r1531966 | mmartinec | 2013-10-14 16:21:18 +0000 (Mon, 14 Oct 2013) | 1 +r1823126 | kmcgrail | 2018-02-05 06:20:06 +0000 (Mon, 05 Feb 2018) | 1 line - docs: fix two POD errors, reported by Andreas Schulze + Bug 7481 - Adding build time specification of re2c binary ------------------------------------------------------------------------ -r1531783 | spamassassin_role | 2013-10-14 02:59:58 +0000 (Mon, 14 Oct -2013) | 1 line +r1822650 | davej | 2018-01-30 14:19:37 +0000 (Tue, 30 Jan 2018) | 1 line - updated scores for revision 1531636 active rules added since last -mass-check + Bug 6222 ------------------------------------------------------------------------ -r1531755 | kmcgrail | 2013-10-13 21:28:06 +0000 (Sun, 13 Oct 2013) | 1 -line +r1822649 | davej | 2018-01-30 14:17:16 +0000 (Tue, 30 Jan 2018) | 1 line - added has capability function for check_rbl_from_domain + Bug 7540 ------------------------------------------------------------------------ -r1531614 | spamassassin_role | 2013-10-13 02:51:15 +0000 (Sun, 13 Oct -2013) | 1 line +r1822483 | davej | 2018-01-28 22:40:16 +0000 (Sun, 28 Jan 2018) | 1 line - updated scores for revision 1531518 active rules added since last -mass-check + Bug 7534 ------------------------------------------------------------------------ -r1531613 | jhardin | 2013-10-13 02:40:17 +0000 (Sun, 13 Oct 2013) | 1 line +r1822467 | davej | 2018-01-28 16:03:13 +0000 (Sun, 28 Jan 2018) | 1 line - FSL_HELO_BARE_IP_2 FP avoidance per reports on users list 10/12/2013 + Bug 6946. ------------------------------------------------------------------------ -r1531487 | spamassassin_role | 2013-10-12 02:43:05 +0000 (Sat, 12 Oct -2013) | 1 line +r1821749 | davej | 2018-01-20 15:26:02 +0000 (Sat, 20 Jan 2018) | 1 line - updated scores for revision 1531229 active rules added since last -mass-check + Bug 6946 ------------------------------------------------------------------------ -r1531481 | jhardin | 2013-10-12 02:00:47 +0000 (Sat, 12 Oct 2013) | 1 line +r1819502 | davej | 2017-12-29 18:37:34 +0000 (Fri, 29 Dec 2017) | 1 line - Tweak some rules + Bug 6420 ------------------------------------------------------------------------ -r1531372 | mmartinec | 2013-10-11 17:43:42 +0000 (Fri, 11 Oct 2013) | 1 +r1819497 | kmcgrail | 2017-12-29 15:20:04 +0000 (Fri, 29 Dec 2017) | 1 line - some tweaks on PROPOSED-3.4.0.txt announcements + Bug 7525 - missing includes declarations in spamc ------------------------------------------------------------------------ -r1531192 | kmcgrail | 2013-10-11 04:20:05 +0000 (Fri, 11 Oct 2013) | 1 +r1819449 | kmcgrail | 2017-12-28 23:14:24 +0000 (Thu, 28 Dec 2017) | 1 line - updates to proposed 3.4.0.txt announcement and build/README + bug 7524 logic patch for getoptlong issues in spamc ------------------------------------------------------------------------ -r1531189 | kmcgrail | 2013-10-11 03:59:49 +0000 (Fri, 11 Oct 2013) | 1 +r1819447 | kmcgrail | 2017-12-28 22:49:03 +0000 (Thu, 28 Dec 2017) | 1 line - preparing to release 3.4.0-rc3 + Bug 6970 - adding t.co url shortener ------------------------------------------------------------------------ -r1531183 | kmcgrail | 2013-10-11 03:24:27 +0000 (Fri, 11 Oct 2013) | 1 +r1819442 | kmcgrail | 2017-12-28 22:20:16 +0000 (Thu, 28 Dec 2017) | 1 line - added check_rbl_from_domain function to allow checking all the from -headers but querying just the domain instead of the full address used -previously. So bob@test.microsoft.com will query for bob@microsoft.com. ------------------------------------------------------------------------- -r1531175 | spamassassin_role | 2013-10-11 02:42:46 +0000 (Fri, 11 Oct -2013) | 1 line - - updated scores for revision 1530876 active rules added since last -mass-check + bug 7524 - opt cant be freed here or getoptlong fails ------------------------------------------------------------------------ -r1531169 | jhardin | 2013-10-11 01:53:47 +0000 (Fri, 11 Oct 2013) | 1 line +r1816710 | kmcgrail | 2017-11-30 12:46:21 +0000 (Thu, 30 Nov 2017) | 1 +line - Spanish unsub tuning, add rule for Spanish "Lic. Whoever" spams + Bug 7509 - free for spamc opt ------------------------------------------------------------------------ -r1531168 | jhardin | 2013-10-11 01:52:05 +0000 (Fri, 11 Oct 2013) | 1 line +r1815854 | jhardin | 2017-11-20 20:54:17 +0000 (Mon, 20 Nov 2017) | 1 line - Clean up some duped rules + Bug 7437 - fix issues with parsing a message having an unclosed HTML +") while exists $self->{inside}{style} && $self->{inside}{style} > 0; + $self->SUPER::parse("") while exists $self->{inside}{script} && $self->{inside}{script} > 0; $self->SUPER::eof; @@ -257,6 +273,7 @@ sub html_tag { my ($self, $tag, $attr, $num) = @_; + utf8::encode($tag) if $self->{SA_encode_results}; my $maybe_namespace = ($tag =~ m@^(?:o|st\d):[\w-]+/?$@); @@ -276,15 +293,15 @@ # ignore non-elements if (exists $elements{$tag} || exists $tricks{$tag}) { - text_style(@_) if exists $elements_text_style{$tag}; + $self->text_style($tag, $attr, $num) if exists $elements_text_style{$tag}; # bug 5009: things like

and

both need dealing with - html_whitespace(@_) if exists $elements_whitespace{$tag}; + $self->html_whitespace($tag) if exists $elements_whitespace{$tag}; # start tags if ($num == 1) { - html_uri(@_) if exists $elements_uri{$tag}; - html_tests(@_); + $self->html_uri($tag, $attr) if exists $elements_uri{$tag}; + $self->html_tests($tag, $attr, $num); } # end tags else { @@ -315,13 +332,12 @@ my ($self, $type, $uri) = @_; $uri = $self->canon_uri($uri); + utf8::encode($uri) if $self->{SA_encode_results}; my $target = target_uri($self->{base_href} || "", $uri); # skip things like