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 03:36:34.000000000 -0500 +++ spamassassin-3.4.2/build/md5sum.pl 1969-12-31 19:00:00.000000000 -0500 @@ -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 03:36:34.000000000 -0500 +++ spamassassin-3.4.2/build/mkrules 2018-09-13 21:27:52.000000000 -0400 @@ -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 03:36:34.000000000 -0500 +++ spamassassin-3.4.2/build/parse-rules-for-masses 2018-09-13 21:27:52.000000000 -0400 @@ -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 03:36:34.000000000 -0500 +++ spamassassin-3.4.2/build/preprocessor 2018-09-13 21:27:52.000000000 -0400 @@ -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 03:36:34.000000000 -0500 +++ spamassassin-3.4.2/build/sha1sum.pl 1969-12-31 19:00:00.000000000 -0500 @@ -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 1969-12-31 19:00:00.000000000 -0500 +++ spamassassin-3.4.2/build/sha256sum.pl 2018-09-13 21:27:52.000000000 -0400 @@ -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 1969-12-31 19:00:00.000000000 -0500 +++ spamassassin-3.4.2/build/sha512sum.pl 2018-09-13 21:27:52.000000000 -0400 @@ -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 03:36:38.000000000 -0500 +++ spamassassin-3.4.2/Changes 2018-09-13 21:27:51.000000000 -0400 @@ -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 ------------------------------------------------------------------------- -r1565368 | axb | 2014-02-06 17:33:34 +0000 (Thu, 06 Feb 2014) | 1 line - - disabled nopublish rules ------------------------------------------------------------------------- -r1565311 | axb | 2014-02-06 15:45:56 +0000 (Thu, 06 Feb 2014) | 1 line - - re-enabled __BUGGED_IMG co J.Harding is using it ------------------------------------------------------------------------- -r1565264 | axb | 2014-02-06 14:17:31 +0000 (Thu, 06 Feb 2014) | 1 line - - PLEASE KEEP THIS TIDY ------------------------------------------------------------------------- -r1565231 | axb | 2014-02-06 13:28:48 +0000 (Thu, 06 Feb 2014) | 2 lines - - disabled - tflags URIBL_META_SURBL_ANY net nopublish ------------------------------------------------------------------------- -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 - ------------------------------------------------------------------------- -r1565199 | axb | 2014-02-06 12:22:11 +0000 (Thu, 06 Feb 2014) | 1 line - - Disabled expensive, ancient, experimental rules + more build updates and new rc1 sums for announcement ------------------------------------------------------------------------ -r1565159 | axb | 2014-02-06 10:49:47 +0000 (Thu, 06 Feb 2014) | 1 line - - cleanup ------------------------------------------------------------------------- -r1565095 | axb | 2014-02-06 07:23:15 +0000 (Thu, 06 Feb 2014) | 1 line - - added __HAS_ORGANIZATION ------------------------------------------------------------------------- -r1565063 | spamassassin_role | 2014-02-06 03:15:04 +0000 (Thu, 06 Feb -2014) | 1 line - - updated scores for revision 1564672 active rules added since last -mass-check ------------------------------------------------------------------------- -r1564982 | kmcgrail | 2014-02-05 23:02:07 +0000 (Wed, 05 Feb 2014) | 1 +r1840380 | kmcgrail | 2018-09-08 21:08:05 +0000 (Sat, 08 Sep 2018) | 1 line - missed one bogus version per bug 6422 + preparing to release 3.4.2-rc1 again with new sa-update ------------------------------------------------------------------------ -r1564676 | kmcgrail | 2014-02-05 08:53:06 +0000 (Wed, 05 Feb 2014) | 1 +r1840377 | kmcgrail | 2018-09-08 20:40:12 +0000 (Sat, 08 Sep 2018) | 1 line - Tweaks on announcement and build instructions while prepping rc6 + Removing sha-1 sig support from sa-update - bug 7614 ------------------------------------------------------------------------ -r1564636 | kmcgrail | 2014-02-05 05:05:04 +0000 (Wed, 05 Feb 2014) | 1 +r1840330 | kmcgrail | 2018-09-08 01:05:14 +0000 (Sat, 08 Sep 2018) | 1 line - preparing to release 3.4.0-rc6 + changing to 3.3.3 to 3.3.2 ------------------------------------------------------------------------ -r1564626 | kmcgrail | 2014-02-05 04:10:03 +0000 (Wed, 05 Feb 2014) | 1 +r1840329 | kmcgrail | 2018-09-08 01:03:42 +0000 (Sat, 08 Sep 2018) | 1 line - Removed tests for FM_FRM_RN_L_BRACK + fixing a small typo in the announcement ------------------------------------------------------------------------ -r1564613 | kmcgrail | 2014-02-05 03:20:26 +0000 (Wed, 05 Feb 2014) | 1 +r1840233 | kmcgrail | 2018-09-06 16:07:14 +0000 (Thu, 06 Sep 2018) | 1 line - Fixing CREDITS to include Daniel Lemke and Henrik Krohns + updating the hash sigs for the announcement ------------------------------------------------------------------------ -r1564612 | spamassassin_role | 2014-02-05 03:07:34 +0000 (Wed, 05 Feb -2014) | 1 line - - 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 +r1840230 | kmcgrail | 2018-09-06 15:47:47 +0000 (Thu, 06 Sep 2018) | 1 line - Bug 6996 #11: spamd to honour --min-children + preparing to release 3.4.2-rc1 ------------------------------------------------------------------------ -r1564329 | mmartinec | 2014-02-04 15:00:15 +0000 (Tue, 04 Feb 2014) | 1 +r1840219 | kmcgrail | 2018-09-06 13:02:56 +0000 (Thu, 06 Sep 2018) | 1 line - added a missing "use Time::HiRes" to TinyRedis.pm (not a bug, just a -"right thing" to do) + more cleanup of branding and build process ------------------------------------------------------------------------ -r1564256 | axb | 2014-02-04 11:28:30 +0000 (Tue, 04 Feb 2014) | 1 line - - added util_rb_2tld biz.ua ------------------------------------------------------------------------- -r1564194 | kmcgrail | 2014-02-04 04:44:52 +0000 (Tue, 04 Feb 2014) | 1 +r1840213 | kmcgrail | 2018-09-06 12:04:10 +0000 (Thu, 06 Sep 2018) | 1 line - reversal of r1557309 for bayes_store_module_additional conf option + fix for Util wrap pre Perl 5.14 - bug 7616 ------------------------------------------------------------------------ -r1564168 | spamassassin_role | 2014-02-04 03:06:04 +0000 (Tue, 04 Feb -2014) | 1 line - - updated scores for revision 1563802 active rules added since last -mass-check ------------------------------------------------------------------------- -r1564078 | kmcgrail | 2014-02-03 21:45:42 +0000 (Mon, 03 Feb 2014) | 1 +r1840170 | kmcgrail | 2018-09-05 23:46:20 +0000 (Wed, 05 Sep 2018) | 1 line - adding tflag publish per -http://wiki.apache.org/spamassassin/SaUpdateBackend ------------------------------------------------------------------------- -r1563762 | spamassassin_role | 2014-02-03 03:00:47 +0000 (Mon, 03 Feb -2014) | 1 line - - updated scores for revision 1563579 active rules added since last -mass-check ------------------------------------------------------------------------- -r1563559 | spamassassin_role | 2014-02-02 03:09:12 +0000 (Sun, 02 Feb -2014) | 1 line - - updated scores for revision 1563382 active rules added since last -mass-check + updating the readme and announcement text ------------------------------------------------------------------------ -r1563367 | spamassassin_role | 2014-02-01 03:06:58 +0000 (Sat, 01 Feb -2014) | 1 line - - updated scores for revision 1563086 active rules added since last -mass-check ------------------------------------------------------------------------- -r1563172 | mmartinec | 2014-01-31 16:54:36 +0000 (Fri, 31 Jan 2014) | 1 +r1840128 | kmcgrail | 2018-09-05 12:15:57 +0000 (Wed, 05 Sep 2018) | 1 line - Bug 6996 - spamd --round-robin conflicts with multiple listen sockets + sa-update version work - bug 7006 ------------------------------------------------------------------------ -r1563162 | kmcgrail | 2014-01-31 16:22:28 +0000 (Fri, 31 Jan 2014) | 1 +r1840072 | billcole | 2018-09-04 22:27:55 +0000 (Tue, 04 Sep 2018) | 1 line - optimized the gibberish rule + Make leading space/zero for one-digit dates in mbox separator optional +Bug 7445 ------------------------------------------------------------------------ -r1563039 | spamassassin_role | 2014-01-31 03:18:11 +0000 (Fri, 31 Jan -2014) | 1 line - - updated scores for revision 1562725 active rules added since last -mass-check ------------------------------------------------------------------------- -r1562916 | kmcgrail | 2014-01-30 18:42:29 +0000 (Thu, 30 Jan 2014) | 1 +r1840053 | kmcgrail | 2018-09-04 17:32:36 +0000 (Tue, 04 Sep 2018) | 1 line - Adding html tag gibberish tag rule for testing from Amir Caspi on the -mailing list + Fixing the docs bug 7042 ------------------------------------------------------------------------ -r1562908 | kmcgrail | 2014-01-30 18:04:41 +0000 (Thu, 30 Jan 2014) | 1 +r1840050 | billcole | 2018-09-04 16:39:43 +0000 (Tue, 04 Sep 2018) | 1 line - Small debug enabled in rbl server lookup + document %x token foe Exim-like virtual config dirs ------------------------------------------------------------------------ -r1562705 | axb | 2014-01-30 07:17:05 +0000 (Thu, 30 Jan 2014) | 1 line +r1839962 | hege | 2018-09-03 13:21:42 +0000 (Mon, 03 Sep 2018) | 2 lines - nailed URIBL_MW_SURBL ------------------------------------------------------------------------- -r1562704 | axb | 2014-01-30 07:16:49 +0000 (Thu, 30 Jan 2014) | 1 line + Optimize loop, run hits only once - set fixed score for URIBL_MW_SURBL ------------------------------------------------------------------------ -r1562681 | spamassassin_role | 2014-01-30 03:16:01 +0000 (Thu, 30 Jan -2014) | 1 line +r1839883 | hege | 2018-09-02 13:50:12 +0000 (Sun, 02 Sep 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 - - 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 - - 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 - - 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 - - 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 - - updated scores for revision 1560920 active rules added since last -mass-check ------------------------------------------------------------------------- -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 - - removed score ------------------------------------------------------------------------- -r1560894 | spamassassin_role | 2014-01-24 03:12:15 +0000 (Fri, 24 Jan -2014) | 1 line - - updated scores for revision 1560608 active rules added since last -mass-check ------------------------------------------------------------------------- -r1560576 | spamassassin_role | 2014-01-23 03:13:05 +0000 (Thu, 23 Jan -2014) | 1 line - - updated scores for revision 1560283 active rules added since last -mass-check ------------------------------------------------------------------------- -r1560289 | axb | 2014-01-22 09:13:23 +0000 (Wed, 22 Jan 2014) | 1 line - - removed bad & no hits rules ------------------------------------------------------------------------- -r1560282 | axb | 2014-01-22 08:46:08 +0000 (Wed, 22 Jan 2014) | 1 line - - Disabled - "no hits at all" ancient rules - Axb 2014-01-22 ------------------------------------------------------------------------- -r1560243 | spamassassin_role | 2014-01-22 03:18:39 +0000 (Wed, 22 Jan -2014) | 1 line - - 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 - - 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 - - disabled old nopublish rules - seems like pointless masscheck overhead ------------------------------------------------------------------------- -r1559956 | axb | 2014-01-21 10:01:26 +0000 (Tue, 21 Jan 2014) | 1 line - - disabled nopublish rules - seems like pointless masscheck overhead ------------------------------------------------------------------------- -r1559955 | axb | 2014-01-21 09:57:08 +0000 (Tue, 21 Jan 2014) | 1 line - - disabled "forgotten" RCVD_IN_SPAMCOP net nopublish ------------------------------------------------------------------------- -r1559954 | axb | 2014-01-21 09:36:26 +0000 (Tue, 21 Jan 2014) | 1 line - - disabled "nopublish" ------------------------------------------------------------------------- -r1559949 | axb | 2014-01-21 09:04:38 +0000 (Tue, 21 Jan 2014) | 1 line - - disabled nopublish rules ------------------------------------------------------------------------- -r1559948 | axb | 2014-01-21 09:03:21 +0000 (Tue, 21 Jan 2014) | 1 line - - disabled nopublish rules ------------------------------------------------------------------------- -r1559940 | axb | 2014-01-21 08:49:23 +0000 (Tue, 21 Jan 2014) | 2 lines - - 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 - - removed fixed scores for 00_FVGT_File001.cf rules - let ruleqa decide ------------------------------------------------------------------------- -r1559932 | axb | 2014-01-21 08:11:56 +0000 (Tue, 21 Jan 2014) | 4 lines + Fix SHA512 verification - 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 ------------------------------------------------------------------------ -r1559931 | axb | 2014-01-21 08:10:23 +0000 (Tue, 21 Jan 2014) | 4 lines - - removed - publish FR_ALMOST_VIAG2 - publish FR_CANTSEETEXT - let ruleqa autopromote ------------------------------------------------------------------------- -r1559913 | spamassassin_role | 2014-01-21 03:06:25 +0000 (Tue, 21 Jan -2014) | 1 line - - updated scores for revision 1559645 active rules added since last -mass-check ------------------------------------------------------------------------- -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 - ------------------------------------------------------------------------- -r1559622 | spamassassin_role | 2014-01-20 03:22:09 +0000 (Mon, 20 Jan -2014) | 1 line - - updated scores for revision 1559481 active rules added since last -mass-check ------------------------------------------------------------------------- -r1559593 | kmcgrail | 2014-01-19 22:52:03 +0000 (Sun, 19 Jan 2014) | 1 -line - - Fixing lang_pl_test rule disable condition ------------------------------------------------------------------------- -r1559456 | spamassassin_role | 2014-01-19 03:16:52 +0000 (Sun, 19 Jan -2014) | 1 line - - updated scores for revision 1559330 active rules added since last -mass-check ------------------------------------------------------------------------- -r1559446 | jhardin | 2014-01-19 02:16:25 +0000 (Sun, 19 Jan 2014) | 1 line - - Disable Jimdo phishing rule, add WordPress phishing rule ------------------------------------------------------------------------- -r1559431 | jhardin | 2014-01-18 22:15:24 +0000 (Sat, 18 Jan 2014) | 1 line - - 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 - - updated scores for revision 1559048 active rules added since last -mass-check ------------------------------------------------------------------------- -r1558999 | spamassassin_role | 2014-01-17 03:06:21 +0000 (Fri, 17 Jan -2014) | 1 line - - updated scores for revision 1558716 active rules added since last -mass-check ------------------------------------------------------------------------- -r1558958 | kmcgrail | 2014-01-16 23:15:24 +0000 (Thu, 16 Jan 2014) | 1 -line - - set score ceiling for FH_RANDOM_SURE rule of 0.5 ------------------------------------------------------------------------- -r1558682 | spamassassin_role | 2014-01-16 03:12:08 +0000 (Thu, 16 Jan -2014) | 1 line - - updated scores for revision 1558319 active rules added since last -mass-check ------------------------------------------------------------------------- -r1558475 | jhardin | 2014-01-15 17:23:56 +0000 (Wed, 15 Jan 2014) | 1 line - - add URI_WPADMIN rule for evaluation, possible phishing sign ------------------------------------------------------------------------- -r1558457 | hstern | 2014-01-15 16:43:28 +0000 (Wed, 15 Jan 2014) | 2 lines - - sandbox/hstern/*: Removed my old garbage - ------------------------------------------------------------------------- -r1558271 | spamassassin_role | 2014-01-15 03:09:46 +0000 (Wed, 15 Jan -2014) | 1 line - - 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 - - cleaned up PHW to PCCC references in Credits ------------------------------------------------------------------------- -r1558095 | kmcgrail | 2014-01-14 16:17:40 +0000 (Tue, 14 Jan 2014) | 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 ------------------------------------------------------------------------- -r1557645 | spamassassin_role | 2014-01-13 03:14:55 +0000 (Mon, 13 Jan -2014) | 1 line - - updated scores for revision 1557499 active rules added since last -mass-check ------------------------------------------------------------------------- -r1557490 | spamassassin_role | 2014-01-12 03:04:58 +0000 (Sun, 12 Jan -2014) | 1 line - - updated scores for revision 1557327 active rules added since last -mass-check ------------------------------------------------------------------------- -r1557425 | kmcgrail | 2014-01-11 17:19:21 +0000 (Sat, 11 Jan 2014) | 1 +r1839865 | billcole | 2018-09-02 00:44:43 +0000 (Sun, 02 Sep 2018) | 1 line - updated proposed txt with the sha1/md5sum of the rc5 build and more -tweaks to build README + Add SHA512 support to build/mkupdates/* scripts and sa-update ------------------------------------------------------------------------ -r1557421 | kmcgrail | 2014-01-11 17:12:00 +0000 (Sat, 11 Jan 2014) | 1 +r1839854 | kmcgrail | 2018-09-01 21:23:41 +0000 (Sat, 01 Sep 2018) | 1 line - preparing to release 3.4.0 rc5 + More SHA256/512issues identified ------------------------------------------------------------------------ -r1557419 | kmcgrail | 2014-01-11 16:43:51 +0000 (Sat, 11 Jan 2014) | 1 +r1839851 | kmcgrail | 2018-09-01 21:11:42 +0000 (Sat, 01 Sep 2018) | 1 line - Fixed MANIFEST for TinyRedis.pm move to Util + preparing to release 3.4.2-pre5 ------------------------------------------------------------------------ -r1557418 | kmcgrail | 2014-01-11 16:33:32 +0000 (Sat, 11 Jan 2014) | 1 +r1839848 | kmcgrail | 2018-09-01 21:05:17 +0000 (Sat, 01 Sep 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 + Preparing 3.4.2-pre4 ------------------------------------------------------------------------ -r1557372 | mmartinec | 2014-01-11 12:40:47 +0000 (Sat, 11 Jan 2014) | 1 +r1839835 | kmcgrail | 2018-09-01 18:03:57 +0000 (Sat, 01 Sep 2018) | 1 line - added a missing "use Mail::SpamAssassin::BayesStore::TinyRedis" + Minor MANIFEST fix ------------------------------------------------------------------------ -r1557316 | kmcgrail | 2014-01-11 06:04:33 +0000 (Sat, 11 Jan 2014) | 1 +r1839834 | kmcgrail | 2018-09-01 18:01:46 +0000 (Sat, 01 Sep 2018) | 1 line - a few more small tweaks to the build/README + Streamlining the build process, Updating the build process for new +infrastructure and switching to sha256/512 - bug 7596 ------------------------------------------------------------------------ -r1557315 | kmcgrail | 2014-01-11 05:55:31 +0000 (Sat, 11 Jan 2014) | 1 +r1839832 | billcole | 2018-09-01 17:46:01 +0000 (Sat, 01 Sep 2018) | 1 line - updated proposed txt with the sha1/md5sum of the rc4 build + remove pointless and incompatible modifier from recent patch ------------------------------------------------------------------------ -r1557312 | kmcgrail | 2014-01-11 05:46:37 +0000 (Sat, 11 Jan 2014) | 1 +r1839826 | kmcgrail | 2018-09-01 14:55:44 +0000 (Sat, 01 Sep 2018) | 1 line - preparing to release 3.4.0-rc4 + Cleanup on README file ------------------------------------------------------------------------ -r1557311 | kmcgrail | 2014-01-11 04:46:45 +0000 (Sat, 11 Jan 2014) | 1 +r1839824 | kmcgrail | 2018-09-01 14:21:36 +0000 (Sat, 01 Sep 2018) | 1 line - Adding TinyRedis.pm + Placeholder for Upgrade info ------------------------------------------------------------------------ -r1557310 | kmcgrail | 2014-01-11 04:46:11 +0000 (Sat, 11 Jan 2014) | 1 +r1839807 | kmcgrail | 2018-09-01 05:39:30 +0000 (Sat, 01 Sep 2018) | 1 line - Added autolearn_force debugging and logging - bug 5503 + Preparing to release 3.4.2-pre4 ------------------------------------------------------------------------ -r1557309 | kmcgrail | 2014-01-11 04:45:35 +0000 (Sat, 11 Jan 2014) | 1 +r1839806 | kmcgrail | 2018-09-01 05:37:42 +0000 (Sat, 01 Sep 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 ------------------------------------------------------------------------- -r1557303 | spamassassin_role | 2014-01-11 03:01:00 +0000 (Sat, 11 Jan -2014) | 1 line - - updated scores for revision 1557056 active rules added since last -mass-check + Fixing minor logic issue on HAS_DSA ------------------------------------------------------------------------ -r1557256 | kmcgrail | 2014-01-10 21:00:38 +0000 (Fri, 10 Jan 2014) | 1 +r1839797 | billcole | 2018-08-31 23:43:25 +0000 (Fri, 31 Aug 2018) | 1 line - renamed Redis Package to match filename to pass xt test - Bug 6990 + skip unparseable Cyrus LMTPA over unix socket Received header ------------------------------------------------------------------------ -r1557018 | spamassassin_role | 2014-01-10 03:08:28 +0000 (Fri, 10 Jan -2014) | 1 line - - updated scores for revision 1556762 active rules added since last -mass-check ------------------------------------------------------------------------- -r1556959 | kmcgrail | 2014-01-09 21:39:16 +0000 (Thu, 09 Jan 2014) | 1 +r1839792 | billcole | 2018-08-31 22:04:32 +0000 (Fri, 31 Aug 2018) | 1 line - Changed Credits for Duncan + Actually implementing use_bayes_rules distinct from use_bayes. Bug #7110 ------------------------------------------------------------------------ -r1556764 | axb | 2014-01-09 09:27:41 +0000 (Thu, 09 Jan 2014) | 1 line - - added AXB_XM_MYECLNT ------------------------------------------------------------------------- -r1556705 | spamassassin_role | 2014-01-09 03:04:44 +0000 (Thu, 09 Jan -2014) | 1 line - - updated scores for revision 1556465 active rules added since last -mass-check ------------------------------------------------------------------------- -r1556598 | jhardin | 2014-01-08 18:24:07 +0000 (Wed, 08 Jan 2014) | 1 line - - tune CN_B2B_SPAMMER ------------------------------------------------------------------------- -r1556457 | axb | 2014-01-08 07:34:47 +0000 (Wed, 08 Jan 2014) | 1 line - - removed util_rb_2tld firm.in - already in RB ------------------------------------------------------------------------- -r1556452 | axb | 2014-01-08 07:19:14 +0000 (Wed, 08 Jan 2014) | 1 line - - added util_rb_2tld firm.in ------------------------------------------------------------------------- -r1556431 | spamassassin_role | 2014-01-08 03:12:29 +0000 (Wed, 08 Jan -2014) | 1 line - - updated scores for revision 1556147 active rules added since last -mass-check ------------------------------------------------------------------------- -r1556355 | kmcgrail | 2014-01-07 21:01:28 +0000 (Tue, 07 Jan 2014) | 1 +r1839684 | kmcgrail | 2018-08-30 15:26:34 +0000 (Thu, 30 Aug 2018) | 1 line - moved Duncan to previous committers ------------------------------------------------------------------------- -r1556113 | spamassassin_role | 2014-01-07 03:06:46 +0000 (Tue, 07 Jan -2014) | 1 line - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - Move me to "inactive committers". ------------------------------------------------------------------------- -r1554598 | spamassassin_role | 2014-01-01 02:58:34 +0000 (Wed, 01 Jan -2014) | 1 line - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - updated scores for revision 1549009 active rules added since last -mass-check ------------------------------------------------------------------------- -r1549047 | jhardin | 2013-12-08 15:59:23 +0000 (Sun, 08 Dec 2013) | 1 line - - GA score limit apparently not working for FILL_THIS_FORM_LONG, broken by -#ifplugin? Set manual score. ------------------------------------------------------------------------- -r1548980 | spamassassin_role | 2013-12-08 03:00:00 +0000 (Sun, 08 Dec -2013) | 1 line - - updated scores for revision 1548817 active rules added since last -mass-check ------------------------------------------------------------------------- -r1548788 | spamassassin_role | 2013-12-07 02:55:57 +0000 (Sat, 07 Dec -2013) | 1 line - - updated scores for revision 1548435 active rules added since last -mass-check ------------------------------------------------------------------------- -r1548375 | spamassassin_role | 2013-12-06 02:54:18 +0000 (Fri, 06 Dec -2013) | 1 line - - updated scores for revision 1548039 active rules added since last -mass-check ------------------------------------------------------------------------- -r1547998 | spamassassin_role | 2013-12-05 02:51:28 +0000 (Thu, 05 Dec -2013) | 1 line - - 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 - - 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 - - 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 - - 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 - - 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 - - updated scores for revision 1546700 active rules added since last -mass-check ------------------------------------------------------------------------- -r1546681 | spamassassin_role | 2013-11-30 02:50:07 +0000 (Sat, 30 Nov -2013) | 1 line - - updated scores for revision 1546520 active rules added since last -mass-check ------------------------------------------------------------------------- -r1546494 | spamassassin_role | 2013-11-29 02:46:19 +0000 (Fri, 29 Nov -2013) | 1 line - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - updated scores for revision 1542949 active rules added since last -mass-check ------------------------------------------------------------------------- -r1542882 | spamassassin_role | 2013-11-18 02:50:04 +0000 (Mon, 18 Nov -2013) | 1 line - - updated scores for revision 1542661 active rules added since last -mass-check ------------------------------------------------------------------------- -r1542636 | spamassassin_role | 2013-11-17 02:53:21 +0000 (Sun, 17 Nov -2013) | 1 line - - updated scores for revision 1542483 active rules added since last -mass-check ------------------------------------------------------------------------- -r1542453 | spamassassin_role | 2013-11-16 02:48:13 +0000 (Sat, 16 Nov -2013) | 1 line - - 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 - - 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 - - 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 - - FP avoidance ------------------------------------------------------------------------- -r1541365 | spamassassin_role | 2013-11-13 02:48:26 +0000 (Wed, 13 Nov -2013) | 1 line - - 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 - - piggy tweak ------------------------------------------------------------------------- -r1540928 | spamassassin_role | 2013-11-12 02:50:07 +0000 (Tue, 12 Nov -2013) | 1 line - - 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 -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 ------------------------------------------------------------------------- -r1540588 | spamassassin_role | 2013-11-11 02:52:21 +0000 (Mon, 11 Nov -2013) | 1 line - - updated scores for revision 1540453 active rules added since last -mass-check ------------------------------------------------------------------------- -r1540435 | spamassassin_role | 2013-11-10 02:44:02 +0000 (Sun, 10 Nov -2013) | 1 line - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - updated scores for revision 1537852 active rules added since last -mass-check ------------------------------------------------------------------------- -r1537808 | spamassassin_role | 2013-11-01 02:50:17 +0000 (Fri, 01 Nov -2013) | 1 line - - updated scores for revision 1537405 active rules added since last -mass-check ------------------------------------------------------------------------- -r1537471 | axb | 2013-10-31 12:44:57 +0000 (Thu, 31 Oct 2013) | 1 line - - added AXB_X_ORIG_OMNIMS ------------------------------------------------------------------------- -r1537367 | spamassassin_role | 2013-10-31 02:45:12 +0000 (Thu, 31 Oct -2013) | 1 line - - 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 - - added util_rb_2tld com.de ------------------------------------------------------------------------- -r1537189 | mmartinec | 2013-10-30 17:24:05 +0000 (Wed, 30 Oct 2013) | 1 -line - - 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 - - updated scores for revision 1536612 active rules added since last -mass-check ------------------------------------------------------------------------- -r1536864 | mmartinec | 2013-10-29 19:44:28 +0000 (Tue, 29 Oct 2013) | 1 -line - - Bug 6984: r1531991 breaks perl.req script ------------------------------------------------------------------------- -r1536582 | spamassassin_role | 2013-10-29 02:46:58 +0000 (Tue, 29 Oct -2013) | 1 line - - 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 - - tflags AXB_X_ORIG_OMNIMS nopublish ------------------------------------------------------------------------- -r1536236 | spamassassin_role | 2013-10-28 02:50:15 +0000 (Mon, 28 Oct -2013) | 1 line - - 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 - - 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 - - A few small rule description updates ------------------------------------------------------------------------- -r1535910 | jhardin | 2013-10-26 02:00:02 +0000 (Sat, 26 Oct 2013) | 1 line - - Add jimdo.com phishing webform rule ------------------------------------------------------------------------- -r1534966 | axb | 2013-10-23 09:40:11 +0000 (Wed, 23 Oct 2013) | 1 line - - fixed typo ------------------------------------------------------------------------- -r1533992 | jhardin | 2013-10-20 21:27:18 +0000 (Sun, 20 Oct 2013) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1533681 | spamassassin_role | 2013-10-19 02:55:22 +0000 (Sat, 19 Oct -2013) | 1 line - - 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 - - lots of new freemail domains ------------------------------------------------------------------------- -r1533672 | jhardin | 2013-10-19 00:51:26 +0000 (Sat, 19 Oct 2013) | 1 line - - Standardize minimal-body rule names, add BODY_SINGLE_WORD ------------------------------------------------------------------------- -r1533492 | axb | 2013-10-18 15:15:24 +0000 (Fri, 18 Oct 2013) | 3 lines - - 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 - - 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 - - added util_rb_2tld in.net ------------------------------------------------------------------------- -r1533317 | spamassassin_role | 2013-10-18 02:55:07 +0000 (Fri, 18 Oct -2013) | 1 line - - updated scores for revision 1533008 active rules added since last -mass-check ------------------------------------------------------------------------- -r1533234 | jhardin | 2013-10-17 19:57:48 +0000 (Thu, 17 Oct 2013) | 1 line - - 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 - - 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 - - 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 - - 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 - - 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 - - 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 - - jpn.com - yolasite.com ------------------------------------------------------------------------- -r1532010 | jhardin | 2013-10-14 18:12:43 +0000 (Mon, 14 Oct 2013) | 1 line - - tweak UNSUBSCRIBE_ES ------------------------------------------------------------------------- -r1532009 | jhardin | 2013-10-14 18:11:55 +0000 (Mon, 14 Oct 2013) | 1 line - - FSL_FROM_INFO_DOM performing poorly as scored rule, converted to subrule -and relocated ------------------------------------------------------------------------- -r1531995 | mmartinec | 2013-10-14 17:43:19 +0000 (Mon, 14 Oct 2013) | 1 -line - - Redis.pm: ignore error if an old redis server (e.g. 2.4) does not -recognize a CLIENT SETNAME command ------------------------------------------------------------------------- -r1531991 | kmcgrail | 2013-10-14 17:38:18 +0000 (Mon, 14 Oct 2013) | 1 -line - - small tweak to dependency output for wget/curl/fetch ------------------------------------------------------------------------- -r1531973 | mmartinec | 2013-10-14 16:41:22 +0000 (Mon, 14 Oct 2013) | 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 ------------------------------------------------------------------------- -r1531966 | mmartinec | 2013-10-14 16:21:18 +0000 (Mon, 14 Oct 2013) | 1 -line - - docs: fix two POD errors, reported by Andreas Schulze ------------------------------------------------------------------------- -r1531783 | spamassassin_role | 2013-10-14 02:59:58 +0000 (Mon, 14 Oct -2013) | 1 line - - updated scores for revision 1531636 active rules added since last -mass-check ------------------------------------------------------------------------- -r1531755 | kmcgrail | 2013-10-13 21:28:06 +0000 (Sun, 13 Oct 2013) | 1 -line - - added has capability function for check_rbl_from_domain ------------------------------------------------------------------------- -r1531614 | spamassassin_role | 2013-10-13 02:51:15 +0000 (Sun, 13 Oct -2013) | 1 line - - updated scores for revision 1531518 active rules added since last -mass-check ------------------------------------------------------------------------- -r1531613 | jhardin | 2013-10-13 02:40:17 +0000 (Sun, 13 Oct 2013) | 1 line - - FSL_HELO_BARE_IP_2 FP avoidance per reports on users list 10/12/2013 ------------------------------------------------------------------------- -r1531487 | spamassassin_role | 2013-10-12 02:43:05 +0000 (Sat, 12 Oct -2013) | 1 line - - updated scores for revision 1531229 active rules added since last -mass-check ------------------------------------------------------------------------- -r1531481 | jhardin | 2013-10-12 02:00:47 +0000 (Sat, 12 Oct 2013) | 1 line - - Tweak some rules ------------------------------------------------------------------------- -r1531372 | mmartinec | 2013-10-11 17:43:42 +0000 (Fri, 11 Oct 2013) | 1 -line - - some tweaks on PROPOSED-3.4.0.txt announcements ------------------------------------------------------------------------- -r1531192 | kmcgrail | 2013-10-11 04:20:05 +0000 (Fri, 11 Oct 2013) | 1 -line - - updates to proposed 3.4.0.txt announcement and build/README ------------------------------------------------------------------------- -r1531189 | kmcgrail | 2013-10-11 03:59:49 +0000 (Fri, 11 Oct 2013) | 1 -line - - preparing to release 3.4.0-rc3 ------------------------------------------------------------------------- -r1531183 | kmcgrail | 2013-10-11 03:24:27 +0000 (Fri, 11 Oct 2013) | 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 ------------------------------------------------------------------------- -r1531169 | jhardin | 2013-10-11 01:53:47 +0000 (Fri, 11 Oct 2013) | 1 line - - Spanish unsub tuning, add rule for Spanish "Lic. Whoever" spams ------------------------------------------------------------------------- -r1531168 | jhardin | 2013-10-11 01:52:05 +0000 (Fri, 11 Oct 2013) | 1 line - - Clean up some duped rules ------------------------------------------------------------------------- -r1530843 | spamassassin_role | 2013-10-10 02:43:57 +0000 (Thu, 10 Oct -2013) | 1 line - - updated scores for revision 1530532 active rules added since last -mass-check ------------------------------------------------------------------------- -r1530486 | spamassassin_role | 2013-10-09 02:43:50 +0000 (Wed, 09 Oct -2013) | 1 line - - updated scores for revision 1530186 active rules added since last -mass-check ------------------------------------------------------------------------- -r1530137 | spamassassin_role | 2013-10-08 02:46:38 +0000 (Tue, 08 Oct -2013) | 1 line - - updated scores for revision 1529793 active rules added since last -mass-check ------------------------------------------------------------------------- -r1529728 | spamassassin_role | 2013-10-07 02:50:31 +0000 (Mon, 07 Oct -2013) | 1 line - - updated scores for revision 1529602 active rules added since last -mass-check ------------------------------------------------------------------------- -r1529561 | spamassassin_role | 2013-10-06 02:54:02 +0000 (Sun, 06 Oct -2013) | 1 line - - updated scores for revision 1529413 active rules added since last -mass-check ------------------------------------------------------------------------- -r1529380 | spamassassin_role | 2013-10-05 03:03:35 +0000 (Sat, 05 Oct -2013) | 1 line - - updated scores for revision 1529102 active rules added since last -mass-check ------------------------------------------------------------------------- -r1529073 | spamassassin_role | 2013-10-04 03:04:50 +0000 (Fri, 04 Oct -2013) | 1 line - - updated scores for revision 1528751 active rules added since last -mass-check ------------------------------------------------------------------------- -r1528708 | spamassassin_role | 2013-10-03 03:01:45 +0000 (Thu, 03 Oct -2013) | 1 line - - updated scores for revision 1528373 active rules added since last -mass-check ------------------------------------------------------------------------- -r1528509 | jhardin | 2013-10-02 14:59:51 +0000 (Wed, 02 Oct 2013) | 1 line - - tweak too many to & cc subrules ------------------------------------------------------------------------- -r1528297 | spamassassin_role | 2013-10-02 03:00:25 +0000 (Wed, 02 Oct -2013) | 1 line - - updated scores for revision 1527972 active rules added since last -mass-check ------------------------------------------------------------------------- -r1527857 | spamassassin_role | 2013-10-01 02:59:28 +0000 (Tue, 01 Oct -2013) | 1 line - - updated scores for revision 1527487 active rules added since last -mass-check ------------------------------------------------------------------------- -r1527433 | spamassassin_role | 2013-09-30 03:01:29 +0000 (Mon, 30 Sep -2013) | 1 line - - updated scores for revision 1527286 active rules added since last -mass-check ------------------------------------------------------------------------- -r1527265 | spamassassin_role | 2013-09-29 02:54:33 +0000 (Sun, 29 Sep -2013) | 1 line - - updated scores for revision 1527166 active rules added since last -mass-check ------------------------------------------------------------------------- -r1527146 | spamassassin_role | 2013-09-28 03:01:21 +0000 (Sat, 28 Sep -2013) | 1 line - - updated scores for revision 1526833 active rules added since last -mass-check ------------------------------------------------------------------------- -r1526779 | spamassassin_role | 2013-09-27 02:59:14 +0000 (Fri, 27 Sep -2013) | 1 line - - updated scores for revision 1526417 active rules added since last -mass-check ------------------------------------------------------------------------- -r1526397 | axb | 2013-09-26 06:30:06 +0000 (Thu, 26 Sep 2013) | 1 line - - added addthis.com ------------------------------------------------------------------------- -r1526361 | spamassassin_role | 2013-09-26 03:00:18 +0000 (Thu, 26 Sep -2013) | 1 line - - updated scores for revision 1526135 active rules added since last -mass-check ------------------------------------------------------------------------- -r1526093 | spamassassin_role | 2013-09-25 03:02:43 +0000 (Wed, 25 Sep -2013) | 1 line - - updated scores for revision 1525816 active rules added since last -mass-check ------------------------------------------------------------------------- -r1525765 | spamassassin_role | 2013-09-24 03:00:55 +0000 (Tue, 24 Sep -2013) | 1 line - - updated scores for revision 1525536 active rules added since last -mass-check ------------------------------------------------------------------------- -r1525493 | spamassassin_role | 2013-09-23 02:57:32 +0000 (Mon, 23 Sep -2013) | 1 line - - updated scores for revision 1525332 active rules added since last -mass-check ------------------------------------------------------------------------- -r1525319 | spamassassin_role | 2013-09-22 03:00:30 +0000 (Sun, 22 Sep -2013) | 1 line - - updated scores for revision 1525204 active rules added since last -mass-check ------------------------------------------------------------------------- -r1525191 | spamassassin_role | 2013-09-21 02:54:18 +0000 (Sat, 21 Sep -2013) | 1 line - - updated scores for revision 1524946 active rules added since last -mass-check ------------------------------------------------------------------------- -r1524892 | spamassassin_role | 2013-09-20 03:06:16 +0000 (Fri, 20 Sep -2013) | 1 line - - updated scores for revision 1524658 active rules added since last -mass-check ------------------------------------------------------------------------- -r1524619 | spamassassin_role | 2013-09-19 03:00:36 +0000 (Thu, 19 Sep -2013) | 1 line - - updated scores for revision 1524337 active rules added since last -mass-check ------------------------------------------------------------------------- -r1524281 | spamassassin_role | 2013-09-18 02:57:15 +0000 (Wed, 18 Sep -2013) | 1 line - - updated scores for revision 1523956 active rules added since last -mass-check ------------------------------------------------------------------------- -r1523879 | spamassassin_role | 2013-09-17 03:04:39 +0000 (Tue, 17 Sep -2013) | 1 line - - updated scores for revision 1523560 active rules added since last -mass-check ------------------------------------------------------------------------- -r1523537 | spamassassin_role | 2013-09-16 03:00:41 +0000 (Mon, 16 Sep -2013) | 1 line - - updated scores for revision 1523416 active rules added since last -mass-check ------------------------------------------------------------------------- -r1523390 | spamassassin_role | 2013-09-15 02:57:02 +0000 (Sun, 15 Sep -2013) | 1 line - - updated scores for revision 1523192 active rules added since last -mass-check ------------------------------------------------------------------------- -r1523181 | spamassassin_role | 2013-09-14 03:08:47 +0000 (Sat, 14 Sep -2013) | 1 line - - updated scores for revision 1522816 active rules added since last -mass-check ------------------------------------------------------------------------- -r1522765 | spamassassin_role | 2013-09-13 03:08:39 +0000 (Fri, 13 Sep -2013) | 1 line - - updated scores for revision 1522488 active rules added since last -mass-check ------------------------------------------------------------------------- -r1522174 | spamassassin_role | 2013-09-12 03:13:30 +0000 (Thu, 12 Sep -2013) | 1 line - - updated scores for revision 1521760 active rules added since last -mass-check ------------------------------------------------------------------------- -r1521722 | spamassassin_role | 2013-09-11 03:09:19 +0000 (Wed, 11 Sep -2013) | 1 line - - updated scores for revision 1521372 active rules added since last -mass-check ------------------------------------------------------------------------- -r1521352 | spamassassin_role | 2013-09-10 03:11:00 +0000 (Tue, 10 Sep -2013) | 1 line - - updated scores for revision 1520997 active rules added since last -mass-check ------------------------------------------------------------------------- -r1520955 | spamassassin_role | 2013-09-09 03:15:06 +0000 (Mon, 09 Sep -2013) | 1 line - - updated scores for revision 1520845 active rules added since last -mass-check ------------------------------------------------------------------------- -r1520834 | spamassassin_role | 2013-09-08 03:15:17 +0000 (Sun, 08 Sep -2013) | 1 line - - updated scores for revision 1520742 active rules added since last -mass-check ------------------------------------------------------------------------- -r1520722 | spamassassin_role | 2013-09-07 03:24:51 +0000 (Sat, 07 Sep -2013) | 1 line - - updated scores for revision 1520514 active rules added since last -mass-check ------------------------------------------------------------------------- -r1520513 | mmartinec | 2013-09-06 08:39:30 +0000 (Fri, 06 Sep 2013) | 1 -line - - DependencyInfo.pm: dropped dependency on module Redis, updated -PROPOSED-3.4.0.txt accordingly ------------------------------------------------------------------------- -r1520508 | mmartinec | 2013-09-06 08:22:53 +0000 (Fri, 06 Sep 2013) | 1 -line - - add "b_count_change" entry to the timing report (Bayes learn elapsed -time) ------------------------------------------------------------------------- -r1520486 | spamassassin_role | 2013-09-06 03:30:34 +0000 (Fri, 06 Sep -2013) | 1 line - - updated scores for revision 1520253 active rules added since last -mass-check ------------------------------------------------------------------------- -r1520380 | mmartinec | 2013-09-05 18:32:32 +0000 (Thu, 05 Sep 2013) | 1 -line - - Bug 6972: BayesStore/Redis.pm: ditching CPAN module Redis gains speed, -avoids its bugs, works on IPv6 ------------------------------------------------------------------------- -r1520203 | spamassassin_role | 2013-09-05 03:31:33 +0000 (Thu, 05 Sep -2013) | 1 line - - updated scores for revision 1519943 active rules added since last -mass-check ------------------------------------------------------------------------- -r1520091 | mmartinec | 2013-09-04 18:25:50 +0000 (Wed, 04 Sep 2013) | 1 -line - - Bug 6698#26: DCC dcc_raw_x_dcc fixed ------------------------------------------------------------------------- -r1519912 | spamassassin_role | 2013-09-04 03:33:42 +0000 (Wed, 04 Sep -2013) | 1 line - - updated scores for revision 1519602 active rules added since last -mass-check ------------------------------------------------------------------------- -r1519543 | spamassassin_role | 2013-09-03 03:29:32 +0000 (Tue, 03 Sep -2013) | 1 line - - updated scores for revision 1519366 active rules added since last -mass-check ------------------------------------------------------------------------- -r1519336 | spamassassin_role | 2013-09-02 03:31:57 +0000 (Mon, 02 Sep -2013) | 1 line - - updated scores for revision 1519251 active rules added since last -mass-check ------------------------------------------------------------------------- -r1519238 | spamassassin_role | 2013-09-01 03:26:31 +0000 (Sun, 01 Sep -2013) | 1 line - - updated scores for revision 1519160 active rules added since last -mass-check ------------------------------------------------------------------------- -r1519133 | spamassassin_role | 2013-08-31 03:15:04 +0000 (Sat, 31 Aug -2013) | 1 line - - updated scores for revision 1518915 active rules added since last -mass-check ------------------------------------------------------------------------- -r1518969 | axb | 2013-08-30 13:46:59 +0000 (Fri, 30 Aug 2013) | 1 line - - added eco.br ------------------------------------------------------------------------- -r1518885 | spamassassin_role | 2013-08-30 03:09:25 +0000 (Fri, 30 Aug -2013) | 1 line - - updated scores for revision 1518538 active rules added since last -mass-check ------------------------------------------------------------------------- -r1518457 | spamassassin_role | 2013-08-29 03:12:51 +0000 (Thu, 29 Aug -2013) | 1 line - - updated scores for revision 1518106 active rules added since last -mass-check ------------------------------------------------------------------------- -r1518057 | spamassassin_role | 2013-08-28 03:05:23 +0000 (Wed, 28 Aug -2013) | 1 line - - updated scores for revision 1517764 active rules added since last -mass-check ------------------------------------------------------------------------- -r1517741 | spamassassin_role | 2013-08-27 03:07:10 +0000 (Tue, 27 Aug -2013) | 1 line - - updated scores for revision 1517463 active rules added since last -mass-check ------------------------------------------------------------------------- -r1517411 | spamassassin_role | 2013-08-26 03:02:58 +0000 (Mon, 26 Aug -2013) | 1 line - - updated scores for revision 1517252 active rules added since last -mass-check ------------------------------------------------------------------------- -r1517219 | spamassassin_role | 2013-08-25 03:02:03 +0000 (Sun, 25 Aug -2013) | 1 line - - updated scores for revision 1517116 active rules added since last -mass-check ------------------------------------------------------------------------- -r1517104 | spamassassin_role | 2013-08-24 03:06:10 +0000 (Sat, 24 Aug -2013) | 1 line - - updated scores for revision 1516750 active rules added since last -mass-check ------------------------------------------------------------------------- -r1516685 | spamassassin_role | 2013-08-23 03:05:17 +0000 (Fri, 23 Aug -2013) | 1 line - - updated scores for revision 1516387 active rules added since last -mass-check ------------------------------------------------------------------------- -r1516366 | spamassassin_role | 2013-08-22 03:07:40 +0000 (Thu, 22 Aug -2013) | 1 line - - updated scores for revision 1516113 active rules added since last -mass-check ------------------------------------------------------------------------- -r1516178 | jhardin | 2013-08-21 14:44:39 +0000 (Wed, 21 Aug 2013) | 1 line - - tweak EXECUTABLE_URI ------------------------------------------------------------------------- -r1516064 | spamassassin_role | 2013-08-21 03:08:05 +0000 (Wed, 21 Aug -2013) | 1 line - - updated scores for revision 1515745 active rules added since last -mass-check ------------------------------------------------------------------------- -r1515692 | spamassassin_role | 2013-08-20 03:08:05 +0000 (Tue, 20 Aug -2013) | 1 line - - updated scores for revision 1515319 active rules added since last -mass-check ------------------------------------------------------------------------- -r1515682 | jhardin | 2013-08-20 01:14:24 +0000 (Tue, 20 Aug 2013) | 1 line - - Tweak lotsa_money ------------------------------------------------------------------------- -r1515265 | spamassassin_role | 2013-08-19 03:11:12 +0000 (Mon, 19 Aug -2013) | 1 line - - updated scores for revision 1515077 active rules added since last -mass-check ------------------------------------------------------------------------- -r1515062 | spamassassin_role | 2013-08-18 03:15:13 +0000 (Sun, 18 Aug -2013) | 1 line - - updated scores for revision 1514960 active rules added since last -mass-check ------------------------------------------------------------------------- -r1515045 | jhardin | 2013-08-17 22:55:45 +0000 (Sat, 17 Aug 2013) | 1 line - - Tweak lotsa_money - add more French and German variants ------------------------------------------------------------------------- -r1514938 | spamassassin_role | 2013-08-17 03:14:00 +0000 (Sat, 17 Aug -2013) | 1 line - - updated scores for revision 1514621 active rules added since last -mass-check ------------------------------------------------------------------------- -r1514937 | jhardin | 2013-08-17 02:30:00 +0000 (Sat, 17 Aug 2013) | 1 line - - tune TO_NO_BRKTS_PCNT ------------------------------------------------------------------------- -r1514563 | spamassassin_role | 2013-08-16 03:18:55 +0000 (Fri, 16 Aug -2013) | 1 line - - updated scores for revision 1514202 active rules added since last -mass-check ------------------------------------------------------------------------- -r1514524 | mmartinec | 2013-08-15 22:52:12 +0000 (Thu, 15 Aug 2013) | 1 -line - - Bug 6968: quote a $ within a character class (Bleadperl -v5.19.2-257-gc30fc27 fixes a bug in perl which -Mail/SpamAssassin/Plugin/FreeMail.pm relies) ------------------------------------------------------------------------- -r1514145 | spamassassin_role | 2013-08-15 03:18:51 +0000 (Thu, 15 Aug -2013) | 1 line - - updated scores for revision 1513768 active rules added since last -mass-check ------------------------------------------------------------------------- -r1513723 | jhardin | 2013-08-14 04:02:45 +0000 (Wed, 14 Aug 2013) | 1 line - - Tweak COMMENT_GIBBERISH ------------------------------------------------------------------------- -r1513718 | spamassassin_role | 2013-08-14 03:16:29 +0000 (Wed, 14 Aug -2013) | 1 line - - updated scores for revision 1513388 active rules added since last -mass-check ------------------------------------------------------------------------- -r1513680 | kmcgrail | 2013-08-13 22:42:29 +0000 (Tue, 13 Aug 2013) | 1 -line - - fixed license missing on experimental file and added a test rule for -David F. Skoll from Mailing list ------------------------------------------------------------------------- -r1513679 | kmcgrail | 2013-08-13 22:42:13 +0000 (Tue, 13 Aug 2013) | 1 -line - - fixed license missing on experimental file and added a test rule for -David F. Skoll from Mailing list ------------------------------------------------------------------------- -r1513331 | spamassassin_role | 2013-08-13 03:20:35 +0000 (Tue, 13 Aug -2013) | 1 line - - updated scores for revision 1513081 active rules added since last -mass-check ------------------------------------------------------------------------- -r1513033 | spamassassin_role | 2013-08-12 03:15:34 +0000 (Mon, 12 Aug -2013) | 1 line - - updated scores for revision 1512893 active rules added since last -mass-check ------------------------------------------------------------------------- -r1513027 | jhardin | 2013-08-12 01:55:21 +0000 (Mon, 12 Aug 2013) | 1 line - - Tweak COMMENT_GIBBERISH ------------------------------------------------------------------------- -r1512863 | spamassassin_role | 2013-08-11 03:16:37 +0000 (Sun, 11 Aug -2013) | 1 line - - updated scores for revision 1512578 active rules added since last -mass-check ------------------------------------------------------------------------- -r1512562 | jhardin | 2013-08-10 04:47:18 +0000 (Sat, 10 Aug 2013) | 1 line - - Add LUCRATIVE ------------------------------------------------------------------------- -r1512555 | spamassassin_role | 2013-08-10 02:57:21 +0000 (Sat, 10 Aug -2013) | 1 line - - updated scores for revision 1512204 active rules added since last -mass-check ------------------------------------------------------------------------- -r1512131 | spamassassin_role | 2013-08-09 03:01:27 +0000 (Fri, 09 Aug -2013) | 1 line - - updated scores for revision 1511618 active rules added since last -mass-check ------------------------------------------------------------------------- -r1512123 | jhardin | 2013-08-09 01:42:59 +0000 (Fri, 09 Aug 2013) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1511563 | spamassassin_role | 2013-08-08 02:58:40 +0000 (Thu, 08 Aug -2013) | 1 line - - updated scores for revision 1511213 active rules added since last -mass-check ------------------------------------------------------------------------- -r1511296 | mmartinec | 2013-08-07 13:10:06 +0000 (Wed, 07 Aug 2013) | 1 -line - - avoid a potential "Insecure dependency in sprintf" in a call to dbg() ------------------------------------------------------------------------- -r1511229 | mmartinec | 2013-08-07 09:47:13 +0000 (Wed, 07 Aug 2013) | 1 -line - - Bug 6963: Anybody cares for a saved millisecond or two in computing -bayes probabilities for tokens? ------------------------------------------------------------------------- -r1511228 | mmartinec | 2013-08-07 09:42:12 +0000 (Wed, 07 Aug 2013) | 1 -line - - Bug 6965: BayesStore/Redis: dealing with server restarts and -out-of-lockstep protocol ------------------------------------------------------------------------- -r1511161 | spamassassin_role | 2013-08-07 02:58:08 +0000 (Wed, 07 Aug -2013) | 1 line - - updated scores for revision 1510884 active rules added since last -mass-check ------------------------------------------------------------------------- -r1510849 | spamassassin_role | 2013-08-06 02:57:58 +0000 (Tue, 06 Aug -2013) | 1 line - - updated scores for revision 1510387 active rules added since last -mass-check ------------------------------------------------------------------------- -r1510367 | spamassassin_role | 2013-08-05 02:56:39 +0000 (Mon, 05 Aug -2013) | 1 line - - updated scores for revision 1510112 active rules added since last -mass-check ------------------------------------------------------------------------- -r1510092 | spamassassin_role | 2013-08-04 02:55:12 +0000 (Sun, 04 Aug -2013) | 1 line - - updated scores for revision 1509942 active rules added since last -mass-check ------------------------------------------------------------------------- -r1510081 | jhardin | 2013-08-03 23:49:58 +0000 (Sat, 03 Aug 2013) | 1 line - - Add REMOVE_YEAHNET ------------------------------------------------------------------------- -r1509936 | spamassassin_role | 2013-08-03 03:37:56 +0000 (Sat, 03 Aug -2013) | 1 line - - updated scores for revision 1509581 active rules added since last -mass-check ------------------------------------------------------------------------- -r1509526 | spamassassin_role | 2013-08-02 03:32:41 +0000 (Fri, 02 Aug -2013) | 1 line - - updated scores for revision 1509123 active rules added since last -mass-check ------------------------------------------------------------------------- -r1509074 | spamassassin_role | 2013-08-01 03:25:29 +0000 (Thu, 01 Aug -2013) | 1 line - - updated scores for revision 1508773 active rules added since last -mass-check ------------------------------------------------------------------------- -r1508715 | spamassassin_role | 2013-07-31 03:24:30 +0000 (Wed, 31 Jul -2013) | 1 line - - updated scores for revision 1508341 active rules added since last -mass-check ------------------------------------------------------------------------- -r1508562 | mmartinec | 2013-07-30 18:05:45 +0000 (Tue, 30 Jul 2013) | 1 -line - - Bug 6962: Implement the missing dump_db_toks() to Redis bayes backend -(used by sa-learn --dump) ------------------------------------------------------------------------- -r1508283 | spamassassin_role | 2013-07-30 03:19:47 +0000 (Tue, 30 Jul -2013) | 1 line - - updated scores for revision 1507974 active rules added since last -mass-check ------------------------------------------------------------------------- -r1507887 | spamassassin_role | 2013-07-29 03:21:33 +0000 (Mon, 29 Jul -2013) | 1 line - - updated scores for revision 1507771 active rules added since last -mass-check ------------------------------------------------------------------------- -r1507886 | kmcgrail | 2013-07-29 02:54:55 +0000 (Mon, 29 Jul 2013) | 1 -line - - ASF Rules for the Sober Worm in 2005. Added to Sandbox to memorialize -and check with auto-promote if they have any merit. ------------------------------------------------------------------------- -r1507755 | spamassassin_role | 2013-07-28 03:34:19 +0000 (Sun, 28 Jul -2013) | 1 line - - updated scores for revision 1507597 active rules added since last -mass-check ------------------------------------------------------------------------- -r1507568 | spamassassin_role | 2013-07-27 03:16:34 +0000 (Sat, 27 Jul -2013) | 1 line - - updated scores for revision 1507218 active rules added since last -mass-check ------------------------------------------------------------------------- -r1507538 | mmartinec | 2013-07-27 00:26:35 +0000 (Sat, 27 Jul 2013) | 1 -line - - Plugin/ImageInfo.pm: avoid warnings: Use of uninitialized value in lc at -/usr/local/lib/perl5/site_perl/5.18.0/Mail/SpamAssassin/Plugin/ImageInfo.p -m line 231. ------------------------------------------------------------------------- -r1507375 | mmartinec | 2013-07-26 17:21:53 +0000 (Fri, 26 Jul 2013) | 1 -line - - timing report: increase display format to 1 decimal place for times -between 2 and 5 ms ------------------------------------------------------------------------- -r1507298 | mmartinec | 2013-07-26 12:47:06 +0000 (Fri, 26 Jul 2013) | 1 -line - - Redis.pm documentation touch ------------------------------------------------------------------------- -r1507183 | spamassassin_role | 2013-07-26 03:12:11 +0000 (Fri, 26 Jul -2013) | 1 line - - updated scores for revision 1506846 active rules added since last -mass-check ------------------------------------------------------------------------- -r1507148 | mmartinec | 2013-07-25 22:51:46 +0000 (Thu, 25 Jul 2013) | 1 -line - - Bug 6959 - Malformed UTF-8 character in transliteration at DnsResolver.pm ------------------------------------------------------------------------- -r1505887 | spamassassin_role | 2013-07-23 02:58:56 +0000 (Tue, 23 Jul -2013) | 1 line - - updated scores for revision 1505627 active rules added since last -mass-check ------------------------------------------------------------------------- -r1505585 | spamassassin_role | 2013-07-22 03:07:36 +0000 (Mon, 22 Jul -2013) | 1 line - - updated scores for revision 1505312 active rules added since last -mass-check ------------------------------------------------------------------------- -r1505254 | spamassassin_role | 2013-07-21 03:02:55 +0000 (Sun, 21 Jul -2013) | 1 line - - updated scores for revision 1505109 active rules added since last -mass-check ------------------------------------------------------------------------- -r1505080 | spamassassin_role | 2013-07-20 03:00:07 +0000 (Sat, 20 Jul -2013) | 1 line - - updated scores for revision 1504803 active rules added since last -mass-check ------------------------------------------------------------------------- -r1504752 | spamassassin_role | 2013-07-19 03:02:48 +0000 (Fri, 19 Jul -2013) | 1 line - - updated scores for revision 1504391 active rules added since last -mass-check ------------------------------------------------------------------------- -r1504390 | axb | 2013-07-18 08:46:38 +0000 (Thu, 18 Jul 2013) | 1 line - - added util_rb_3tld en.alibaba.com ------------------------------------------------------------------------- -r1504348 | spamassassin_role | 2013-07-18 03:00:55 +0000 (Thu, 18 Jul -2013) | 1 line - - updated scores for revision 1504054 active rules added since last -mass-check ------------------------------------------------------------------------- -r1504135 | axb | 2013-07-17 13:47:21 +0000 (Wed, 17 Jul 2013) | 1 line - - uridnsbl_skip_domain local.cf ------------------------------------------------------------------------- -r1503981 | spamassassin_role | 2013-07-17 03:14:45 +0000 (Wed, 17 Jul -2013) | 1 line - - updated scores for revision 1503617 active rules added since last -mass-check ------------------------------------------------------------------------- -r1503547 | spamassassin_role | 2013-07-16 02:56:24 +0000 (Tue, 16 Jul -2013) | 1 line - - updated scores for revision 1503139 active rules added since last -mass-check ------------------------------------------------------------------------- -r1503105 | spamassassin_role | 2013-07-15 03:10:43 +0000 (Mon, 15 Jul -2013) | 1 line - - updated scores for revision 1502947 active rules added since last -mass-check ------------------------------------------------------------------------- -r1502931 | spamassassin_role | 2013-07-14 03:03:58 +0000 (Sun, 14 Jul -2013) | 1 line - - updated scores for revision 1502764 active rules added since last -mass-check ------------------------------------------------------------------------- -r1502738 | spamassassin_role | 2013-07-13 02:55:43 +0000 (Sat, 13 Jul -2013) | 1 line - - updated scores for revision 1501677 active rules added since last -mass-check ------------------------------------------------------------------------- -r1502236 | jhardin | 2013-07-11 14:35:47 +0000 (Thu, 11 Jul 2013) | 1 line - - More FP avoidance & score limits ------------------------------------------------------------------------- -r1502140 | axb | 2013-07-11 07:59:36 +0000 (Thu, 11 Jul 2013) | 1 line - - added if/endif for DNSEval ------------------------------------------------------------------------- -r1502139 | axb | 2013-07-11 07:57:43 +0000 (Thu, 11 Jul 2013) | 2 lines - - removed obsolete rule publish entries - Bug 6958 - ------------------------------------------------------------------------- -r1501225 | mmartinec | 2013-07-09 12:40:15 +0000 (Tue, 09 Jul 2013) | 1 -line - - Bug 6956: Bayes/Redis/Lua buglet and speedup ------------------------------------------------------------------------- -r1500360 | spamassassin_role | 2013-07-07 02:54:55 +0000 (Sun, 07 Jul -2013) | 1 line - - updated scores for revision 1500228 active rules added since last -mass-check ------------------------------------------------------------------------- -r1500193 | spamassassin_role | 2013-07-06 02:55:10 +0000 (Sat, 06 Jul -2013) | 1 line - - updated scores for revision 1499946 active rules added since last -mass-check ------------------------------------------------------------------------- -r1500141 | khopesh | 2013-07-05 21:45:24 +0000 (Fri, 05 Jul 2013) | 1 line - - finally removing + Fix warnings on Windows platform in 3.4 - bug 7259 ------------------------------------------------------------------------ -r1499625 | spamassassin_role | 2013-07-04 02:55:39 +0000 (Thu, 04 Jul -2013) | 1 line - - updated scores for revision 1499267 active rules added since last -mass-check ------------------------------------------------------------------------- -r1499184 | spamassassin_role | 2013-07-03 02:55:08 +0000 (Wed, 03 Jul -2013) | 1 line - - updated scores for revision 1498840 active rules added since last -mass-check ------------------------------------------------------------------------- -r1498762 | spamassassin_role | 2013-07-02 02:58:43 +0000 (Tue, 02 Jul -2013) | 1 line - - updated scores for revision 1498303 active rules added since last -mass-check ------------------------------------------------------------------------- -r1498211 | spamassassin_role | 2013-07-01 02:59:53 +0000 (Mon, 01 Jul -2013) | 1 line - - updated scores for revision 1498070 active rules added since last -mass-check ------------------------------------------------------------------------- -r1498204 | mmartinec | 2013-07-01 01:43:59 +0000 (Mon, 01 Jul 2013) | 1 -line - - heavy editing on PROPOSED-3.4.0.txt, please re-edit as you see fit ------------------------------------------------------------------------- -r1498053 | spamassassin_role | 2013-06-30 03:00:08 +0000 (Sun, 30 Jun -2013) | 1 line - - updated scores for revision 1497991 active rules added since last -mass-check ------------------------------------------------------------------------- -r1497979 | spamassassin_role | 2013-06-29 02:59:08 +0000 (Sat, 29 Jun -2013) | 1 line - - updated scores for revision 1497685 active rules added since last -mass-check ------------------------------------------------------------------------- -r1497974 | jhardin | 2013-06-29 01:54:12 +0000 (Sat, 29 Jun 2013) | 1 line - - Add SEO_REGISTER ------------------------------------------------------------------------- -r1497634 | spamassassin_role | 2013-06-28 02:55:29 +0000 (Fri, 28 Jun -2013) | 1 line - - updated scores for revision 1497245 active rules added since last -mass-check ------------------------------------------------------------------------- -r1497196 | spamassassin_role | 2013-06-27 02:55:20 +0000 (Thu, 27 Jun -2013) | 1 line - - updated scores for revision 1496832 active rules added since last -mass-check ------------------------------------------------------------------------- -r1497083 | mmartinec | 2013-06-26 20:37:10 +0000 (Wed, 26 Jun 2013) | 1 -line - - Bug 6949: BSD/OS failures: fix t/bayesdbm_flock.t: learner leaves timer -running, which can abort sa-learn test runs longer than 10 seconds, -resulting in a test failure ------------------------------------------------------------------------- -r1497026 | mmartinec | 2013-06-26 17:54:58 +0000 (Wed, 26 Jun 2013) | 1 -line - - Bug 6949: BSD/OS failures: work around a missing support for -AI_ADDRCONFIG flag and peerhostname() method ------------------------------------------------------------------------- -r1496720 | spamassassin_role | 2013-06-26 03:02:49 +0000 (Wed, 26 Jun -2013) | 1 line - - updated scores for revision 1496382 active rules added since last -mass-check ------------------------------------------------------------------------- -r1496674 | jhardin | 2013-06-25 23:40:48 +0000 (Tue, 25 Jun 2013) | 1 line - - Add BODY_URI_ONLY ------------------------------------------------------------------------- -r1496342 | spamassassin_role | 2013-06-25 03:00:28 +0000 (Tue, 25 Jun -2013) | 1 line - - updated scores for revision 1495960 active rules added since last -mass-check ------------------------------------------------------------------------- -r1495910 | spamassassin_role | 2013-06-24 02:58:14 +0000 (Mon, 24 Jun -2013) | 1 line - - updated scores for revision 1495800 active rules added since last -mass-check ------------------------------------------------------------------------- -r1495790 | spamassassin_role | 2013-06-23 02:58:25 +0000 (Sun, 23 Jun -2013) | 1 line - - updated scores for revision 1495693 active rules added since last -mass-check ------------------------------------------------------------------------- -r1495785 | mmartinec | 2013-06-23 00:16:35 +0000 (Sun, 23 Jun 2013) | 1 -line - - Bug 6948: t/sa_compile.t test on OpenBSD 5.3 fails due to a wrong option -to gunzip ------------------------------------------------------------------------- -r1495659 | spamassassin_role | 2013-06-22 02:57:51 +0000 (Sat, 22 Jun -2013) | 1 line - - updated scores for revision 1495333 active rules added since last -mass-check ------------------------------------------------------------------------- -r1495638 | mmartinec | 2013-06-21 23:39:19 +0000 (Fri, 21 Jun 2013) | 1 -line - - Bug 6945: sa-learn dies on non-ASCII characters in Message-ID ------------------------------------------------------------------------- -r1495637 | mmartinec | 2013-06-21 23:38:19 +0000 (Fri, 21 Jun 2013) | 1 -line - - Bug 6945 - fix a taint bug in dbg() call ------------------------------------------------------------------------- -r1495521 | mmartinec | 2013-06-21 17:54:50 +0000 (Fri, 21 Jun 2013) | 1 -line - - folded-in unfinished additional text into PROPOSED-3.4.0.txt, limit line -length to 75 chars ------------------------------------------------------------------------- -r1495509 | kmcgrail | 2013-06-21 16:54:50 +0000 (Fri, 21 Jun 2013) | 1 -line - - Added note re: Sendmail bug with DKIM ------------------------------------------------------------------------- -r1495507 | mmartinec | 2013-06-21 16:49:48 +0000 (Fri, 21 Jun 2013) | 1 -line - - Bug 6947: test t/dcc.t fails because of old DCC_CHECK rule description -in t/data/01_test_rules.cf ------------------------------------------------------------------------- -r1495486 | kmcgrail | 2013-06-21 15:55:56 +0000 (Fri, 21 Jun 2013) | 1 -line - - Removed VERSION string from several pm files per bug 6422 ------------------------------------------------------------------------- -r1495485 | kmcgrail | 2013-06-21 15:54:43 +0000 (Fri, 21 Jun 2013) | 1 -line - - Small formatting change ------------------------------------------------------------------------- -r1495274 | spamassassin_role | 2013-06-21 02:56:24 +0000 (Fri, 21 Jun -2013) | 1 line - - updated scores for revision 1494891 active rules added since last -mass-check ------------------------------------------------------------------------- -r1495148 | kmcgrail | 2013-06-20 19:42:12 +0000 (Thu, 20 Jun 2013) | 1 -line - - Added new md5 and sha1 signs to announcement ------------------------------------------------------------------------- -r1495133 | kmcgrail | 2013-06-20 19:06:12 +0000 (Thu, 20 Jun 2013) | 1 -line - - preparing to release 3.4.0-rc2 ------------------------------------------------------------------------- -r1494842 | spamassassin_role | 2013-06-20 03:06:23 +0000 (Thu, 20 Jun -2013) | 1 line - - updated scores for revision 1494509 active rules added since last -mass-check ------------------------------------------------------------------------- -r1494756 | kmcgrail | 2013-06-19 19:50:04 +0000 (Wed, 19 Jun 2013) | 1 -line - - Small nitpicks on announcement ------------------------------------------------------------------------- -r1494741 | axb | 2013-06-19 19:13:54 +0000 (Wed, 19 Jun 2013) | 1 line - - added link to http://redis.io/ ------------------------------------------------------------------------- -r1494740 | axb | 2013-06-19 19:12:47 +0000 (Wed, 19 Jun 2013) | 1 line - - capitalized some "redis" ------------------------------------------------------------------------- -r1494692 | kmcgrail | 2013-06-19 16:50:46 +0000 (Wed, 19 Jun 2013) | 1 -line - - more Bayes msg_id clarification ------------------------------------------------------------------------- -r1494688 | mmartinec | 2013-06-19 16:43:03 +0000 (Wed, 19 Jun 2013) | 1 -line - - edits on PROPOSED-3.4.0.txt ------------------------------------------------------------------------- -r1494626 | kmcgrail | 2013-06-19 13:56:35 +0000 (Wed, 19 Jun 2013) | 1 -line - - Added note about Bayes msg_id calculation to proposed announcement ------------------------------------------------------------------------- -r1494424 | spamassassin_role | 2013-06-19 02:56:41 +0000 (Wed, 19 Jun -2013) | 1 line - - updated scores for revision 1494068 active rules added since last -mass-check ------------------------------------------------------------------------- -r1494371 | mmartinec | 2013-06-18 23:20:40 +0000 (Tue, 18 Jun 2013) | 1 -line - - Bug 6942 - Redis bayes storage module - robustness: treat as -disconnected on failure; get_storage_variables: only fetch variables -which are actually needed ------------------------------------------------------------------------- -r1494210 | jhardin | 2013-06-18 17:12:10 +0000 (Tue, 18 Jun 2013) | 1 line - - Tune HTML gibberish rules, add score limits ------------------------------------------------------------------------- -r1494159 | mmartinec | 2013-06-18 14:57:39 +0000 (Tue, 18 Jun 2013) | 1 -line - - Bug 6942 - Redis bayes storage module - fix database restore/init ------------------------------------------------------------------------- -r1494155 | mmartinec | 2013-06-18 14:25:49 +0000 (Tue, 18 Jun 2013) | 1 -line - - Bug 6942: Redis bayes storage - fix a non-Lua compatibility case ------------------------------------------------------------------------- -r1494138 | mmartinec | 2013-06-18 14:05:39 +0000 (Tue, 18 Jun 2013) | 1 -line - - updated a comment ------------------------------------------------------------------------- -r1494137 | mmartinec | 2013-06-18 13:55:21 +0000 (Tue, 18 Jun 2013) | 1 -line - - Bug 6942: Redis bayes storage - replace packed s/h counts with redis -hashes ------------------------------------------------------------------------- -r1494013 | kmcgrail | 2013-06-18 03:19:54 +0000 (Tue, 18 Jun 2013) | 1 -line - - Proposed 3.4.0 announcement ------------------------------------------------------------------------- -r1494007 | kmcgrail | 2013-06-18 03:17:34 +0000 (Tue, 18 Jun 2013) | 1 -line - - more cleanup on build process ------------------------------------------------------------------------- -r1493990 | kmcgrail | 2013-06-18 03:00:43 +0000 (Tue, 18 Jun 2013) | 1 -line - - preparing to release 3.4.0-rc1 ------------------------------------------------------------------------- -r1493989 | spamassassin_role | 2013-06-18 02:58:43 +0000 (Tue, 18 Jun -2013) | 1 line - - updated scores for revision 1493684 active rules added since last -mass-check ------------------------------------------------------------------------- -r1493662 | axb | 2013-06-17 07:22:23 +0000 (Mon, 17 Jun 2013) | 1 line - - added AXB_XM_OL_122 ------------------------------------------------------------------------- -r1493629 | spamassassin_role | 2013-06-17 02:58:02 +0000 (Mon, 17 Jun -2013) | 1 line - - updated scores for revision 1493476 active rules added since last -mass-check ------------------------------------------------------------------------- -r1493444 | spamassassin_role | 2013-06-16 03:05:34 +0000 (Sun, 16 Jun -2013) | 1 line - - updated scores for revision 1493328 active rules added since last -mass-check ------------------------------------------------------------------------- -r1493443 | jhardin | 2013-06-16 02:24:47 +0000 (Sun, 16 Jun 2013) | 1 line - - Tweak STYLE_GIBBERISH ------------------------------------------------------------------------- -r1493297 | spamassassin_role | 2013-06-15 03:00:30 +0000 (Sat, 15 Jun -2013) | 1 line - - updated scores for revision 1492999 active rules added since last -mass-check ------------------------------------------------------------------------- -r1492936 | spamassassin_role | 2013-06-14 02:52:24 +0000 (Fri, 14 Jun -2013) | 1 line - - updated scores for revision 1492572 active rules added since last -mass-check ------------------------------------------------------------------------- -r1492519 | spamassassin_role | 2013-06-13 02:54:58 +0000 (Thu, 13 Jun -2013) | 1 line - - updated scores for revision 1492119 active rules added since last -mass-check ------------------------------------------------------------------------- -r1492036 | spamassassin_role | 2013-06-12 02:52:51 +0000 (Wed, 12 Jun -2013) | 1 line - - updated scores for revision 1491705 active rules added since last -mass-check ------------------------------------------------------------------------- -r1491679 | spamassassin_role | 2013-06-11 02:58:30 +0000 (Tue, 11 Jun -2013) | 1 line - - updated scores for revision 1491379 active rules added since last -mass-check ------------------------------------------------------------------------- -r1491330 | spamassassin_role | 2013-06-10 02:48:57 +0000 (Mon, 10 Jun -2013) | 1 line - - updated scores for revision 1491157 active rules added since last -mass-check ------------------------------------------------------------------------- -r1491131 | jhardin | 2013-06-09 03:17:57 +0000 (Sun, 09 Jun 2013) | 1 line - - Add "many one-word font changes" rule ------------------------------------------------------------------------- -r1491129 | spamassassin_role | 2013-06-09 02:53:38 +0000 (Sun, 09 Jun -2013) | 1 line - - updated scores for revision 1490936 active rules added since last -mass-check ------------------------------------------------------------------------- -r1490908 | spamassassin_role | 2013-06-08 02:54:59 +0000 (Sat, 08 Jun -2013) | 1 line - - updated scores for revision 1490545 active rules added since last -mass-check ------------------------------------------------------------------------- -r1490499 | spamassassin_role | 2013-06-07 02:56:29 +0000 (Fri, 07 Jun -2013) | 1 line - - updated scores for revision 1490200 active rules added since last -mass-check ------------------------------------------------------------------------- -r1490496 | jhardin | 2013-06-07 02:10:57 +0000 (Fri, 07 Jun 2013) | 1 line - - Reduce score to reduce FPs if rDNS fails ------------------------------------------------------------------------- -r1490223 | mmartinec | 2013-06-06 10:11:48 +0000 (Thu, 06 Jun 2013) | 1 -line - - use common style in comments: backwards compatible -> backward -compatible; see Wikipedia and -http://itknowledgeexchange.techtarget.com/writing-for-business/backward-co -mpatible-or-backwards-compatible/ ------------------------------------------------------------------------- -r1490113 | spamassassin_role | 2013-06-06 02:52:54 +0000 (Thu, 06 Jun -2013) | 1 line - - updated scores for revision 1489743 active rules added since last -mass-check ------------------------------------------------------------------------- -r1489870 | mmartinec | 2013-06-05 13:48:07 +0000 (Wed, 05 Jun 2013) | 1 -line - - docs fix / update ------------------------------------------------------------------------- -r1489688 | spamassassin_role | 2013-06-05 02:56:52 +0000 (Wed, 05 Jun -2013) | 1 line - - updated scores for revision 1489338 active rules added since last -mass-check ------------------------------------------------------------------------- -r1489277 | spamassassin_role | 2013-06-04 02:56:30 +0000 (Tue, 04 Jun -2013) | 1 line - - updated scores for revision 1488897 active rules added since last -mass-check ------------------------------------------------------------------------- -r1489055 | mmartinec | 2013-06-03 16:30:33 +0000 (Mon, 03 Jun 2013) | 1 -line - - Bug 6943: Introducing CONF_TYPE_DURATION data type ------------------------------------------------------------------------- -r1488831 | spamassassin_role | 2013-06-03 02:58:56 +0000 (Mon, 03 Jun -2013) | 1 line - - updated scores for revision 1488650 active rules added since last -mass-check ------------------------------------------------------------------------- -r1488760 | jhardin | 2013-06-02 18:38:33 +0000 (Sun, 02 Jun 2013) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1488696 | sidney | 2013-06-02 12:39:27 +0000 (Sun, 02 Jun 2013) | 1 line - - Bug 6939 - Clarify error log message ------------------------------------------------------------------------- -r1488641 | spamassassin_role | 2013-06-02 02:56:02 +0000 (Sun, 02 Jun -2013) | 1 line - - updated scores for revision 1488494 active rules added since last -mass-check ------------------------------------------------------------------------- -r1488555 | jhardin | 2013-06-01 18:42:29 +0000 (Sat, 01 Jun 2013) | 1 line - - Tweak CN_B2B_SPAMMER ------------------------------------------------------------------------- -r1488550 | hege | 2013-06-01 17:28:16 +0000 (Sat, 01 Jun 2013) | 3 lines - - Bug 6942: Fix bayes_seen_ttl option - - ------------------------------------------------------------------------- -r1488285 | hege | 2013-05-31 15:55:46 +0000 (Fri, 31 May 2013) | 3 lines - - Bug 6942: Fix things when bayes_auto_expire not set - - ------------------------------------------------------------------------- -r1488251 | mmartinec | 2013-05-31 14:32:37 +0000 (Fri, 31 May 2013) | 1 -line - - Bug 6942: Redis bayes storage module fixes and updates (part 2) ------------------------------------------------------------------------- -r1488244 | mmartinec | 2013-05-31 14:17:49 +0000 (Fri, 31 May 2013) | 1 -line - - Bug 6942: Redis bayes storage module fixes and updates ------------------------------------------------------------------------- -r1487968 | mmartinec | 2013-05-30 18:49:17 +0000 (Thu, 30 May 2013) | 1 -line - - mostly cosmetics: comments, quoting, unnecessary time() call ------------------------------------------------------------------------- -r1487178 | mmartinec | 2013-05-29 00:51:58 +0000 (Wed, 29 May 2013) | 1 -line - - Bug 6937: 3.3.2 and Perl 5.18.0: Altering hash requires restarting loop -else UNDEFINED behavior ------------------------------------------------------------------------- -r1486468 | jhardin | 2013-05-26 20:28:24 +0000 (Sun, 26 May 2013) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1486279 | spamassassin_role | 2013-05-25 02:54:47 +0000 (Sat, 25 May -2013) | 1 line - - updated scores for revision 1485974 active rules added since last -mass-check ------------------------------------------------------------------------- -r1485926 | spamassassin_role | 2013-05-24 03:00:26 +0000 (Fri, 24 May -2013) | 1 line - - updated scores for revision 1485615 active rules added since last -mass-check ------------------------------------------------------------------------- -r1485550 | spamassassin_role | 2013-05-23 02:55:53 +0000 (Thu, 23 May -2013) | 1 line - - updated scores for revision 1485119 active rules added since last -mass-check ------------------------------------------------------------------------- -r1485035 | spamassassin_role | 2013-05-22 02:57:25 +0000 (Wed, 22 May -2013) | 1 line - - updated scores for revision 1484700 active rules added since last -mass-check ------------------------------------------------------------------------- -r1484487 | mmartinec | 2013-05-20 14:26:28 +0000 (Mon, 20 May 2013) | 1 -line - - compatibility: only specify socket option V6Only with IO::Socket modules -which support it ------------------------------------------------------------------------- -r1484471 | axb | 2013-05-20 13:16:24 +0000 (Mon, 20 May 2013) | 6 lines - - added - util_rb_3tld mobile.web.tr - - util_rb_2tld ucoz.com - util_rb_2tld ucoz.net - ------------------------------------------------------------------------- -r1484372 | spamassassin_role | 2013-05-20 03:01:53 +0000 (Mon, 20 May -2013) | 1 line - - updated scores for revision 1484242 active rules added since last -mass-check ------------------------------------------------------------------------- -r1484219 | spamassassin_role | 2013-05-19 03:03:33 +0000 (Sun, 19 May -2013) | 1 line - - updated scores for revision 1484071 active rules added since last -mass-check ------------------------------------------------------------------------- -r1484048 | spamassassin_role | 2013-05-18 03:04:59 +0000 (Sat, 18 May -2013) | 1 line - - updated scores for revision 1483693 active rules added since last -mass-check ------------------------------------------------------------------------- -r1483832 | kmcgrail | 2013-05-17 14:48:41 +0000 (Fri, 17 May 2013) | 1 -line - - adding ceiling on TVD_FROM_1 score ------------------------------------------------------------------------- -r1483638 | spamassassin_role | 2013-05-17 03:05:15 +0000 (Fri, 17 May -2013) | 1 line - - updated scores for revision 1483252 active rules added since last -mass-check ------------------------------------------------------------------------- -r1483175 | spamassassin_role | 2013-05-16 03:04:17 +0000 (Thu, 16 May -2013) | 1 line - - updated scores for revision 1482727 active rules added since last -mass-check ------------------------------------------------------------------------- -r1482664 | spamassassin_role | 2013-05-15 03:01:37 +0000 (Wed, 15 May -2013) | 1 line - - updated scores for revision 1482254 active rules added since last -mass-check ------------------------------------------------------------------------- -r1482178 | spamassassin_role | 2013-05-14 03:05:09 +0000 (Tue, 14 May -2013) | 1 line - - updated scores for revision 1481731 active rules added since last -mass-check ------------------------------------------------------------------------- -r1481692 | spamassassin_role | 2013-05-13 03:04:25 +0000 (Mon, 13 May -2013) | 1 line - - updated scores for revision 1481494 active rules added since last -mass-check ------------------------------------------------------------------------- -r1481467 | spamassassin_role | 2013-05-12 03:01:33 +0000 (Sun, 12 May -2013) | 1 line - - updated scores for revision 1481272 active rules added since last -mass-check ------------------------------------------------------------------------- -r1481252 | spamassassin_role | 2013-05-11 03:10:19 +0000 (Sat, 11 May -2013) | 1 line - - updated scores for revision 1480936 active rules added since last -mass-check ------------------------------------------------------------------------- -r1480866 | spamassassin_role | 2013-05-10 03:09:00 +0000 (Fri, 10 May -2013) | 1 line - - updated scores for revision 1480571 active rules added since last -mass-check ------------------------------------------------------------------------- -r1480521 | spamassassin_role | 2013-05-09 03:07:39 +0000 (Thu, 09 May -2013) | 1 line - - updated scores for revision 1480184 active rules added since last -mass-check ------------------------------------------------------------------------- -r1480150 | spamassassin_role | 2013-05-08 03:04:06 +0000 (Wed, 08 May -2013) | 1 line - - updated scores for revision 1479814 active rules added since last -mass-check ------------------------------------------------------------------------- -r1480148 | kmcgrail | 2013-05-08 01:27:31 +0000 (Wed, 08 May 2013) | 1 -line - - Uncommented the MW_SURBL rules for bug 6853 ------------------------------------------------------------------------- -r1479755 | spamassassin_role | 2013-05-07 03:06:43 +0000 (Tue, 07 May -2013) | 1 line - - updated scores for revision 1479498 active rules added since last -mass-check ------------------------------------------------------------------------- -r1479461 | spamassassin_role | 2013-05-06 03:03:11 +0000 (Mon, 06 May -2013) | 1 line - - updated scores for revision 1479264 active rules added since last -mass-check ------------------------------------------------------------------------- -r1479231 | spamassassin_role | 2013-05-05 03:07:25 +0000 (Sun, 05 May -2013) | 1 line - - updated scores for revision 1479059 active rules added since last -mass-check ------------------------------------------------------------------------- -r1479033 | spamassassin_role | 2013-05-04 03:08:25 +0000 (Sat, 04 May -2013) | 1 line - - updated scores for revision 1478671 active rules added since last -mass-check ------------------------------------------------------------------------- -r1478630 | spamassassin_role | 2013-05-03 03:11:50 +0000 (Fri, 03 May -2013) | 1 line - - updated scores for revision 1478301 active rules added since last -mass-check ------------------------------------------------------------------------- -r1478255 | spamassassin_role | 2013-05-02 03:09:16 +0000 (Thu, 02 May -2013) | 1 line - - updated scores for revision 1477933 active rules added since last -mass-check ------------------------------------------------------------------------- -r1477902 | spamassassin_role | 2013-05-01 03:07:39 +0000 (Wed, 01 May -2013) | 1 line - - updated scores for revision 1477509 active rules added since last -mass-check ------------------------------------------------------------------------- -r1477459 | spamassassin_role | 2013-04-30 03:06:26 +0000 (Tue, 30 Apr -2013) | 1 line - - updated scores for revision 1476922 active rules added since last -mass-check ------------------------------------------------------------------------- -r1476882 | spamassassin_role | 2013-04-29 03:11:43 +0000 (Mon, 29 Apr -2013) | 1 line - - updated scores for revision 1476734 active rules added since last -mass-check ------------------------------------------------------------------------- -r1476711 | spamassassin_role | 2013-04-28 03:05:31 +0000 (Sun, 28 Apr -2013) | 1 line - - updated scores for revision 1476532 active rules added since last -mass-check ------------------------------------------------------------------------- -r1476471 | spamassassin_role | 2013-04-27 03:01:30 +0000 (Sat, 27 Apr -2013) | 1 line - - updated scores for revision 1476108 active rules added since last -mass-check ------------------------------------------------------------------------- -r1476031 | spamassassin_role | 2013-04-26 03:01:34 +0000 (Fri, 26 Apr -2013) | 1 line - - updated scores for revision 1475675 active rules added since last -mass-check ------------------------------------------------------------------------- -r1475932 | mmartinec | 2013-04-25 19:56:34 +0000 (Thu, 25 Apr 2013) | 1 -line - - Bug 6930: sa-update unable to deal with a previous failure (empty -mirrors file) ------------------------------------------------------------------------- -r1471818 | spamassassin_role | 2013-04-25 02:55:54 +0000 (Thu, 25 Apr -2013) | 1 line - - updated scores for revision 1471296 active rules added since last -mass-check ------------------------------------------------------------------------- -r1471605 | mmartinec | 2013-04-24 19:22:30 +0000 (Wed, 24 Apr 2013) | 6 +r1839641 | gbechis | 2018-08-30 07:32:41 +0000 (Thu, 30 Aug 2018) | 2 lines - sa-update: use the same decision logic as in spamd for choosing -IO::Socket::IP vs - IO::Socket::INET6, prefer the former for consistency, let the -underlying module - pick the right address family instead of forcing it through -local_address(); - added some debugging and cosmetics - - ------------------------------------------------------------------------- -r1471231 | spamassassin_role | 2013-04-24 02:53:42 +0000 (Wed, 24 Apr -2013) | 1 line - - updated scores for revision 1470853 active rules added since last -mass-check ------------------------------------------------------------------------- -r1470796 | spamassassin_role | 2013-04-23 03:00:27 +0000 (Tue, 23 Apr -2013) | 1 line - - updated scores for revision 1470411 active rules added since last -mass-check ------------------------------------------------------------------------- -r1470257 | spamassassin_role | 2013-04-21 02:55:53 +0000 (Sun, 21 Apr -2013) | 1 line - - updated scores for revision 1470125 active rules added since last -mass-check ------------------------------------------------------------------------- -r1470099 | spamassassin_role | 2013-04-20 02:51:48 +0000 (Sat, 20 Apr -2013) | 1 line - - updated scores for revision 1469745 active rules added since last -mass-check ------------------------------------------------------------------------- -r1469670 | spamassassin_role | 2013-04-19 02:52:59 +0000 (Fri, 19 Apr -2013) | 1 line - - updated scores for revision 1469227 active rules added since last -mass-check ------------------------------------------------------------------------- -r1469142 | spamassassin_role | 2013-04-18 02:50:45 +0000 (Thu, 18 Apr -2013) | 1 line - - updated scores for revision 1468800 active rules added since last -mass-check ------------------------------------------------------------------------- -r1468853 | mmartinec | 2013-04-17 11:59:22 +0000 (Wed, 17 Apr 2013) | 1 -line - - Bug 6927: IP_PRIVATE should also include shared address space (used in -CGN, RFC 6598) ------------------------------------------------------------------------- -r1468729 | spamassassin_role | 2013-04-17 02:52:42 +0000 (Wed, 17 Apr -2013) | 1 line - - updated scores for revision 1468327 active rules added since last -mass-check ------------------------------------------------------------------------- -r1468294 | spamassassin_role | 2013-04-16 02:48:17 +0000 (Tue, 16 Apr -2013) | 1 line - - updated scores for revision 1467901 active rules added since last -mass-check ------------------------------------------------------------------------- -r1467846 | spamassassin_role | 2013-04-15 02:50:18 +0000 (Mon, 15 Apr -2013) | 1 line - - updated scores for revision 1467748 active rules added since last -mass-check ------------------------------------------------------------------------- -r1467720 | spamassassin_role | 2013-04-14 02:50:49 +0000 (Sun, 14 Apr -2013) | 1 line - - updated scores for revision 1467575 active rules added since last -mass-check ------------------------------------------------------------------------- -r1466584 | mmartinec | 2013-04-10 17:41:57 +0000 (Wed, 10 Apr 2013) | 1 -line - - adjust parsing of zone_id in scoped IPv6 address according to RFC 6874 ------------------------------------------------------------------------- -r1466502 | mmartinec | 2013-04-10 14:59:47 +0000 (Wed, 10 Apr 2013) | 1 -line - - updated document sources in comments (RFC 5735 etc) ------------------------------------------------------------------------- -r1465343 | axb | 2013-04-07 08:20:27 +0000 (Sun, 07 Apr 2013) | 1 line - - added: util_rb_3tld user.icpnet.pl ------------------------------------------------------------------------- -r1464265 | spamassassin_role | 2013-04-04 03:01:51 +0000 (Thu, 04 Apr -2013) | 1 line - - updated scores for revision 1463883 active rules added since last -mass-check ------------------------------------------------------------------------- -r1463659 | kmcgrail | 2013-04-02 18:23:01 +0000 (Tue, 02 Apr 2013) | 1 -line - - Fix for MIRRORED.BY file being 0 byte ------------------------------------------------------------------------- -r1462871 | spamassassin_role | 2013-03-31 03:05:28 +0000 (Sun, 31 Mar -2013) | 1 line - - updated scores for revision 1462718 active rules added since last -mass-check ------------------------------------------------------------------------- -r1462870 | jhardin | 2013-03-31 01:36:24 +0000 (Sun, 31 Mar 2013) | 1 line - - More FP avoidance, add scored URI_BITLY, test a scored ADV_FEE_2 rule ------------------------------------------------------------------------- -r1462694 | spamassassin_role | 2013-03-30 03:09:59 +0000 (Sat, 30 Mar -2013) | 1 line - - updated scores for revision 1462428 active rules added since last -mass-check ------------------------------------------------------------------------- -r1462388 | spamassassin_role | 2013-03-29 03:10:36 +0000 (Fri, 29 Mar -2013) | 1 line - - updated scores for revision 1461994 active rules added since last -mass-check ------------------------------------------------------------------------- -r1462345 | smf | 2013-03-28 23:10:50 +0000 (Thu, 28 Mar 2013) | 1 line - - Sandbox updates ------------------------------------------------------------------------- -r1462236 | mmartinec | 2013-03-28 17:50:20 +0000 (Thu, 28 Mar 2013) | 1 -line - - t/spamd_hup.t: slightly increase timeout to let the test pass on a -Raspberry PI; t/re_base_extraction.t: fix a typo ------------------------------------------------------------------------- -r1461939 | spamassassin_role | 2013-03-28 03:18:42 +0000 (Thu, 28 Mar -2013) | 1 line - - updated scores for revision 1461449 active rules added since last -mass-check ------------------------------------------------------------------------- -r1461397 | spamassassin_role | 2013-03-27 03:12:58 +0000 (Wed, 27 Mar -2013) | 1 line - - updated scores for revision 1461022 active rules added since last -mass-check ------------------------------------------------------------------------- -r1461367 | smf | 2013-03-26 23:09:24 +0000 (Tue, 26 Mar 2013) | 1 line - - Sandbox updates ------------------------------------------------------------------------- -r1460958 | spamassassin_role | 2013-03-26 03:19:18 +0000 (Tue, 26 Mar -2013) | 1 line - - updated scores for revision 1460549 active rules added since last -mass-check ------------------------------------------------------------------------- -r1460940 | smf | 2013-03-26 00:45:41 +0000 (Tue, 26 Mar 2013) | 1 line - - Sandbox updates ------------------------------------------------------------------------- -r1460516 | spamassassin_role | 2013-03-25 03:22:47 +0000 (Mon, 25 Mar -2013) | 1 line - - updated scores for revision 1460285 active rules added since last -mass-check ------------------------------------------------------------------------- -r1460411 | smf | 2013-03-24 15:56:21 +0000 (Sun, 24 Mar 2013) | 1 line - - More sandbox updates... ------------------------------------------------------------------------- -r1460409 | smf | 2013-03-24 15:55:46 +0000 (Sun, 24 Mar 2013) | 1 line - - Sandbox updates ------------------------------------------------------------------------- -r1460257 | spamassassin_role | 2013-03-24 03:16:20 +0000 (Sun, 24 Mar -2013) | 1 line - - updated scores for revision 1460120 active rules added since last -mass-check ------------------------------------------------------------------------- -r1460247 | jhardin | 2013-03-24 00:44:46 +0000 (Sun, 24 Mar 2013) | 1 line - - Add scoring rule for __FOUND_YOU ------------------------------------------------------------------------- -r1460087 | spamassassin_role | 2013-03-23 03:45:35 +0000 (Sat, 23 Mar -2013) | 1 line - - updated scores for revision 1459667 active rules added since last -mass-check ------------------------------------------------------------------------- -r1460025 | smf | 2013-03-22 22:02:23 +0000 (Fri, 22 Mar 2013) | 1 line - - Sandbox updates ------------------------------------------------------------------------- -r1459738 | kmcgrail | 2013-03-22 11:57:51 +0000 (Fri, 22 Mar 2013) | 1 -line - - lower score for masscheck ceiling on CK_HELO_DYNAMIC_SPLIT_IP ------------------------------------------------------------------------- -r1459615 | spamassassin_role | 2013-03-22 03:35:58 +0000 (Fri, 22 Mar -2013) | 1 line - - updated scores for revision 1459191 active rules added since last -mass-check ------------------------------------------------------------------------- -r1459558 | smf | 2013-03-21 22:31:29 +0000 (Thu, 21 Mar 2013) | 1 line - - Updated sandbox rules ------------------------------------------------------------------------- -r1459144 | spamassassin_role | 2013-03-21 03:45:56 +0000 (Thu, 21 Mar -2013) | 1 line - - updated scores for revision 1458688 active rules added since last -mass-check ------------------------------------------------------------------------- -r1458700 | axb | 2013-03-20 09:27:23 +0000 (Wed, 20 Mar 2013) | 1 line - - removed "no hit" rules ------------------------------------------------------------------------- -r1458630 | spamassassin_role | 2013-03-20 04:05:37 +0000 (Wed, 20 Mar -2013) | 1 line - - updated scores for revision 1458179 active rules added since last -mass-check ------------------------------------------------------------------------- -r1458609 | smf | 2013-03-20 02:01:36 +0000 (Wed, 20 Mar 2013) | 1 line - - Disabled shortener test ------------------------------------------------------------------------- -r1458606 | smf | 2013-03-20 01:40:06 +0000 (Wed, 20 Mar 2013) | 1 line - - Sandbox updates ------------------------------------------------------------------------- -r1458605 | smf | 2013-03-20 01:37:52 +0000 (Wed, 20 Mar 2013) | 1 line - - Add test rules for bug 6919 ------------------------------------------------------------------------- -r1458260 | smf | 2013-03-19 12:56:48 +0000 (Tue, 19 Mar 2013) | 1 line - - Fix sandbox rule ------------------------------------------------------------------------- -r1458124 | spamassassin_role | 2013-03-19 04:18:34 +0000 (Tue, 19 Mar -2013) | 1 line - - updated scores for revision 1457672 active rules added since last -mass-check ------------------------------------------------------------------------- -r1458092 | smf | 2013-03-19 02:00:35 +0000 (Tue, 19 Mar 2013) | 2 lines - - Remove superceded rules from sandbox - ------------------------------------------------------------------------- -r1458091 | smf | 2013-03-19 01:59:42 +0000 (Tue, 19 Mar 2013) | 2 lines - - Sandbox updates - ------------------------------------------------------------------------- -r1458081 | smf | 2013-03-19 01:24:48 +0000 (Tue, 19 Mar 2013) | 2 lines - - Updated sandbox rules - ------------------------------------------------------------------------- -r1457635 | spamassassin_role | 2013-03-18 04:17:01 +0000 (Mon, 18 Mar -2013) | 1 line - - updated scores for revision 1457395 active rules added since last -mass-check ------------------------------------------------------------------------- -r1457369 | spamassassin_role | 2013-03-17 04:04:36 +0000 (Sun, 17 Mar -2013) | 1 line - - updated scores for revision 1457225 active rules added since last -mass-check ------------------------------------------------------------------------- -r1457195 | spamassassin_role | 2013-03-16 03:40:05 +0000 (Sat, 16 Mar -2013) | 1 line - - updated scores for revision 1456805 active rules added since last -mass-check ------------------------------------------------------------------------- -r1456965 | mmartinec | 2013-03-15 14:24:20 +0000 (Fri, 15 Mar 2013) | 1 -line - - spamd.raw: avoid an unnecessary complication creating a socket through -new_io_socket_inetx ------------------------------------------------------------------------- -r1456757 | spamassassin_role | 2013-03-15 03:52:11 +0000 (Fri, 15 Mar -2013) | 1 line - - updated scores for revision 1456366 active rules added since last -mass-check ------------------------------------------------------------------------- -r1456318 | spamassassin_role | 2013-03-14 03:44:02 +0000 (Thu, 14 Mar -2013) | 1 line - - updated scores for revision 1455841 active rules added since last -mass-check ------------------------------------------------------------------------- -r1455787 | spamassassin_role | 2013-03-13 03:42:11 +0000 (Wed, 13 Mar -2013) | 1 line - - updated scores for revision 1455441 active rules added since last -mass-check ------------------------------------------------------------------------- -r1455728 | smf | 2013-03-12 21:59:52 +0000 (Tue, 12 Mar 2013) | 2 lines - - Updated sandbox rules - ------------------------------------------------------------------------- -r1455399 | spamassassin_role | 2013-03-12 03:50:24 +0000 (Tue, 12 Mar -2013) | 1 line - - updated scores for revision 1455057 active rules added since last -mass-check ------------------------------------------------------------------------- -r1454987 | spamassassin_role | 2013-03-11 03:33:41 +0000 (Mon, 11 Mar -2013) | 1 line - - updated scores for revision 1454805 active rules added since last -mass-check ------------------------------------------------------------------------- -r1454886 | jhardin | 2013-03-10 17:50:51 +0000 (Sun, 10 Mar 2013) | 1 line - - Add rule for invalid .. in URI domain (DNS error) ------------------------------------------------------------------------- -r1454780 | spamassassin_role | 2013-03-10 03:31:25 +0000 (Sun, 10 Mar -2013) | 1 line - - updated scores for revision 1454674 active rules added since last -mass-check ------------------------------------------------------------------------- -r1454759 | jhardin | 2013-03-09 19:31:51 +0000 (Sat, 09 Mar 2013) | 1 line - - More FP avoidance, tweak CN_B2B ------------------------------------------------------------------------- -r1454648 | spamassassin_role | 2013-03-09 03:17:27 +0000 (Sat, 09 Mar -2013) | 1 line - - updated scores for revision 1454288 active rules added since last -mass-check ------------------------------------------------------------------------- -r1454230 | spamassassin_role | 2013-03-08 03:17:30 +0000 (Fri, 08 Mar -2013) | 1 line - - updated scores for revision 1453735 active rules added since last -mass-check ------------------------------------------------------------------------- -r1453674 | spamassassin_role | 2013-03-07 03:23:57 +0000 (Thu, 07 Mar -2013) | 1 line - - updated scores for revision 1453215 active rules added since last -mass-check ------------------------------------------------------------------------- -r1453409 | mmartinec | 2013-03-06 16:37:06 +0000 (Wed, 06 Mar 2013) | 1 -line - - typo in a comment ------------------------------------------------------------------------- -r1453407 | mmartinec | 2013-03-06 16:31:47 +0000 (Wed, 06 Mar 2013) | 1 -line - - Bug 6915: PerMsgStatus::get_tag() enhancement and optimization ------------------------------------------------------------------------- -r1453263 | axb | 2013-03-06 10:13:33 +0000 (Wed, 06 Mar 2013) | 1 line - - disabled 0 hit rules and/or bad performers, abandoned rules ------------------------------------------------------------------------- -r1453242 | axb | 2013-03-06 09:45:59 +0000 (Wed, 06 Mar 2013) | 1 line - - added meta dependencies from hstern's sandbox ------------------------------------------------------------------------- -r1453241 | axb | 2013-03-06 09:42:59 +0000 (Wed, 06 Mar 2013) | 1 line - - added meta dependencies from hstern's sanbox ------------------------------------------------------------------------- -r1453154 | spamassassin_role | 2013-03-06 03:09:40 +0000 (Wed, 06 Mar -2013) | 1 line - - updated scores for revision 1452698 active rules added since last -mass-check ------------------------------------------------------------------------- -r1452948 | mmartinec | 2013-03-05 19:05:18 +0000 (Tue, 05 Mar 2013) | 1 -line - - trivial details in comment ------------------------------------------------------------------------- -r1452876 | kmcgrail | 2013-03-05 16:13:45 +0000 (Tue, 05 Mar 2013) | 1 -line - - small document change to remove NJABL as it is shutdown and change to -priorities.t to use a different RBL for the priorities testing. ------------------------------------------------------------------------- -r1452805 | axb | 2013-03-05 14:15:07 +0000 (Tue, 05 Mar 2013) | 1 line - - disabled ancient primitive "replica" rule ------------------------------------------------------------------------- -r1452785 | axb | 2013-03-05 13:07:59 +0000 (Tue, 05 Mar 2013) | 3 lines - - URIBL_SBL_A rule is in 25_uribl.cf - no need for redundant rule in sandbox - disabled - pending removal after SA 3.4 release ------------------------------------------------------------------------- -r1452758 | axb | 2013-03-05 12:07:59 +0000 (Tue, 05 Mar 2013) | 1 line - - Moved rules to 20_dnsbl_tests.cf for permanent SA default inclusion ------------------------------------------------------------------------- -r1452757 | axb | 2013-03-05 12:07:03 +0000 (Tue, 05 Mar 2013) | 2 lines - - moved RCVD_IN_RP_ rules to 20_dnsbl_tests.cf - original sandbox rules have been commented out. ------------------------------------------------------------------------- -r1452748 | axb | 2013-03-05 11:36:44 +0000 (Tue, 05 Mar 2013) | 1 line - - removed rfc-ignorant.org comments ------------------------------------------------------------------------- -r1452649 | spamassassin_role | 2013-03-05 03:22:12 +0000 (Tue, 05 Mar -2013) | 1 line - - updated scores for revision 1452211 active rules added since last -mass-check ------------------------------------------------------------------------- -r1452566 | axb | 2013-03-04 22:24:04 +0000 (Mon, 04 Mar 2013) | 1 line - - removed all references to NJABL ------------------------------------------------------------------------- -r1452565 | axb | 2013-03-04 22:22:47 +0000 (Mon, 04 Mar 2013) | 1 line - - removed references to NJABL ------------------------------------------------------------------------- -r1452564 | axb | 2013-03-04 22:22:13 +0000 (Mon, 04 Mar 2013) | 1 line - - removed references to NJABL ------------------------------------------------------------------------- -r1452176 | spamassassin_role | 2013-03-04 03:13:25 +0000 (Mon, 04 Mar -2013) | 1 line - - updated scores for revision 1452019 active rules added since last -mass-check ------------------------------------------------------------------------- -r1452116 | jhardin | 2013-03-03 19:57:15 +0000 (Sun, 03 Mar 2013) | 1 line - - NJABL DNSBL is gone ------------------------------------------------------------------------- -r1451999 | spamassassin_role | 2013-03-03 03:20:11 +0000 (Sun, 03 Mar -2013) | 1 line - - updated scores for revision 1451851 active rules added since last -mass-check ------------------------------------------------------------------------- -r1451823 | spamassassin_role | 2013-03-02 03:06:36 +0000 (Sat, 02 Mar -2013) | 1 line - - updated scores for revision 1451526 active rules added since last -mass-check ------------------------------------------------------------------------- -r1451822 | jhardin | 2013-03-02 02:19:39 +0000 (Sat, 02 Mar 2013) | 1 line - - __MANY_RECIPS too easily bypassed by long email addresses ------------------------------------------------------------------------- -r1451776 | axb | 2013-03-01 23:36:46 +0000 (Fri, 01 Mar 2013) | 1 line - - Bug 6913; Disabled rules/scores for njabl.org ------------------------------------------------------------------------- -r1451464 | spamassassin_role | 2013-03-01 03:17:29 +0000 (Fri, 01 Mar -2013) | 1 line - - updated scores for revision 1451140 active rules added since last -mass-check ------------------------------------------------------------------------- -r1451451 | mmartinec | 2013-03-01 01:24:04 +0000 (Fri, 01 Mar 2013) | 1 -line - - Bug 3062: SpamAssassin should be "locale safe" ------------------------------------------------------------------------- -r1451317 | mmartinec | 2013-02-28 19:54:25 +0000 (Thu, 28 Feb 2013) | 1 -line - - Bug 6388: Patch to allow administrator control over failure to retrieve -userprefs from LDAP or SQL ------------------------------------------------------------------------- -r1451230 | mmartinec | 2013-02-28 15:20:09 +0000 (Thu, 28 Feb 2013) | 1 -line - - related to Bug 6841: testing for PF_INET and PF_INET6 availability in -spamd allows automatic choice of default protocol families for listen -sockets (like on an IPv6-only host); documentation details; more -informative debugging ------------------------------------------------------------------------- -r1451170 | axb | 2013-02-28 10:38:37 +0000 (Thu, 28 Feb 2013) | 1 line - - added mykolab.com ------------------------------------------------------------------------- -r1451083 | spamassassin_role | 2013-02-28 03:15:10 +0000 (Thu, 28 Feb -2013) | 1 line - - updated scores for revision 1450680 active rules added since last -mass-check ------------------------------------------------------------------------- -r1450914 | mmartinec | 2013-02-27 18:52:50 +0000 (Wed, 27 Feb 2013) | 1 -line - - Bug 6901: untie db first to fix "bayes db version 0 is not able to be -used, aborting!" problem ------------------------------------------------------------------------- -r1450858 | mmartinec | 2013-02-27 17:21:53 +0000 (Wed, 27 Feb 2013) | 1 -line - - related to Bug 6841: decouple choosing a Socket vs. Socket6 module from -choosing an IO::Socket::{IP,INET6,INET} module, improve compatibility -with old versions of these modules ------------------------------------------------------------------------- -r1450588 | spamassassin_role | 2013-02-27 03:17:27 +0000 (Wed, 27 Feb -2013) | 1 line - - updated scores for revision 1450078 active rules added since last -mass-check ------------------------------------------------------------------------- -r1450292 | mmartinec | 2013-02-26 17:25:11 +0000 (Tue, 26 Feb 2013) | 1 -line - - updated a comment: add a ref to Net::DNS bug [rt.cpan.org #83451] ------------------------------------------------------------------------- -r1450204 | jhardin | 2013-02-26 15:07:20 +0000 (Tue, 26 Feb 2013) | 1 line - - Tweak email phishing rules ------------------------------------------------------------------------- -r1450002 | spamassassin_role | 2013-02-26 03:02:17 +0000 (Tue, 26 Feb -2013) | 1 line - - updated scores for revision 1449620 active rules added since last -mass-check ------------------------------------------------------------------------- -r1449825 | kmcgrail | 2013-02-25 19:36:42 +0000 (Mon, 25 Feb 2013) | 1 -line - - small change to the README name ------------------------------------------------------------------------- -r1449583 | jhardin | 2013-02-25 03:47:47 +0000 (Mon, 25 Feb 2013) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1449580 | spamassassin_role | 2013-02-25 03:11:36 +0000 (Mon, 25 Feb -2013) | 1 line - - updated scores for revision 1449446 active rules added since last -mass-check ------------------------------------------------------------------------- -r1449530 | kmcgrail | 2013-02-24 19:21:44 +0000 (Sun, 24 Feb 2013) | 1 -line - - added ceiling for score on SHORTENED_URL_HREF ------------------------------------------------------------------------- -r1449434 | spamassassin_role | 2013-02-24 03:10:37 +0000 (Sun, 24 Feb -2013) | 1 line - - updated scores for revision 1449282 active rules added since last -mass-check ------------------------------------------------------------------------- -r1449427 | jhardin | 2013-02-23 23:57:02 +0000 (Sat, 23 Feb 2013) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1449266 | spamassassin_role | 2013-02-23 03:27:09 +0000 (Sat, 23 Feb -2013) | 1 line - - updated scores for revision 1448941 active rules added since last -mass-check ------------------------------------------------------------------------- -r1449099 | jhardin | 2013-02-22 16:23:59 +0000 (Fri, 22 Feb 2013) | 1 line - - Tweak lottery rules ------------------------------------------------------------------------- -r1449098 | jhardin | 2013-02-22 16:23:01 +0000 (Fri, 22 Feb 2013) | 1 line - - Fix missing ifplugin ------------------------------------------------------------------------- -r1448885 | spamassassin_role | 2013-02-22 03:13:22 +0000 (Fri, 22 Feb -2013) | 1 line - - updated scores for revision 1448547 active rules added since last -mass-check ------------------------------------------------------------------------- -r1448607 | mmartinec | 2013-02-21 11:47:22 +0000 (Thu, 21 Feb 2013) | 1 -line - - Bug 6910: changed a default to edns=4096 (What DNS buffer size (EDNS) - -or to implement a DNS over TCP fallback); adjust Plugin::DKIM accordingly ------------------------------------------------------------------------- -r1448575 | mmartinec | 2013-02-21 11:02:25 +0000 (Thu, 21 Feb 2013) | 1 -line - - avoid a warning: Use of uninitialized value in concatenation at -RelayCountry.pm line 78 ------------------------------------------------------------------------- -r1448566 | axb | 2013-02-21 10:09:10 +0000 (Thu, 21 Feb 2013) | 1 line - - cleanup zim.gov.zwpenmail.cc / removed dead domains ------------------------------------------------------------------------- -r1448500 | spamassassin_role | 2013-02-21 03:18:07 +0000 (Thu, 21 Feb -2013) | 1 line - - updated scores for revision 1448039 active rules added since last -mass-check ------------------------------------------------------------------------- -r1448183 | axb | 2013-02-20 14:34:49 +0000 (Wed, 20 Feb 2013) | 1 line - - fixes as per Bug 6903 ------------------------------------------------------------------------- -r1447990 | spamassassin_role | 2013-02-20 03:15:23 +0000 (Wed, 20 Feb -2013) | 1 line - - updated scores for revision 1447627 active rules added since last -mass-check ------------------------------------------------------------------------- -r1447944 | axb | 2013-02-19 22:30:33 +0000 (Tue, 19 Feb 2013) | 1 line - - added home.pl ------------------------------------------------------------------------- -r1447937 | jhardin | 2013-02-19 21:50:04 +0000 (Tue, 19 Feb 2013) | 1 line - - Tweak email phishing rules ------------------------------------------------------------------------- -r1447855 | mmartinec | 2013-02-19 18:01:11 +0000 (Tue, 19 Feb 2013) | 1 -line - - propagate __alarm__ignore__ signal from eval_checks too, quenches two -more warnings ------------------------------------------------------------------------- -r1447741 | axb | 2013-02-19 14:51:10 +0000 (Tue, 19 Feb 2013) | 1 line - - Several updates as per Bug # 6903, etc. ------------------------------------------------------------------------- -r1447580 | spamassassin_role | 2013-02-19 03:32:25 +0000 (Tue, 19 Feb -2013) | 1 line - - updated scores for revision 1447148 active rules added since last -mass-check ------------------------------------------------------------------------- -r1447572 | mmartinec | 2013-02-19 02:09:47 +0000 (Tue, 19 Feb 2013) | 1 -line - - resignal __alarm__ignore__ if caught in an unrelated eval; wrap -DnsResolver select() in eval to avoid "(in cleanup) __alarm__ignore__" -warnings; avoid "Use of uninitialized value" in AsyncLoop ------------------------------------------------------------------------- -r1447530 | jhardin | 2013-02-18 22:56:44 +0000 (Mon, 18 Feb 2013) | 1 line - - Tweak CN_B2B_SPAMMER ------------------------------------------------------------------------- -r1447126 | spamassassin_role | 2013-02-18 03:06:55 +0000 (Mon, 18 Feb -2013) | 1 line - - updated scores for revision 1447002 active rules added since last -mass-check ------------------------------------------------------------------------- -r1447117 | mmartinec | 2013-02-18 01:24:49 +0000 (Mon, 18 Feb 2013) | 1 -line - - got_hit() should clear the %{$self->{test_log_msgs}} even on early -returns (like on multiple hits of a rule) ------------------------------------------------------------------------- -r1447063 | jhardin | 2013-02-17 19:51:47 +0000 (Sun, 17 Feb 2013) | 1 line + typo in man page - URI_DBL_SUBDOM not performing well, disable ------------------------------------------------------------------------ -r1446994 | spamassassin_role | 2013-02-17 03:22:42 +0000 (Sun, 17 Feb -2013) | 1 line - - updated scores for revision 1446852 active rules added since last -mass-check ------------------------------------------------------------------------- -r1446924 | jhardin | 2013-02-16 19:10:00 +0000 (Sat, 16 Feb 2013) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1446839 | spamassassin_role | 2013-02-16 03:11:03 +0000 (Sat, 16 Feb -2013) | 1 line - - updated scores for revision 1446474 active rules added since last -mass-check ------------------------------------------------------------------------- -r1446438 | spamassassin_role | 2013-02-15 03:16:09 +0000 (Fri, 15 Feb -2013) | 1 line - - updated scores for revision 1446069 active rules added since last -mass-check ------------------------------------------------------------------------- -r1446278 | mmartinec | 2013-02-14 17:28:05 +0000 (Thu, 14 Feb 2013) | 9 +r1839639 | gbechis | 2018-08-30 07:30:54 +0000 (Thu, 30 Aug 2018) | 2 lines - - change description of a dns_options EDNS option, add alias EDNS0 - - ignore trailing dot in a domain name which sometimes still creep in - - change word 'response' -> 'reply' in DNS debugging messages (RFC 1035) - - test for truncated DNS reply, issue an info-level warning - - debugging: trying to track down a bug in Net::DNS which can - return a DNS packet with an empty question section - - Submitted by: Mark - ------------------------------------------------------------------------- -r1446038 | spamassassin_role | 2013-02-14 03:16:06 +0000 (Thu, 14 Feb -2013) | 1 line - - updated scores for revision 1445505 active rules added since last -mass-check ------------------------------------------------------------------------- -r1446031 | jhardin | 2013-02-14 01:49:57 +0000 (Thu, 14 Feb 2013) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1446030 | jhardin | 2013-02-14 01:49:27 +0000 (Thu, 14 Feb 2013) | 1 line - - Disable DECEASED_NO_ML, not worthy ------------------------------------------------------------------------- -r1445466 | spamassassin_role | 2013-02-13 03:17:32 +0000 (Wed, 13 Feb -2013) | 1 line - - updated scores for revision 1445060 active rules added since last -mass-check ------------------------------------------------------------------------- -r1445419 | jhardin | 2013-02-12 22:35:53 +0000 (Tue, 12 Feb 2013) | 1 line - - TBIRD_SPOOF too dangerous ------------------------------------------------------------------------- -r1445270 | jhardin | 2013-02-12 17:10:58 +0000 (Tue, 12 Feb 2013) | 1 line - - Reduce TBIRD_SPOOF score limit ------------------------------------------------------------------------- -r1445186 | mmartinec | 2013-02-12 14:41:08 +0000 (Tue, 12 Feb 2013) | 1 -line - - Plugin/DCC.pm typo in a comment ------------------------------------------------------------------------- -r1445185 | mmartinec | 2013-02-12 14:39:14 +0000 (Tue, 12 Feb 2013) | 1 -line - - t/rcvd_parser.t cosmetic detail (added a comma -> smaller diff when -adding new cases) ------------------------------------------------------------------------- -r1445025 | spamassassin_role | 2013-02-12 03:16:18 +0000 (Tue, 12 Feb -2013) | 1 line - - updated scores for revision 1444680 active rules added since last -mass-check ------------------------------------------------------------------------- -r1445019 | jhardin | 2013-02-12 02:27:08 +0000 (Tue, 12 Feb 2013) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1444945 | jhardin | 2013-02-11 20:23:01 +0000 (Mon, 11 Feb 2013) | 1 line - - tweak __UNSUBSCRIBE_ES ------------------------------------------------------------------------- -r1444909 | jhardin | 2013-02-11 18:10:45 +0000 (Mon, 11 Feb 2013) | 1 line - - More FP avoidance, more portuguese email phishing variants ------------------------------------------------------------------------- -r1444651 | spamassassin_role | 2013-02-11 03:13:54 +0000 (Mon, 11 Feb -2013) | 1 line - - updated scores for revision 1444510 active rules added since last -mass-check ------------------------------------------------------------------------- -r1444476 | spamassassin_role | 2013-02-10 03:15:11 +0000 (Sun, 10 Feb -2013) | 1 line - - updated scores for revision 1444342 active rules added since last -mass-check ------------------------------------------------------------------------- -r1444329 | jhardin | 2013-02-09 05:19:32 +0000 (Sat, 09 Feb 2013) | 1 line - - Tune phishing rules; ensure __RP_MATCHES_RCVD always exists ------------------------------------------------------------------------- -r1444319 | spamassassin_role | 2013-02-09 03:08:13 +0000 (Sat, 09 Feb -2013) | 1 line - - updated scores for revision 1443890 active rules added since last -mass-check ------------------------------------------------------------------------- -r1444287 | jhardin | 2013-02-08 23:34:12 +0000 (Fri, 08 Feb 2013) | 1 line - - FP reduction on LOTSA_MONEY when the money isn't really that much ------------------------------------------------------------------------- -r1444177 | jhardin | 2013-02-08 18:20:15 +0000 (Fri, 08 Feb 2013) | 1 line - - Add __UNSUBSCRIBE_PT ------------------------------------------------------------------------- -r1444143 | kmcgrail | 2013-02-08 16:57:13 +0000 (Fri, 08 Feb 2013) | 1 -line - - disabling extra debugs from bug 6905 ------------------------------------------------------------------------- -r1444091 | kmcgrail | 2013-02-08 16:17:14 +0000 (Fri, 08 Feb 2013) | 1 -line - - More debugs for dependency checks ------------------------------------------------------------------------- -r1444069 | kmcgrail | 2013-02-08 15:27:08 +0000 (Fri, 08 Feb 2013) | 1 -line - - Reverting change to regexp that should not have been committed ------------------------------------------------------------------------- -r1444065 | kmcgrail | 2013-02-08 15:24:52 +0000 (Fri, 08 Feb 2013) | 1 -line - - DEBUG added to Makefile for input due to hang report ------------------------------------------------------------------------- -r1443831 | spamassassin_role | 2013-02-08 03:07:51 +0000 (Fri, 08 Feb -2013) | 1 line - - updated scores for revision 1443355 active rules added since last -mass-check ------------------------------------------------------------------------- -r1443824 | jhardin | 2013-02-08 02:16:31 +0000 (Fri, 08 Feb 2013) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1443822 | jhardin | 2013-02-08 01:57:04 +0000 (Fri, 08 Feb 2013) | 1 line - - Add TBIRD_SPOOF ------------------------------------------------------------------------- -r1443820 | jhardin | 2013-02-08 01:45:26 +0000 (Fri, 08 Feb 2013) | 1 line - - Added TBIRD_SUSP_MSGID based on imcomplete overlap analysis - revert ------------------------------------------------------------------------- -r1443818 | jhardin | 2013-02-08 01:42:08 +0000 (Fri, 08 Feb 2013) | 1 line - - More FP avoidance; tweak YOUR_PHOTOS; add TBIRD_SUSP_MSGID ------------------------------------------------------------------------- -r1443305 | jhardin | 2013-02-07 03:15:01 +0000 (Thu, 07 Feb 2013) | 1 line - - More FP reduction, fix some spanish-language UTF8 errors ------------------------------------------------------------------------- -r1443302 | spamassassin_role | 2013-02-07 03:12:51 +0000 (Thu, 07 Feb -2013) | 1 line - - updated scores for revision 1442869 active rules added since last -mass-check ------------------------------------------------------------------------- -r1443294 | mmartinec | 2013-02-07 02:05:47 +0000 (Thu, 07 Feb 2013) | 1 -line - - Plugin/DKIM.pm: adapt to a last-minute change in Mail::DKIM before its -0.40 release, [rt.cpan.org #83170], [rt.cpan.org #80425] ------------------------------------------------------------------------- -r1443004 | mmartinec | 2013-02-06 15:12:51 +0000 (Wed, 06 Feb 2013) | 1 -line - - Now that Mail::DKIM 0.40 is coming out, adapt the DKIM plugin to use the -official way of supplying a DNS resolver object to Mail::DKIM ------------------------------------------------------------------------- -r1442836 | spamassassin_role | 2013-02-06 03:06:50 +0000 (Wed, 06 Feb -2013) | 1 line - - updated scores for revision 1442501 active rules added since last -mass-check ------------------------------------------------------------------------- -r1442802 | jhardin | 2013-02-05 23:53:04 +0000 (Tue, 05 Feb 2013) | 1 line - - Bug 6094:FUZZY_AMBIEN FP on "tambien" (es) ------------------------------------------------------------------------- -r1442651 | jhardin | 2013-02-05 16:28:51 +0000 (Tue, 05 Feb 2013) | 1 line - - More FP reduction, some new test rules for URIs and low-contrast HTML ------------------------------------------------------------------------- -r1442459 | spamassassin_role | 2013-02-05 03:11:32 +0000 (Tue, 05 Feb -2013) | 1 line - - updated scores for revision 1442048 active rules added since last -mass-check ------------------------------------------------------------------------- -r1442180 | mmartinec | 2013-02-04 17:03:04 +0000 (Mon, 04 Feb 2013) | 1 -line - - reduce default EDNS0 packet size from 1280 to 1240 -(draft-andrews-dnsext-udp-fragmentation) ------------------------------------------------------------------------- -r1442145 | mmartinec | 2013-02-04 14:58:06 +0000 (Mon, 04 Feb 2013) | 1 -line - - dns0x20 and domain name case sensitivity tweaks, added an explanation ------------------------------------------------------------------------- -r1442014 | spamassassin_role | 2013-02-04 02:59:47 +0000 (Mon, 04 Feb -2013) | 1 line - - updated scores for revision 1441874 active rules added since last -mass-check ------------------------------------------------------------------------- -r1441851 | spamassassin_role | 2013-02-03 03:10:50 +0000 (Sun, 03 Feb -2013) | 1 line - - updated scores for revision 1441715 active rules added since last -mass-check ------------------------------------------------------------------------- -r1441795 | jhardin | 2013-02-02 19:43:10 +0000 (Sat, 02 Feb 2013) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1441694 | spamassassin_role | 2013-02-02 03:13:25 +0000 (Sat, 02 Feb -2013) | 1 line - - updated scores for revision 1441344 active rules added since last -mass-check ------------------------------------------------------------------------- -r1441551 | mmartinec | 2013-02-01 17:40:33 +0000 (Fri, 01 Feb 2013) | 1 -line - - partly revert previous debugging change, too much noise at the info level ------------------------------------------------------------------------- -r1441536 | mmartinec | 2013-02-01 17:10:13 +0000 (Fri, 01 Feb 2013) | 1 -line - - Bug 6547: let Client.pm use the same logic as DnsResolver.pm in deciding -which of the IO modules to use (IO::Socket::IP preferred to older -IO::Socket::INET6, which in turn is preferred to IPv4-only -IO::Socket::INET) ------------------------------------------------------------------------- -r1441511 | mmartinec | 2013-02-01 16:27:50 +0000 (Fri, 01 Feb 2013) | 1 -line - - documentation detail, debugging detail ------------------------------------------------------------------------- -r1441489 | jhardin | 2013-02-01 15:32:13 +0000 (Fri, 01 Feb 2013) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1441301 | spamassassin_role | 2013-02-01 03:15:14 +0000 (Fri, 01 Feb -2013) | 1 line - - updated scores for revision 1440879 active rules added since last -mass-check ------------------------------------------------------------------------- -r1440828 | spamassassin_role | 2013-01-31 03:05:37 +0000 (Thu, 31 Jan -2013) | 1 line - - updated scores for revision 1440304 active rules added since last -mass-check ------------------------------------------------------------------------- -r1440823 | jhardin | 2013-01-31 02:53:14 +0000 (Thu, 31 Jan 2013) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1440261 | spamassassin_role | 2013-01-30 02:54:53 +0000 (Wed, 30 Jan -2013) | 1 line + Phishing plugin - updated scores for revision 1439791 active rules added since last -mass-check ------------------------------------------------------------------------ -r1440178 | jhardin | 2013-01-29 22:03:49 +0000 (Tue, 29 Jan 2013) | 1 line - - Tweak email phishing rules ------------------------------------------------------------------------- -r1439916 | mmartinec | 2013-01-29 14:48:16 +0000 (Tue, 29 Jan 2013) | 1 -line - - added a DNS check for multiple question sections, just in case ------------------------------------------------------------------------- -r1439884 | mmartinec | 2013-01-29 13:15:42 +0000 (Tue, 29 Jan 2013) | 1 -line - - Bug 6896: encode also nonprintables, just in case (Net::DNS -feature-proofing) ------------------------------------------------------------------------- -r1439747 | jhardin | 2013-01-29 05:33:00 +0000 (Tue, 29 Jan 2013) | 1 line - - More FP avoidance, Add scored versions of some promising subrules ------------------------------------------------------------------------- -r1439735 | spamassassin_role | 2013-01-29 03:06:49 +0000 (Tue, 29 Jan -2013) | 1 line - - updated scores for revision 1439302 active rules added since last -mass-check ------------------------------------------------------------------------- -r1439553 | jhardin | 2013-01-28 18:23:54 +0000 (Mon, 28 Jan 2013) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1439552 | mmartinec | 2013-01-28 18:20:18 +0000 (Mon, 28 Jan 2013) | 1 -line - - Bug 6896: DnsResolver.pm: encode characters above 0200 to prevent -Net::DNS 0.68 from interpreting these as an IDN domain name ------------------------------------------------------------------------- -r1439496 | jhardin | 2013-01-28 16:57:58 +0000 (Mon, 28 Jan 2013) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1439235 | spamassassin_role | 2013-01-28 03:11:46 +0000 (Mon, 28 Jan -2013) | 1 line - - updated scores for revision 1439040 active rules added since last -mass-check ------------------------------------------------------------------------- -r1439015 | spamassassin_role | 2013-01-27 03:11:44 +0000 (Sun, 27 Jan -2013) | 1 line - - updated scores for revision 1438865 active rules added since last -mass-check ------------------------------------------------------------------------- -r1438927 | jhardin | 2013-01-26 18:02:23 +0000 (Sat, 26 Jan 2013) | 1 line - - tweak email phishing rules - more polish variants; add "your photos" -rule; tweak "I'm not spam!" rule ------------------------------------------------------------------------- -r1438917 | jhardin | 2013-01-26 17:13:13 +0000 (Sat, 26 Jan 2013) | 1 line - - Tweak lotsa_money ------------------------------------------------------------------------- -r1438828 | spamassassin_role | 2013-01-26 03:11:39 +0000 (Sat, 26 Jan -2013) | 1 line - - updated scores for revision 1438389 active rules added since last -mass-check ------------------------------------------------------------------------- -r1438806 | mmartinec | 2013-01-26 01:13:09 +0000 (Sat, 26 Jan 2013) | 1 -line - - Bug 6899: more informative diagnostics in case of a DNS response with no -query section ------------------------------------------------------------------------- -r1438670 | mmartinec | 2013-01-25 19:53:04 +0000 (Fri, 25 Jan 2013) | 1 -line - - Bug 6896: encode/decode a DNS query according to RFC 1035 zone file -format as expected by Net::DNS API (what a terrible idea!), turn warning -into info() for unmatching DNS responses ------------------------------------------------------------------------- -r1438581 | mmartinec | 2013-01-25 16:39:27 +0000 (Fri, 25 Jan 2013) | 1 -line - - spelling (indefinite article usage) ------------------------------------------------------------------------- -r1438307 | spamassassin_role | 2013-01-25 03:15:45 +0000 (Fri, 25 Jan -2013) | 1 line - - updated scores for revision 1437901 active rules added since last -mass-check ------------------------------------------------------------------------- -r1437849 | spamassassin_role | 2013-01-24 03:11:52 +0000 (Thu, 24 Jan -2013) | 1 line - - updated scores for revision 1437299 active rules added since last -mass-check ------------------------------------------------------------------------- -r1437629 | mmartinec | 2013-01-23 19:05:24 +0000 (Wed, 23 Jan 2013) | 1 -line - - more informative warnings on dns socket troubles ------------------------------------------------------------------------- -r1437596 | mmartinec | 2013-01-23 17:40:55 +0000 (Wed, 23 Jan 2013) | 1 -line - - (adding a comment) ------------------------------------------------------------------------- -r1437595 | mmartinec | 2013-01-23 17:38:23 +0000 (Wed, 23 Jan 2013) | 1 -line - - Bug 6895" Avoid "Use of uninitialized value" warnings in DKIM plugin on -broken signatures - one more ------------------------------------------------------------------------- -r1437593 | mmartinec | 2013-01-23 17:34:35 +0000 (Wed, 23 Jan 2013) | 1 -line - - Bug 6895" Avoid "Use of uninitialized value" warnings in DKIM plugin on -broken signatures ------------------------------------------------------------------------- -r1437260 | spamassassin_role | 2013-01-23 03:07:14 +0000 (Wed, 23 Jan -2013) | 1 line - - updated scores for revision 1436801 active rules added since last -mass-check ------------------------------------------------------------------------- -r1436735 | spamassassin_role | 2013-01-22 03:17:17 +0000 (Tue, 22 Jan -2013) | 1 line - - updated scores for revision 1436227 active rules added since last -mass-check ------------------------------------------------------------------------- -r1436729 | kmcgrail | 2013-01-22 02:55:50 +0000 (Tue, 22 Jan 2013) | 1 -line - - Added some functions to debug hashes and arrays for test debugging, -rewrote rule_tests.t to work now that test_types is not cleared (bug -6893), fixed a few regression tests that were not up to date, commented -one regression test that is not working (bug 6894). ------------------------------------------------------------------------- -r1436374 | kmcgrail | 2013-01-21 14:36:59 +0000 (Mon, 21 Jan 2013) | 1 -line - - small tweak to remove stderr redir and debug ------------------------------------------------------------------------- -r1436371 | kmcgrail | 2013-01-21 14:33:20 +0000 (Mon, 21 Jan 2013) | 1 -line - - Added a test for autolearn ------------------------------------------------------------------------- -r1436363 | kmcgrail | 2013-01-21 14:20:20 +0000 (Mon, 21 Jan 2013) | 1 -line - - Made autolearn_force tests require DB_File so they pass on Jenkins and -fixed Manifest. Bug 5503. ------------------------------------------------------------------------- -r1436202 | kmcgrail | 2013-01-21 04:48:44 +0000 (Mon, 21 Jan 2013) | 1 -line - - cleaned up more with the autolearn_force code and worked on major -autolearn bug - bug 5503 ------------------------------------------------------------------------- -r1436171 | kmcgrail | 2013-01-21 03:41:58 +0000 (Mon, 21 Jan 2013) | 1 -line - - feature request for tflag autolearn_force to make the requirements less -stringent - bug 5503 ------------------------------------------------------------------------- -r1436154 | spamassassin_role | 2013-01-21 03:22:06 +0000 (Mon, 21 Jan -2013) | 1 line - - updated scores for revision 1435801 active rules added since last -mass-check ------------------------------------------------------------------------- -r1435923 | jhardin | 2013-01-20 19:28:57 +0000 (Sun, 20 Jan 2013) | 1 line - - Add some "ifplugin DKIM" directives that were overlooked ------------------------------------------------------------------------- -r1435781 | spamassassin_role | 2013-01-20 03:22:49 +0000 (Sun, 20 Jan -2013) | 1 line - - updated scores for revision 1435506 active rules added since last -mass-check ------------------------------------------------------------------------- -r1435646 | jhardin | 2013-01-19 19:38:08 +0000 (Sat, 19 Jan 2013) | 1 line - - Tweak lotsa_money ------------------------------------------------------------------------- -r1435483 | spamassassin_role | 2013-01-19 03:18:51 +0000 (Sat, 19 Jan -2013) | 1 line - - updated scores for revision 1435054 active rules added since last -mass-check ------------------------------------------------------------------------- -r1435404 | kmcgrail | 2013-01-18 22:59:05 +0000 (Fri, 18 Jan 2013) | 1 -line - - Preparing for release 3.4.0-pre3 ------------------------------------------------------------------------- -r1435395 | kmcgrail | 2013-01-18 22:47:35 +0000 (Fri, 18 Jan 2013) | 1 -line - - preparing to release 3.4.0-pre3 ------------------------------------------------------------------------- -r1435385 | kmcgrail | 2013-01-18 22:41:14 +0000 (Fri, 18 Jan 2013) | 1 -line - - bug 6891 - removed prototype on sub domain_to_search_list ------------------------------------------------------------------------- -r1435012 | spamassassin_role | 2013-01-18 03:11:34 +0000 (Fri, 18 Jan -2013) | 1 line - - updated scores for revision 1434591 active rules added since last -mass-check ------------------------------------------------------------------------- -r1434556 | jhardin | 2013-01-17 04:51:34 +0000 (Thu, 17 Jan 2013) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1434544 | spamassassin_role | 2013-01-17 03:18:52 +0000 (Thu, 17 Jan -2013) | 1 line - - updated scores for revision 1433857 active rules added since last -mass-check ------------------------------------------------------------------------- -r1434534 | kmcgrail | 2013-01-17 01:51:13 +0000 (Thu, 17 Jan 2013) | 1 -line - - Changes for t/whitelist_addrs.t to check for DB_File - bug 6884 ------------------------------------------------------------------------- -r1434367 | mmartinec | 2013-01-16 20:25:51 +0000 (Wed, 16 Jan 2013) | 1 -line - - Bug 6884, forgot to checkin t/uribl.t ------------------------------------------------------------------------- -r1434360 | mmartinec | 2013-01-16 20:13:47 +0000 (Wed, 16 Jan 2013) | 15 +r1839638 | gbechis | 2018-08-30 07:27:29 +0000 (Thu, 30 Aug 2018) | 6 lines - Bug 6884: - - a new subroutine AsyncLoop::bgsend_and_start_lookup() implements a - commonly used idiom of calling bgsend(), followed by start_lookup(), - while implementing a mechanism for grouping equal DNS queries, - simplifying several other code sections; - - rewrite URIDNSBL.pm to put the new mechanism to good use, - fixing the particular Bug 6884 and test 5 in t/uribl.t; - - fix the t/uribl.t, moving X_URIBL_FULL_NS from %patterns - to %anti_patterns; - - add a dns_query_restriction configuration option; - - some cosmetic edits, like renaming some variables for consistency. - - PR: 6884 - Submitted by: Mark.Martinec@ijs.si - ------------------------------------------------------------------------- -r1434118 | jhardin | 2013-01-16 19:18:07 +0000 (Wed, 16 Jan 2013) | 1 line - - tweak email phishing rules - add more brazilian variants ------------------------------------------------------------------------- -r1433811 | spamassassin_role | 2013-01-16 03:12:28 +0000 (Wed, 16 Jan -2013) | 1 line - - updated scores for revision 1433312 active rules added since last -mass-check ------------------------------------------------------------------------- -r1433273 | spamassassin_role | 2013-01-15 03:14:11 +0000 (Tue, 15 Jan -2013) | 1 line - - updated scores for revision 1432840 active rules added since last -mass-check ------------------------------------------------------------------------- -r1432793 | spamassassin_role | 2013-01-14 03:13:37 +0000 (Mon, 14 Jan -2013) | 1 line - - updated scores for revision 1432568 active rules added since last -mass-check ------------------------------------------------------------------------- -r1432750 | jhardin | 2013-01-13 22:03:44 +0000 (Sun, 13 Jan 2013) | 1 line - - Tune LOTSA_MONEY and email phishing, more FP avoidance ------------------------------------------------------------------------- -r1432712 | jhardin | 2013-01-13 19:25:27 +0000 (Sun, 13 Jan 2013) | 1 line - - Build destabilized by 'SPOOFED_URL_HOST depends on T_URL_SHORTENER which -is nonexistent' - split khopesh URL_SHORTENER into __subrule and scored -rule and fix dependencies to stabilize the build. KAM, darxus and Adam -please review these rules. Also, URL_SHORTENER is explicitly marked -'nopublish' so this problem should have manifested much earlier - -'nopublish' rules appear to still be leaking out. ------------------------------------------------------------------------- -r1432546 | jhardin | 2013-01-13 04:14:01 +0000 (Sun, 13 Jan 2013) | 1 line - - Split REMOTE_IMAGE into __REMOTE_IMAGE for use in metas ------------------------------------------------------------------------- -r1432544 | spamassassin_role | 2013-01-13 03:17:12 +0000 (Sun, 13 Jan -2013) | 1 line - - updated scores for revision 1432400 active rules added since last -mass-check ------------------------------------------------------------------------- -r1432496 | kmcgrail | 2013-01-12 20:01:49 +0000 (Sat, 12 Jan 2013) | 1 -line - - preparing to release 3.4.0-pre2 ------------------------------------------------------------------------- -r1432359 | mmartinec | 2013-01-12 02:28:13 +0000 (Sat, 12 Jan 2013) | 1 -line - - DnsResolver: prevent a failed or suppressed DNS query packet generation -from propagating unnecessarily ------------------------------------------------------------------------- -r1432293 | kmcgrail | 2013-01-11 21:33:16 +0000 (Fri, 11 Jan 2013) | 1 -line - - small clarification on docs for error codes ------------------------------------------------------------------------- -r1432200 | mmartinec | 2013-01-11 18:15:08 +0000 (Fri, 11 Jan 2013) | 1 -line - - Bug 6884: $pms->{test_log_msgs} is a hashref, not a hash; some -cosmetics and debugging in Plugin/URIDNSBL.pm ------------------------------------------------------------------------- -r1432196 | kmcgrail | 2013-01-11 17:56:42 +0000 (Fri, 11 Jan 2013) | 1 -line - - small update for dkim test rename ------------------------------------------------------------------------- -r1432192 | kmcgrail | 2013-01-11 17:48:17 +0000 (Fri, 11 Jan 2013) | 1 -line - - Prep for 3.4.0-pre2 ------------------------------------------------------------------------- -r1432188 | kmcgrail | 2013-01-11 17:45:53 +0000 (Fri, 11 Jan 2013) | 1 -line - - Switch to handling of Version in redis.pm - bug 6888 ------------------------------------------------------------------------- -r1432183 | kmcgrail | 2013-01-11 17:39:11 +0000 (Fri, 11 Jan 2013) | 1 -line + Add Mail::SpamAssassin::Plugin::Phishing + This phishing plugin finds uris used in phishing campaigns detected by + OpenPhish or PhishTank feeds. - replacing dkim test with dkim2 ------------------------------------------------------------------------- -r1432180 | kmcgrail | 2013-01-11 17:36:05 +0000 (Fri, 11 Jan 2013) | 1 -line + bz 7564 - removing dkim.t because test is replaced by dkim2.t ------------------------------------------------------------------------ -r1432178 | kmcgrail | 2013-01-11 17:35:02 +0000 (Fri, 11 Jan 2013) | 1 +r1839529 | kmcgrail | 2018-08-29 01:29:54 +0000 (Wed, 29 Aug 2018) | 1 line - Small cleanup that EX_TOOBIG is never used for spamd per bug 5412 + Fixing small perlcritic issue ------------------------------------------------------------------------ -r1431121 | kmcgrail | 2013-01-09 22:34:58 +0000 (Wed, 09 Jan 2013) | 1 +r1839517 | kmcgrail | 2018-08-29 00:27:22 +0000 (Wed, 29 Aug 2018) | 1 line - small changes to resolve xt/60_perlcritic + small spelling error ------------------------------------------------------------------------ -r1431038 | kmcgrail | 2013-01-09 20:03:16 +0000 (Wed, 09 Jan 2013) | 1 +r1839515 | billcole | 2018-08-28 23:55:29 +0000 (Tue, 28 Aug 2018) | 1 line - Tweaks for xt tests in prep for 3.4.0 including adding more override -variables for tests to not be skipped and removing some hardcoded -usernames + Detect UTF-16 flavor ------------------------------------------------------------------------ -r1431037 | kmcgrail | 2013-01-09 20:02:27 +0000 (Wed, 09 Jan 2013) | 1 +r1839514 | billcole | 2018-08-28 23:44:51 +0000 (Tue, 28 Aug 2018) | 1 line - Added the ability to override more than one variable + switch default for parse_dkim_uris ------------------------------------------------------------------------ -r1430432 | kmcgrail | 2013-01-08 18:27:02 +0000 (Tue, 08 Jan 2013) | 1 +r1839511 | billcole | 2018-08-28 23:12:05 +0000 (Tue, 28 Aug 2018) | 1 line - Cleaning up xt dir so that 20_saw_ampersand works + Fixing t/util_wrap.t for new tab=>8 spaces accounting ------------------------------------------------------------------------ -r1430431 | kmcgrail | 2013-01-08 18:26:27 +0000 (Tue, 08 Jan 2013) | 1 +r1839487 | billcole | 2018-08-28 17:16:00 +0000 (Tue, 28 Aug 2018) | 1 line - Cleaning up release docs + Making allowance for tabs in M::SA::Util=>wrap(), tweaking default wrap +width ------------------------------------------------------------------------ -r1430121 | jhardin | 2013-01-08 02:46:58 +0000 (Tue, 08 Jan 2013) | 1 line +r1839410 | gbechis | 2018-08-28 07:45:52 +0000 (Tue, 28 Aug 2018) | 4 +lines - tweak email phishing rules ------------------------------------------------------------------------- -r1430120 | jhardin | 2013-01-08 02:46:42 +0000 (Tue, 08 Jan 2013) | 1 line + Fix indented rules to be rescored + Give a chance to RCVD_IN_MSPIKE rules. + bz #6400 - GA is now scoring EMAIL_URI_PHISH ------------------------------------------------------------------------ -r1429988 | kmcgrail | 2013-01-07 20:12:44 +0000 (Mon, 07 Jan 2013) | 1 -line +r1839409 | gbechis | 2018-08-28 07:35:13 +0000 (Tue, 28 Aug 2018) | 2 +lines - Disabled parsing of DKIM Header to extract URIs - Bug 6700 ------------------------------------------------------------------------- -r1429673 | jhardin | 2013-01-07 05:24:07 +0000 (Mon, 07 Jan 2013) | 1 line + Mention 'report_wrap_width' new option - Fix typo ------------------------------------------------------------------------ -r1429672 | jhardin | 2013-01-07 05:20:49 +0000 (Mon, 07 Jan 2013) | 1 line - - More FP avoidance, add PHP-MUA-without-version scored rule ------------------------------------------------------------------------- -r1429631 | mmartinec | 2013-01-07 00:45:43 +0000 (Mon, 07 Jan 2013) | 1 +r1839390 | kmcgrail | 2018-08-28 02:48:28 +0000 (Tue, 28 Aug 2018) | 1 line - just warn (not die) if a temp file for a helper application does not -exist when deleting it + Adding more features to WLBLEval - Bug 7354 ------------------------------------------------------------------------ -r1429359 | jhardin | 2013-01-05 19:00:37 +0000 (Sat, 05 Jan 2013) | 1 line - - tweak email phishing rules ------------------------------------------------------------------------- -r1429198 | spamassassin_role | 2013-01-05 03:15:51 +0000 (Sat, 05 Jan -2013) | 1 line - - updated scores for revision 1428749 active rules added since last -mass-check ------------------------------------------------------------------------- -r1429187 | mmartinec | 2013-01-05 01:45:15 +0000 (Sat, 05 Jan 2013) | 1 +r1839388 | kmcgrail | 2018-08-28 02:39:26 +0000 (Tue, 28 Aug 2018) | 1 line - t/rule_names.t fix for "Parse errors: No plan found in TAP output" + Adding FromNameSpoof plugin - bug 7606 ------------------------------------------------------------------------ -r1429136 | kmcgrail | 2013-01-04 21:37:08 +0000 (Fri, 04 Jan 2013) | 1 +r1839367 | billcole | 2018-08-27 19:18:16 +0000 (Mon, 27 Aug 2018) | 1 line - Added descriptions for rules for bugs 6880/6884 to fix uribl_all_types.t + Adding configurable wrap width for X-Spam-Report header. Bug #6104 ------------------------------------------------------------------------ -r1429058 | mmartinec | 2013-01-04 19:43:38 +0000 (Fri, 04 Jan 2013) | 1 -line +r1839294 | gbechis | 2018-08-27 10:41:59 +0000 (Mon, 27 Aug 2018) | 2 +lines - Bug 3806: one more case of too generous checking for version of -Sys::Hostname::Long ------------------------------------------------------------------------- -r1429002 | mmartinec | 2013-01-04 17:54:20 +0000 (Fri, 04 Jan 2013) | 1 -line + detect Sympa mailinglists, bz #7523 - t/spf.t - make disabling of this test more selective: if -Sys::Hostname::Long does not exists that is just fine ------------------------------------------------------------------------ -r1428943 | mmartinec | 2013-01-04 16:00:33 +0000 (Fri, 04 Jan 2013) | 1 +r1839260 | kmcgrail | 2018-08-26 21:55:00 +0000 (Sun, 26 Aug 2018) | 1 line - re-enabling test t/spamd_maxsize.t + build_spamc & build_spamd are options for win32 only - bug 7376 ------------------------------------------------------------------------ -r1428892 | mmartinec | 2013-01-04 14:35:13 +0000 (Fri, 04 Jan 2013) | 1 +r1839147 | kmcgrail | 2018-08-25 23:31:00 +0000 (Sat, 25 Aug 2018) | 1 line - t/rule_names.t : missing boilerplate "use SATest", allow_user_rules=1, -too early call to Test::plan; fix tainted PATH in -SATest::probably_unused_spamd_port() + Addig tag for LASTEXTERNALIP - Bug 7334 ------------------------------------------------------------------------ -r1428720 | kmcgrail | 2013-01-04 04:28:42 +0000 (Fri, 04 Jan 2013) | 1 +r1839143 | kmcgrail | 2018-08-25 23:17:51 +0000 (Sat, 25 Aug 2018) | 1 line - Cleaned up DependencyInfo for Curl and Fetch. + allow font names in tickmarks - bug 7312 ------------------------------------------------------------------------ -r1428716 | kmcgrail | 2013-01-04 04:09:02 +0000 (Fri, 04 Jan 2013) | 1 +r1839141 | kmcgrail | 2018-08-25 23:11:53 +0000 (Sat, 25 Aug 2018) | 1 line - changes to received parsing for gmx - bug 6877 + changing socket handling for spamd - bug 7274 ------------------------------------------------------------------------ -r1428708 | spamassassin_role | 2013-01-04 03:12:23 +0000 (Fri, 04 Jan -2013) | 1 line - - updated scores for revision 1428221 active rules added since last -mass-check ------------------------------------------------------------------------- -r1428702 | kmcgrail | 2013-01-04 02:44:03 +0000 (Fri, 04 Jan 2013) | 1 +r1839140 | kmcgrail | 2018-08-25 23:04:42 +0000 (Sat, 25 Aug 2018) | 1 line - update to change rule descriptions that are blank to "No description -available." and code to list rules missing descriptions with -D - bug 6880 + Improving razor2 test ------------------------------------------------------------------------ -r1428581 | kmcgrail | 2013-01-03 20:41:13 +0000 (Thu, 03 Jan 2013) | 1 +r1839137 | kmcgrail | 2018-08-25 22:49:01 +0000 (Sat, 25 Aug 2018) | 1 line - Documentation in INSTALL and DependencyInfo.pm because sa-update now -uses binaries before LWP for better ipv6 support - bug 6655 + changing make to $Config{make} for sa-compile - bug 7294 ------------------------------------------------------------------------ -r1428508 | kmcgrail | 2013-01-03 17:51:43 +0000 (Thu, 03 Jan 2013) | 1 +r1839132 | kmcgrail | 2018-08-25 22:35:14 +0000 (Sat, 25 Aug 2018) | 1 line - adding -X option to allow spamc to return EX_TEMPFAIL instead of -EX_UNAVAILABLE when using -x option + Add references to plugins - bug 7280 ------------------------------------------------------------------------ -r1428402 | kmcgrail | 2013-01-03 15:36:34 +0000 (Thu, 03 Jan 2013) | 1 +r1839127 | kmcgrail | 2018-08-25 22:08:33 +0000 (Sat, 25 Aug 2018) | 1 line - Order of -T -w changed per bug 6883 ------------------------------------------------------------------------- -r1428150 | spamassassin_role | 2013-01-03 03:07:30 +0000 (Thu, 03 Jan -2013) | 1 line - - updated scores for revision 1427706 active rules added since last -mass-check ------------------------------------------------------------------------- -r1427629 | spamassassin_role | 2013-01-02 03:15:11 +0000 (Wed, 02 Jan -2013) | 1 line - - updated scores for revision 1427336 active rules added since last -mass-check + Adding information rule updates and sha1 to announcement ------------------------------------------------------------------------ -r1427476 | jhardin | 2013-01-01 17:13:47 +0000 (Tue, 01 Jan 2013) | 1 line +r1839085 | gbechis | 2018-08-25 17:20:14 +0000 (Sat, 25 Aug 2018) | 2 +lines - Tweak fill_form, lotsa_money and email phishing rules- add Polish -variants ------------------------------------------------------------------------- -r1427288 | spamassassin_role | 2013-01-01 03:10:56 +0000 (Tue, 01 Jan -2013) | 1 line + revert r1826179, fixes bz #7602 - updated scores for revision 1427053 active rules added since last -mass-check ------------------------------------------------------------------------ -r1427272 | kmcgrail | 2013-01-01 01:15:57 +0000 (Tue, 01 Jan 2013) | 1 +r1839015 | billcole | 2018-08-25 05:15:19 +0000 (Sat, 25 Aug 2018) | 1 line - preparing for release 3.4.0-pre1 + Really skip Devel::SawAmpersand test when it's unneeded ------------------------------------------------------------------------ -r1427271 | kmcgrail | 2013-01-01 01:11:03 +0000 (Tue, 01 Jan 2013) | 1 +r1839005 | kmcgrail | 2018-08-25 01:44:30 +0000 (Sat, 25 Aug 2018) | 1 line - preparing for release 3.4.0-pre1 + adding a description of why the change exists ------------------------------------------------------------------------ -r1427270 | kmcgrail | 2013-01-01 01:10:54 +0000 (Tue, 01 Jan 2013) | 1 +r1839002 | kmcgrail | 2018-08-25 01:22:03 +0000 (Sat, 25 Aug 2018) | 1 line - preparing for release 3.4.0-pre1 + Adding more cases for user_prefs.template to be found - bug 7298 ------------------------------------------------------------------------ -r1427269 | kmcgrail | 2013-01-01 01:10:43 +0000 (Tue, 01 Jan 2013) | 1 +r1838999 | kmcgrail | 2018-08-25 00:47:02 +0000 (Sat, 25 Aug 2018) | 1 line - preparing for release 3.4.0-pre1 + Small fix for new6 bug - reported by ToddR, cPanel ------------------------------------------------------------------------ -r1427263 | kmcgrail | 2013-01-01 00:30:01 +0000 (Tue, 01 Jan 2013) | 1 +r1838992 | kmcgrail | 2018-08-24 23:58:13 +0000 (Fri, 24 Aug 2018) | 1 line - preparing to release 3.4.0-pre1 ------------------------------------------------------------------------- -r1427253 | kmcgrail | 2012-12-31 23:05:23 +0000 (Mon, 31 Dec 2012) | 1 -line - - Preparing for 3.4.0-pre1 fixing some MANIFEST issues ------------------------------------------------------------------------- -r1427038 | spamassassin_role | 2012-12-31 03:09:32 +0000 (Mon, 31 Dec -2012) | 1 line - - updated scores for revision 1426907 active rules added since last -mass-check ------------------------------------------------------------------------- -r1426886 | spamassassin_role | 2012-12-30 03:08:08 +0000 (Sun, 30 Dec -2012) | 1 line - - updated scores for revision 1426716 active rules added since last -mass-check ------------------------------------------------------------------------- -r1426696 | spamassassin_role | 2012-12-29 03:11:26 +0000 (Sat, 29 Dec -2012) | 1 line - - updated scores for revision 1426433 active rules added since last -mass-check ------------------------------------------------------------------------- -r1426380 | spamassassin_role | 2012-12-28 03:04:46 +0000 (Fri, 28 Dec -2012) | 1 line - - updated scores for revision 1426146 active rules added since last -mass-check ------------------------------------------------------------------------- -r1426375 | mmartinec | 2012-12-28 01:29:41 +0000 (Fri, 28 Dec 2012) | 1 -line - - Net::DNS 0.68 introduced a new API to EDNS; untaint nameservers IP -addresses as read from /etc/resolv.conf just in case Net::DNS changes its -mind leaving these tainted ------------------------------------------------------------------------- -r1426245 | jhardin | 2012-12-27 16:31:50 +0000 (Thu, 27 Dec 2012) | 1 line - - tweak email phishing rules - add spanish variants, FP avoidance + fixing Use of uninitialized value $file in File::Spec->catpath bug 7272 ------------------------------------------------------------------------ -r1426109 | spamassassin_role | 2012-12-27 03:04:39 +0000 (Thu, 27 Dec -2012) | 1 line - - updated scores for revision 1425856 active rules added since last -mass-check ------------------------------------------------------------------------- -r1425811 | spamassassin_role | 2012-12-26 03:09:13 +0000 (Wed, 26 Dec -2012) | 1 line - - updated scores for revision 1425729 active rules added since last -mass-check ------------------------------------------------------------------------- -r1425708 | spamassassin_role | 2012-12-25 03:15:38 +0000 (Tue, 25 Dec -2012) | 1 line - - updated scores for revision 1425604 active rules added since last -mass-check ------------------------------------------------------------------------- -r1425678 | jhardin | 2012-12-24 20:19:26 +0000 (Mon, 24 Dec 2012) | 1 line +r1838856 | gbechis | 2018-08-24 13:39:02 +0000 (Fri, 24 Aug 2018) | 2 +lines - Force publication of EMAIL_URI_PHISH ------------------------------------------------------------------------- -r1425579 | spamassassin_role | 2012-12-24 03:12:55 +0000 (Mon, 24 Dec -2012) | 1 line + typo in optional module - updated scores for revision 1425441 active rules added since last -mass-check ------------------------------------------------------------------------ -r1425397 | spamassassin_role | 2012-12-23 03:13:26 +0000 (Sun, 23 Dec -2012) | 1 line - - updated scores for revision 1425259 active rules added since last -mass-check ------------------------------------------------------------------------- -r1425396 | jhardin | 2012-12-23 02:48:08 +0000 (Sun, 23 Dec 2012) | 1 line - - Bug 6867 - fall back to time header if time is formatted to unexpected -locale ------------------------------------------------------------------------- -r1425395 | jhardin | 2012-12-23 02:44:12 +0000 (Sun, 23 Dec 2012) | 1 line +r1838854 | gbechis | 2018-08-24 13:29:27 +0000 (Fri, 24 Aug 2018) | 2 +lines - More FP avoidance in phishing rule, add Portuguese variants ------------------------------------------------------------------------- -r1425236 | spamassassin_role | 2012-12-22 03:17:35 +0000 (Sat, 22 Dec -2012) | 1 line + Mention Mail::SpamAssassin::Plugin::ResourceLimit - updated scores for revision 1424823 active rules added since last -mass-check ------------------------------------------------------------------------ -r1425068 | mmartinec | 2012-12-21 18:21:45 +0000 (Fri, 21 Dec 2012) | 1 +r1838779 | kmcgrail | 2018-08-24 01:53:14 +0000 (Fri, 24 Aug 2018) | 1 line - Bug 6872 - replace $rr->rdatastr with $rr->txtdata where appropriate ------------------------------------------------------------------------- -r1424795 | spamassassin_role | 2012-12-21 03:16:38 +0000 (Fri, 21 Dec -2012) | 1 line - - updated scores for revision 1424369 active rules added since last -mass-check ------------------------------------------------------------------------- -r1424274 | spamassassin_role | 2012-12-20 03:17:04 +0000 (Thu, 20 Dec -2012) | 1 line - - updated scores for revision 1423795 active rules added since last -mass-check ------------------------------------------------------------------------- -r1424267 | jhardin | 2012-12-20 01:52:34 +0000 (Thu, 20 Dec 2012) | 1 line - - more FP avoidance ------------------------------------------------------------------------- -r1423746 | spamassassin_role | 2012-12-19 03:15:44 +0000 (Wed, 19 Dec -2012) | 1 line - - updated scores for revision 1423347 active rules added since last -mass-check ------------------------------------------------------------------------- -r1423467 | hege | 2012-12-18 15:05:37 +0000 (Tue, 18 Dec 2012) | 2 lines - - Bug 6881: Bayes storage module for Redis should be optional - + fixing an opt not freed. bug 7509 ------------------------------------------------------------------------ -r1423268 | kmcgrail | 2012-12-18 03:26:31 +0000 (Tue, 18 Dec 2012) | 1 +r1838777 | kmcgrail | 2018-08-24 01:45:57 +0000 (Fri, 24 Aug 2018) | 1 line - Lowered score and added condition for 3.4 because From:name works -differently prior - bug 6817 ------------------------------------------------------------------------- -r1423267 | spamassassin_role | 2012-12-18 03:23:06 +0000 (Tue, 18 Dec -2012) | 1 line - - updated scores for revision 1422798 active rules added since last -mass-check ------------------------------------------------------------------------- -r1422745 | spamassassin_role | 2012-12-17 03:08:34 +0000 (Mon, 17 Dec -2012) | 1 line - - updated scores for revision 1422487 active rules added since last -mass-check ------------------------------------------------------------------------- -r1422678 | jhardin | 2012-12-16 20:08:24 +0000 (Sun, 16 Dec 2012) | 1 line - - Tweak lotsa_money ------------------------------------------------------------------------- -r1422572 | axb | 2012-12-16 13:03:57 +0000 (Sun, 16 Dec 2012) | 1 line - - added zapto.org ------------------------------------------------------------------------- -r1422095 | jhardin | 2012-12-14 21:13:21 +0000 (Fri, 14 Dec 2012) | 1 line - - possibly address UTF8 issues ------------------------------------------------------------------------- -r1422080 | jhardin | 2012-12-14 21:05:59 +0000 (Fri, 14 Dec 2012) | 1 line - - possibly address UTF8 issues ------------------------------------------------------------------------- -r1421774 | hege | 2012-12-14 09:56:17 +0000 (Fri, 14 Dec 2012) | 2 lines - - Bug 6879: Bayes storage module for Redis - ------------------------------------------------------------------------- -r1421587 | jhardin | 2012-12-13 22:40:36 +0000 (Thu, 13 Dec 2012) | 1 line - - Limit hits for __BODY_TEXT_LINE + Reverting previous comment of return - bug 7191 comment 18 ------------------------------------------------------------------------ -r1421070 | jhardin | 2012-12-13 03:05:49 +0000 (Thu, 13 Dec 2012) | 1 line - - tweak lotsa_money, more FP avoidance ------------------------------------------------------------------------- -r1420906 | mmartinec | 2012-12-12 18:38:25 +0000 (Wed, 12 Dec 2012) | 1 +r1838775 | kmcgrail | 2018-08-24 01:35:46 +0000 (Fri, 24 Aug 2018) | 1 line - Bug 6872, one more + logic switch on spamd to fix the unlimited timeout option. bug 6748 ------------------------------------------------------------------------ -r1420890 | mmartinec | 2012-12-12 17:59:20 +0000 (Wed, 12 Dec 2012) | 1 +r1838771 | kmcgrail | 2018-08-24 00:45:27 +0000 (Fri, 24 Aug 2018) | 1 line - Bug 6872, fix breakage introduced by my previous change - DNS replies -with no answers would wait till their timeout ------------------------------------------------------------------------- -r1419839 | jhardin | 2012-12-10 22:19:56 +0000 (Mon, 10 Dec 2012) | 1 line - - add lottery + empty body + attachment rule + Adding ResourceLimits.pm plugin and dependency test for BSD::Resources ------------------------------------------------------------------------ -r1419685 | kmcgrail | 2012-12-10 19:26:34 +0000 (Mon, 10 Dec 2012) | 1 +r1838645 | billcole | 2018-08-22 15:24:51 +0000 (Wed, 22 Aug 2018) | 1 line - Tweak for bug 6874 + Restoring required -D flag so that the patterns & antipatterns can +actually work ------------------------------------------------------------------------ -r1419599 | kmcgrail | 2012-12-10 17:33:01 +0000 (Mon, 10 Dec 2012) | 1 +r1838604 | kmcgrail | 2018-08-22 04:41:03 +0000 (Wed, 22 Aug 2018) | 1 line - Bug 6875 to try and lower scores re: tabs in date and from header ------------------------------------------------------------------------- -r1419559 | jhardin | 2012-12-10 16:24:03 +0000 (Mon, 10 Dec 2012) | 1 line - - tweak FIN_FREE per http://isc.sans.edu/diary.html?storyid=14656 + Minor version check robustness bug 7095 ------------------------------------------------------------------------ -r1419508 | jhardin | 2012-12-10 15:15:58 +0000 (Mon, 10 Dec 2012) | 1 line - - Tweak lotsa_money and email phishing rules- add more French and Swedish -variants ------------------------------------------------------------------------- -r1419124 | jhardin | 2012-12-09 20:08:30 +0000 (Sun, 09 Dec 2012) | 1 line - - Tweak lotsa_money ------------------------------------------------------------------------- -r1418713 | jhardin | 2012-12-08 17:16:34 +0000 (Sat, 08 Dec 2012) | 1 line - - tweak LOTSA_MONEY ------------------------------------------------------------------------- -r1418600 | spamassassin_role | 2012-12-08 03:18:10 +0000 (Sat, 08 Dec -2012) | 1 line - - updated scores for revision 1418219 active rules added since last -mass-check ------------------------------------------------------------------------- -r1418317 | mmartinec | 2012-12-07 14:04:22 +0000 (Fri, 07 Dec 2012) | 1 +r1838601 | kmcgrail | 2018-08-22 04:15:31 +0000 (Wed, 22 Aug 2018) | 1 line - Net::DNS 0.69 $rr->rdatastr no longer quotes returned TXT ([rt.cpan.org -#81760]); some other DNS-related cosmetics; more RR types in AskDNS.pm ------------------------------------------------------------------------- -r1418179 | spamassassin_role | 2012-12-07 03:16:12 +0000 (Fri, 07 Dec -2012) | 1 line - - updated scores for revision 1417778 active rules added since last -mass-check ------------------------------------------------------------------------- -r1417731 | spamassassin_role | 2012-12-06 03:22:43 +0000 (Thu, 06 Dec -2012) | 1 line - - updated scores for revision 1417315 active rules added since last -mass-check ------------------------------------------------------------------------- -r1417272 | spamassassin_role | 2012-12-05 03:27:01 +0000 (Wed, 05 Dec -2012) | 1 line - - updated scores for revision 1416819 active rules added since last -mass-check ------------------------------------------------------------------------- -r1416757 | spamassassin_role | 2012-12-04 03:29:37 +0000 (Tue, 04 Dec -2012) | 1 line - - updated scores for revision 1416377 active rules added since last -mass-check ------------------------------------------------------------------------- -r1416556 | jhardin | 2012-12-03 15:16:17 +0000 (Mon, 03 Dec 2012) | 1 line - - tweak ATM_CARD ------------------------------------------------------------------------- -r1416457 | hege | 2012-12-03 11:44:46 +0000 (Mon, 03 Dec 2012) | 2 lines - - Bug 6871: FreeMail plugin not checking Reply-To properly - + Adding info about rules being in root to manifest ------------------------------------------------------------------------ -r1416341 | spamassassin_role | 2012-12-03 03:31:58 +0000 (Mon, 03 Dec -2012) | 1 line - - updated scores for revision 1416144 active rules added since last -mass-check ------------------------------------------------------------------------- -r1416328 | jhardin | 2012-12-03 01:10:58 +0000 (Mon, 03 Dec 2012) | 1 line - - tweak email phishing rules ------------------------------------------------------------------------- -r1416104 | spamassassin_role | 2012-12-02 03:33:15 +0000 (Sun, 02 Dec -2012) | 1 line - - updated scores for revision 1415949 active rules added since last -mass-check ------------------------------------------------------------------------- -r1415948 | jhardin | 2012-12-01 08:45:59 +0000 (Sat, 01 Dec 2012) | 1 line - - Force publication of Google Docs email phishing rule: S/O=1.000, only -hits spams otherwise scoring <= 6 points ------------------------------------------------------------------------- -r1415910 | spamassassin_role | 2012-12-01 03:22:32 +0000 (Sat, 01 Dec -2012) | 1 line - - updated scores for revision 1415545 active rules added since last -mass-check ------------------------------------------------------------------------- -r1415861 | jhardin | 2012-11-30 21:50:22 +0000 (Fri, 30 Nov 2012) | 1 line - - More FP avoidance in FROM_MISSP* rules ------------------------------------------------------------------------- -r1415751 | kmcgrail | 2012-11-30 17:21:35 +0000 (Fri, 30 Nov 2012) | 1 +r1838598 | kmcgrail | 2018-08-22 04:06:35 +0000 (Wed, 22 Aug 2018) | 1 line - Bug 6870 adding boundaries for ACT_NOW_CAPS ------------------------------------------------------------------------- -r1415495 | jhardin | 2012-11-30 04:08:43 +0000 (Fri, 30 Nov 2012) | 1 line - - more FROM_MISSP* FP avoidance ------------------------------------------------------------------------- -r1415488 | spamassassin_role | 2012-11-30 03:32:33 +0000 (Fri, 30 Nov -2012) | 1 line - - updated scores for revision 1415087 active rules added since last -mass-check ------------------------------------------------------------------------- -r1415458 | jhardin | 2012-11-29 23:34:16 +0000 (Thu, 29 Nov 2012) | 1 line - - add HTML_FONT_TINY + Commenting a change accidentally committed for Bug 7095 ------------------------------------------------------------------------ -r1415324 | jhardin | 2012-11-29 19:02:16 +0000 (Thu, 29 Nov 2012) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1415034 | spamassassin_role | 2012-11-29 03:27:10 +0000 (Thu, 29 Nov -2012) | 1 line - - updated scores for revision 1414583 active rules added since last -mass-check ------------------------------------------------------------------------- -r1414518 | spamassassin_role | 2012-11-28 03:33:06 +0000 (Wed, 28 Nov -2012) | 1 line - - updated scores for revision 1414021 active rules added since last -mass-check ------------------------------------------------------------------------- -r1414465 | mmartinec | 2012-11-27 23:21:34 +0000 (Tue, 27 Nov 2012) | 1 +r1838597 | kmcgrail | 2018-08-22 03:56:32 +0000 (Wed, 22 Aug 2018) | 1 line - DCC plugin: fix calls to dbg() - log facility must be a constant string -before a sprintf expansion; hardened Logger.pm against a missing or -broken log facility ------------------------------------------------------------------------- -r1413987 | spamassassin_role | 2012-11-27 03:44:37 +0000 (Tue, 27 Nov -2012) | 1 line - - updated scores for revision 1413510 active rules added since last -mass-check ------------------------------------------------------------------------- -r1413473 | jhardin | 2012-11-26 03:41:18 +0000 (Mon, 26 Nov 2012) | 1 line - - More FP avoidance in 419/fraud rules ------------------------------------------------------------------------- -r1413472 | spamassassin_role | 2012-11-26 03:32:43 +0000 (Mon, 26 Nov -2012) | 1 line - - updated scores for revision 1413300 active rules added since last -mass-check ------------------------------------------------------------------------- -r1413469 | jhardin | 2012-11-26 03:16:43 +0000 (Mon, 26 Nov 2012) | 1 line - - more TO_NO_BRKTS_MSFT FP avoidance ------------------------------------------------------------------------- -r1413466 | jhardin | 2012-11-26 03:04:08 +0000 (Mon, 26 Nov 2012) | 1 line - - COMPENSATION FP avoidance ------------------------------------------------------------------------- -r1413412 | jhardin | 2012-11-25 20:40:06 +0000 (Sun, 25 Nov 2012) | 1 line - - tweak email phishing rules ------------------------------------------------------------------------- -r1413288 | spamassassin_role | 2012-11-25 03:25:41 +0000 (Sun, 25 Nov -2012) | 1 line - - updated scores for revision 1413153 active rules added since last -mass-check ------------------------------------------------------------------------- -r1413121 | spamassassin_role | 2012-11-24 03:30:37 +0000 (Sat, 24 Nov -2012) | 1 line - - updated scores for revision 1412776 active rules added since last -mass-check ------------------------------------------------------------------------- -r1413113 | jhardin | 2012-11-24 01:39:51 +0000 (Sat, 24 Nov 2012) | 1 line - - More FP avoidance in 419 rules ------------------------------------------------------------------------- -r1412990 | jhardin | 2012-11-23 17:26:04 +0000 (Fri, 23 Nov 2012) | 1 line - - Tweak email phishing rules ------------------------------------------------------------------------- -r1412952 | jhardin | 2012-11-23 16:53:24 +0000 (Fri, 23 Nov 2012) | 1 line - - Tweak __TVD_PH_BODY_ACCOUNTS_POST ------------------------------------------------------------------------- -r1412738 | spamassassin_role | 2012-11-23 03:30:05 +0000 (Fri, 23 Nov -2012) | 1 line - - updated scores for revision 1412451 active rules added since last -mass-check ------------------------------------------------------------------------- -r1412412 | spamassassin_role | 2012-11-22 03:15:51 +0000 (Thu, 22 Nov -2012) | 1 line - - updated scores for revision 1412016 active rules added since last -mass-check ------------------------------------------------------------------------- -r1411979 | spamassassin_role | 2012-11-21 03:11:38 +0000 (Wed, 21 Nov -2012) | 1 line - - updated scores for revision 1411588 active rules added since last -mass-check ------------------------------------------------------------------------- -r1411520 | spamassassin_role | 2012-11-20 03:18:52 +0000 (Tue, 20 Nov -2012) | 1 line - - updated scores for revision 1411099 active rules added since last -mass-check ------------------------------------------------------------------------- -r1411065 | jhardin | 2012-11-19 04:58:05 +0000 (Mon, 19 Nov 2012) | 1 line - - LOTTO_DEPT FP avoidance ------------------------------------------------------------------------- -r1411050 | spamassassin_role | 2012-11-19 03:17:46 +0000 (Mon, 19 Nov -2012) | 1 line - - updated scores for revision 1410852 active rules added since last -mass-check ------------------------------------------------------------------------- -r1410970 | jhardin | 2012-11-18 19:55:06 +0000 (Sun, 18 Nov 2012) | 1 line - - Add rules for "compensation" and google docs URIs ------------------------------------------------------------------------- -r1410819 | spamassassin_role | 2012-11-18 03:13:35 +0000 (Sun, 18 Nov -2012) | 1 line - - updated scores for revision 1410711 active rules added since last -mass-check ------------------------------------------------------------------------- -r1410687 | spamassassin_role | 2012-11-17 03:19:10 +0000 (Sat, 17 Nov -2012) | 1 line - - updated scores for revision 1410255 active rules added since last -mass-check ------------------------------------------------------------------------- -r1410191 | jhardin | 2012-11-16 03:43:15 +0000 (Fri, 16 Nov 2012) | 1 line - - KHOP_NO_FULL_NAME useful in FP-avoidance metas, break into subrule + -scored meta ------------------------------------------------------------------------- -r1410176 | spamassassin_role | 2012-11-16 03:03:22 +0000 (Fri, 16 Nov -2012) | 1 line - - updated scores for revision 1409693 active rules added since last -mass-check ------------------------------------------------------------------------- -r1410013 | jhardin | 2012-11-15 21:07:27 +0000 (Thu, 15 Nov 2012) | 1 line - - Add a timeout around ruleqa SVN operations, they have been observed to -wedge on the ruleqa zone VM ------------------------------------------------------------------------- -r1409641 | spamassassin_role | 2012-11-15 03:06:30 +0000 (Thu, 15 Nov -2012) | 1 line - - updated scores for revision 1409116 active rules added since last -mass-check ------------------------------------------------------------------------- -r1409074 | spamassassin_role | 2012-11-14 03:26:57 +0000 (Wed, 14 Nov -2012) | 1 line - - updated scores for revision 1408637 active rules added since last -mass-check ------------------------------------------------------------------------- -r1409047 | jhardin | 2012-11-14 01:05:56 +0000 (Wed, 14 Nov 2012) | 1 line - - Tune mixed-case URI rules ------------------------------------------------------------------------- -r1408914 | jhardin | 2012-11-13 19:46:00 +0000 (Tue, 13 Nov 2012) | 1 line - - Add __URI_WWW_MC + rules, rulesrc and t.rules are only in trunk now ------------------------------------------------------------------------ -r1408570 | spamassassin_role | 2012-11-13 03:09:50 +0000 (Tue, 13 Nov -2012) | 1 line - - updated scores for revision 1408190 active rules added since last -mass-check ------------------------------------------------------------------------- -r1408170 | spamassassin_role | 2012-11-12 03:32:07 +0000 (Mon, 12 Nov -2012) | 1 line - - updated scores for revision 1407926 active rules added since last -mass-check ------------------------------------------------------------------------- -r1408133 | jhardin | 2012-11-11 22:14:11 +0000 (Sun, 11 Nov 2012) | 1 line - - ensure URI rules are case-insensitive; tweak marketing lists rules, -__FROM_RUNON & related rules, IRS and FBI spoofing rules, email phishing -rules; add mixed-case-URI rules ------------------------------------------------------------------------- -r1407908 | spamassassin_role | 2012-11-11 03:20:49 +0000 (Sun, 11 Nov -2012) | 1 line - - updated scores for revision 1407733 active rules added since last -mass-check ------------------------------------------------------------------------- -r1407724 | spamassassin_role | 2012-11-10 03:26:03 +0000 (Sat, 10 Nov -2012) | 1 line - - updated scores for revision 1407383 active rules added since last -mass-check ------------------------------------------------------------------------- -r1407347 | spamassassin_role | 2012-11-09 03:34:58 +0000 (Fri, 09 Nov -2012) | 1 line - - updated scores for revision 1406959 active rules added since last -mass-check ------------------------------------------------------------------------- -r1407297 | jhardin | 2012-11-08 22:22:06 +0000 (Thu, 08 Nov 2012) | 1 line - - Reduce LOTTO_AGENT FPs ------------------------------------------------------------------------- -r1407194 | mmartinec | 2012-11-08 18:07:22 +0000 (Thu, 08 Nov 2012) | 1 +r1838596 | kmcgrail | 2018-08-22 03:55:49 +0000 (Wed, 22 Aug 2018) | 1 line - Bug 6862: Allow a DNS resolver to use EDNS (let it apply to queries -prepared by our DnsResolver.pm too) ------------------------------------------------------------------------- -r1406906 | spamassassin_role | 2012-11-08 03:31:23 +0000 (Thu, 08 Nov -2012) | 1 line - - updated scores for revision 1406499 active rules added since last -mass-check + prepping for 3.4.2 release ------------------------------------------------------------------------ -r1406438 | spamassassin_role | 2012-11-07 03:26:39 +0000 (Wed, 07 Nov -2012) | 1 line - - updated scores for revision 1406071 active rules added since last -mass-check ------------------------------------------------------------------------- -r1406273 | mmartinec | 2012-11-06 19:21:55 +0000 (Tue, 06 Nov 2012) | 1 +r1838594 | kmcgrail | 2018-08-22 02:27:45 +0000 (Wed, 22 Aug 2018) | 1 line - Bug 6862 (detail) + Removing 3 experimental/devel plugins ------------------------------------------------------------------------ -r1406272 | mmartinec | 2012-11-06 19:15:38 +0000 (Tue, 06 Nov 2012) | 1 +r1838591 | kmcgrail | 2018-08-21 23:53:30 +0000 (Tue, 21 Aug 2018) | 1 line - Bug 6862 - Allow a DNS resolver to use EDNS - UDP packets larger than -512 bytes (configurable) ------------------------------------------------------------------------- -r1406037 | jhardin | 2012-11-06 04:09:19 +0000 (Tue, 06 Nov 2012) | 1 line - - Tweak LOTSA_MONEY ------------------------------------------------------------------------- -r1406033 | spamassassin_role | 2012-11-06 03:18:38 +0000 (Tue, 06 Nov -2012) | 1 line - - updated scores for revision 1405711 active rules added since last -mass-check + Remove pretty command line in ps so pkill can work ------------------------------------------------------------------------ -r1406030 | kmcgrail | 2012-11-06 02:28:04 +0000 (Tue, 06 Nov 2012) | 1 +r1838588 | kmcgrail | 2018-08-21 23:22:01 +0000 (Tue, 21 Aug 2018) | 1 line - Bug 6861 for test_version fixed for binary dependencies ------------------------------------------------------------------------- -r1405691 | spamassassin_role | 2012-11-05 03:21:20 +0000 (Mon, 05 Nov -2012) | 1 line - - updated scores for revision 1405513 active rules added since last -mass-check + Reminder not to leave -D ------------------------------------------------------------------------ -r1405495 | spamassassin_role | 2012-11-04 03:32:12 +0000 (Sun, 04 Nov -2012) | 1 line - - updated scores for revision 1405308 active rules added since last -mass-check ------------------------------------------------------------------------- -r1405274 | spamassassin_role | 2012-11-03 03:19:15 +0000 (Sat, 03 Nov -2012) | 1 line - - updated scores for revision 1404892 active rules added since last -mass-check ------------------------------------------------------------------------- -r1405084 | mmartinec | 2012-11-02 18:15:37 +0000 (Fri, 02 Nov 2012) | 1 +r1838586 | billcole | 2018-08-21 21:34:03 +0000 (Tue, 21 Aug 2018) | 1 line - t/debug.t: avoid "malformed debug message" due to a timestamp in a log, -add missing facilities to the list ------------------------------------------------------------------------- -r1404866 | spamassassin_role | 2012-11-02 03:43:58 +0000 (Fri, 02 Nov -2012) | 1 line - - updated scores for revision 1404503 active rules added since last -mass-check ------------------------------------------------------------------------- -r1404458 | spamassassin_role | 2012-11-01 03:47:56 +0000 (Thu, 01 Nov -2012) | 1 line - - updated scores for revision 1404039 active rules added since last -mass-check + tighten up patterns in t/dnsbl.t ------------------------------------------------------------------------ -r1404381 | axb | 2012-10-31 22:08:33 +0000 (Wed, 31 Oct 2012) | 1 line - - allow Ga manage HK_LOTTO hardwired score ------------------------------------------------------------------------- -r1403962 | spamassassin_role | 2012-10-31 03:26:18 +0000 (Wed, 31 Oct -2012) | 1 line - - updated scores for revision 1403638 active rules added since last -mass-check ------------------------------------------------------------------------- -r1403609 | spamassassin_role | 2012-10-30 03:34:12 +0000 (Tue, 30 Oct -2012) | 1 line - - updated scores for revision 1403196 active rules added since last -mass-check ------------------------------------------------------------------------- -r1403592 | mmartinec | 2012-10-30 01:02:52 +0000 (Tue, 30 Oct 2012) | 7 +r1838522 | gbechis | 2018-08-21 07:51:57 +0000 (Tue, 21 Aug 2018) | 2 lines - Bug 6508: Speeding up lookups on {trusted,internal,msa}_networks - Documentation update: - - document how Net::Patricia search differs from a sequential search - - document/clarify IPv6 syntax in {trusted,internal,msa}_networks - - remove the claim on flexibility - - ------------------------------------------------------------------------- -r1403578 | mmartinec | 2012-10-29 23:39:24 +0000 (Mon, 29 Oct 2012) | 1 -line - - Bug 6681: add_cidr() to recognize and strip [] and %scope in IPv6 -addresses - unifies parsing in non-Net::Patricia and Net::Patricia setups ------------------------------------------------------------------------- -r1403571 | jhardin | 2012-10-29 22:44:51 +0000 (Mon, 29 Oct 2012) | 1 line - - tweak generated score limits ------------------------------------------------------------------------- -r1403401 | jhardin | 2012-10-29 16:18:51 +0000 (Mon, 29 Oct 2012) | 1 line - - Add suspiciously-named-attachment rules; tweak multiple-domain-in-URI -rules; add email phishing w/Google Docs rules ------------------------------------------------------------------------- -r1403400 | jhardin | 2012-10-29 16:16:06 +0000 (Mon, 29 Oct 2012) | 1 line - - Tweak LOTSA_MONEY ------------------------------------------------------------------------- -r1403151 | spamassassin_role | 2012-10-29 03:19:07 +0000 (Mon, 29 Oct -2012) | 1 line - - updated scores for revision 1402956 active rules added since last -mass-check ------------------------------------------------------------------------- -r1403067 | jhardin | 2012-10-28 18:37:02 +0000 (Sun, 28 Oct 2012) | 1 line - - Split some scored rules into subrule + scored-meta sets to allow their -use in other scored meta rules even if the perform poorly on their own; -minor tweaking of __TVD_PH_BODY_ACCOUNTS_POST ------------------------------------------------------------------------- -r1402925 | spamassassin_role | 2012-10-28 03:52:03 +0000 (Sun, 28 Oct -2012) | 1 line - - updated scores for revision 1402761 active rules added since last -mass-check ------------------------------------------------------------------------- -r1402736 | spamassassin_role | 2012-10-27 03:42:54 +0000 (Sat, 27 Oct -2012) | 1 line - - updated scores for revision 1402431 active rules added since last -mass-check ------------------------------------------------------------------------- -r1402382 | spamassassin_role | 2012-10-26 03:25:01 +0000 (Fri, 26 Oct -2012) | 1 line - - updated scores for revision 1402026 active rules added since last -mass-check ------------------------------------------------------------------------- -r1402227 | mmartinec | 2012-10-25 17:38:04 +0000 (Thu, 25 Oct 2012) | 1 -line - - Bug 6856: Mass check is throwing a '1/8' isn't numeric error ------------------------------------------------------------------------- -r1402074 | axb | 2012-10-25 09:54:10 +0000 (Thu, 25 Oct 2012) | 1 line - - added ifplugin/endif to Vbounce scores ------------------------------------------------------------------------- -r1401968 | spamassassin_role | 2012-10-25 03:46:47 +0000 (Thu, 25 Oct -2012) | 1 line - - updated scores for revision 1401586 active rules added since last -mass-check ------------------------------------------------------------------------- -r1401727 | mmartinec | 2012-10-24 15:25:08 +0000 (Wed, 24 Oct 2012) | 1 -line - - oops, rule names can start with a digit after leading underscores ------------------------------------------------------------------------- -r1401531 | spamassassin_role | 2012-10-24 03:33:35 +0000 (Wed, 24 Oct -2012) | 1 line - - updated scores for revision 1401197 active rules added since last -mass-check ------------------------------------------------------------------------- -r1401393 | mmartinec | 2012-10-23 19:12:17 +0000 (Tue, 23 Oct 2012) | 1 -line - - Bug 6854: Optimizations, profiling ------------------------------------------------------------------------- -r1401150 | spamassassin_role | 2012-10-23 03:51:21 +0000 (Tue, 23 Oct -2012) | 1 line - - updated scores for revision 1400804 active rules added since last -mass-check ------------------------------------------------------------------------- -r1400858 | kmcgrail | 2012-10-22 12:13:44 +0000 (Mon, 22 Oct 2012) | 1 -line - - Step 1 of bug 6853 to remove SURBL Outblaze (OB) list ------------------------------------------------------------------------- -r1400752 | spamassassin_role | 2012-10-22 03:45:45 +0000 (Mon, 22 Oct -2012) | 1 line - - updated scores for revision 1400596 active rules added since last -mass-check ------------------------------------------------------------------------- -r1400564 | spamassassin_role | 2012-10-21 03:30:04 +0000 (Sun, 21 Oct -2012) | 1 line - - updated scores for revision 1400389 active rules added since last -mass-check ------------------------------------------------------------------------- -r1400485 | jhardin | 2012-10-20 16:12:03 +0000 (Sat, 20 Oct 2012) | 1 line - - cosmetic ------------------------------------------------------------------------- -r1400357 | spamassassin_role | 2012-10-20 03:43:39 +0000 (Sat, 20 Oct -2012) | 1 line + Describe some of the code developed and to be released in 3.4.2 - updated scores for revision 1400000 active rules added since last -mass-check ------------------------------------------------------------------------ -r1400236 | mmartinec | 2012-10-19 19:13:11 +0000 (Fri, 19 Oct 2012) | 1 +r1838511 | billcole | 2018-08-20 23:48:03 +0000 (Mon, 20 Aug 2018) | 1 line - Change wording on IO::Socket::IP and IO::Socket::INET6 in -DependencyInfo.pm ------------------------------------------------------------------------- -r1399957 | spamassassin_role | 2012-10-19 03:32:53 +0000 (Fri, 19 Oct -2012) | 1 line - - updated scores for revision 1399554 active rules added since last -mass-check ------------------------------------------------------------------------- -r1399826 | jhardin | 2012-10-18 20:07:42 +0000 (Thu, 18 Oct 2012) | 1 line - - Tweak LOTSA_MONEY, add more spanish variants + Check for rules before using them in test ------------------------------------------------------------------------ -r1399735 | jhardin | 2012-10-18 16:47:59 +0000 (Thu, 18 Oct 2012) | 1 line - - Add some phishing rules ------------------------------------------------------------------------- -r1399509 | spamassassin_role | 2012-10-18 03:30:30 +0000 (Thu, 18 Oct -2012) | 1 line - - updated scores for revision 1399152 active rules added since last -mass-check ------------------------------------------------------------------------- -r1399087 | spamassassin_role | 2012-10-17 03:27:11 +0000 (Wed, 17 Oct -2012) | 1 line - - updated scores for revision 1398698 active rules added since last -mass-check ------------------------------------------------------------------------- -r1398922 | mmartinec | 2012-10-16 18:52:52 +0000 (Tue, 16 Oct 2012) | 1 +r1838509 | kmcgrail | 2018-08-20 23:32:03 +0000 (Mon, 20 Aug 2018) | 1 line - Bug 6840: Documentation for IPV6 in spamd inconsistent - updated docs -for -6 + Updated committer and pmc list ------------------------------------------------------------------------ -r1398918 | mmartinec | 2012-10-16 18:39:45 +0000 (Tue, 16 Oct 2012) | 1 +r1838499 | billcole | 2018-08-20 21:45:37 +0000 (Mon, 20 Aug 2018) | 1 line - Bug 6840: Documentation for IPV6 in spamd inconsistent - update docs for -option -A + backport trunk sa-compile and t/sa_compile.t fixes ------------------------------------------------------------------------ -r1398910 | mmartinec | 2012-10-16 18:16:58 +0000 (Tue, 16 Oct 2012) | 1 +r1838491 | kmcgrail | 2018-08-20 20:52:44 +0000 (Mon, 20 Aug 2018) | 1 line - minor: another case of an undef warning in DependencyInfo.pm (some old -modules do not provide a VERSION method) + rewrite of razor2 test and a sample email for testing ------------------------------------------------------------------------ -r1398905 | mmartinec | 2012-10-16 18:04:51 +0000 (Tue, 16 Oct 2012) | 1 +r1838489 | kmcgrail | 2018-08-20 20:52:11 +0000 (Mon, 20 Aug 2018) | 1 line - Bug 6841: Add options -4 and -6 to spamassassin, use IO::Socket::IP for -DNS if available ------------------------------------------------------------------------- -r1398717 | axb | 2012-10-16 10:21:09 +0000 (Tue, 16 Oct 2012) | 1 line - - added AXB_BULK_ECO (how many certified bulkers land in spam corpus?) ------------------------------------------------------------------------- -r1398628 | spamassassin_role | 2012-10-16 03:26:50 +0000 (Tue, 16 Oct -2012) | 1 line - - updated scores for revision 1398217 active rules added since last -mass-check ------------------------------------------------------------------------- -r1398179 | spamassassin_role | 2012-10-15 03:18:49 +0000 (Mon, 15 Oct -2012) | 1 line - - updated scores for revision 1398037 active rules added since last -mass-check ------------------------------------------------------------------------- -r1397997 | spamassassin_role | 2012-10-14 03:26:29 +0000 (Sun, 14 Oct -2012) | 1 line - - updated scores for revision 1397802 active rules added since last -mass-check ------------------------------------------------------------------------- -r1397764 | spamassassin_role | 2012-10-13 03:21:09 +0000 (Sat, 13 Oct -2012) | 1 line - - updated scores for revision 1397470 active rules added since last -mass-check ------------------------------------------------------------------------- -r1397433 | jhardin | 2012-10-12 04:38:43 +0000 (Fri, 12 Oct 2012) | 1 line - - Add a rule to detect spams passed by Bug#6845 + rewrite of razor2 test and a sample email for testing ------------------------------------------------------------------------ -r1397424 | spamassassin_role | 2012-10-12 03:35:14 +0000 (Fri, 12 Oct -2012) | 1 line - - updated scores for revision 1396949 active rules added since last -mass-check ------------------------------------------------------------------------- -r1397075 | jhardin | 2012-10-11 14:28:12 +0000 (Thu, 11 Oct 2012) | 1 line - - Bug 6845: fix parsing of multipart MIME when the first body content -lines could be incorrectly interpreted as MIME headers ------------------------------------------------------------------------- -r1396895 | spamassassin_role | 2012-10-11 03:24:02 +0000 (Thu, 11 Oct -2012) | 1 line - - updated scores for revision 1396513 active rules added since last -mass-check ------------------------------------------------------------------------- -r1396714 | mmartinec | 2012-10-10 18:04:37 +0000 (Wed, 10 Oct 2012) | 1 +r1838485 | kmcgrail | 2018-08-20 20:07:49 +0000 (Mon, 20 Aug 2018) | 1 line - Plugin/DCC: avoid two undef warnings when dcc progs are not available, -avoid runtime formats when a sprintf form of a dbg() call is used + removing prototype on bgread for PerlCritic ------------------------------------------------------------------------ -r1396626 | mmartinec | 2012-10-10 14:56:39 +0000 (Wed, 10 Oct 2012) | 1 +r1838443 | kmcgrail | 2018-08-20 17:39:25 +0000 (Mon, 20 Aug 2018) | 1 line - Bug 6841 - Spamd cannot listen to more than one IP address (or to v4/v6 -at the same time) ------------------------------------------------------------------------- -r1396456 | spamassassin_role | 2012-10-10 03:16:43 +0000 (Wed, 10 Oct -2012) | 1 line - - updated scores for revision 1395916 active rules added since last -mass-check + moved rules and rules-extra to trunk-only for 3.4 and continue +streamlining build process ------------------------------------------------------------------------ -r1396031 | mmartinec | 2012-10-09 13:36:46 +0000 (Tue, 09 Oct 2012) | 1 +r1838429 | kmcgrail | 2018-08-20 14:20:05 +0000 (Mon, 20 Aug 2018) | 1 line - cosmetics: remove a few remaining redundant array/hash initializations + framework for 3.4.2 announcement ------------------------------------------------------------------------ -r1396026 | mmartinec | 2012-10-09 13:27:52 +0000 (Tue, 09 Oct 2012) | 1 +r1838390 | kmcgrail | 2018-08-19 16:14:03 +0000 (Sun, 19 Aug 2018) | 1 line - t/re_base_extraction.t: suppress a perl 5.16 warning: Filehandle STDIN -reopened as OUT only for output + Fixing the MANIFEST ------------------------------------------------------------------------ -r1395849 | spamassassin_role | 2012-10-09 03:14:21 +0000 (Tue, 09 Oct -2012) | 1 line - - updated scores for revision 1395472 active rules added since last -mass-check ------------------------------------------------------------------------- -r1395611 | kmcgrail | 2012-10-08 15:21:17 +0000 (Mon, 08 Oct 2012) | 1 +r1838387 | kmcgrail | 2018-08-19 16:13:01 +0000 (Sun, 19 Aug 2018) | 1 line - added plugin loops for some RBL rules bug 6852 ------------------------------------------------------------------------- -r1395590 | jhardin | 2012-10-08 14:48:29 +0000 (Mon, 08 Oct 2012) | 1 line - - Tweak LOTSA_MONEY ------------------------------------------------------------------------- -r1395445 | spamassassin_role | 2012-10-08 03:15:42 +0000 (Mon, 08 Oct -2012) | 1 line - - updated scores for revision 1395248 active rules added since last -mass-check ------------------------------------------------------------------------- -r1395343 | jhardin | 2012-10-07 17:30:13 +0000 (Sun, 07 Oct 2012) | 1 line - - Tweak LOTSA_MONEY, add more french variants ------------------------------------------------------------------------- -r1395208 | spamassassin_role | 2012-10-07 03:12:49 +0000 (Sun, 07 Oct -2012) | 1 line - - updated scores for revision 1394971 active rules added since last -mass-check + Bug 7591 not using this faster untaint ------------------------------------------------------------------------ -r1394909 | spamassassin_role | 2012-10-06 03:08:08 +0000 (Sat, 06 Oct -2012) | 1 line - - updated scores for revision 1394411 active rules added since last -mass-check ------------------------------------------------------------------------- -r1394351 | spamassassin_role | 2012-10-05 03:12:10 +0000 (Fri, 05 Oct -2012) | 1 line - - updated scores for revision 1393956 active rules added since last -mass-check ------------------------------------------------------------------------- -r1394191 | jhardin | 2012-10-04 18:24:24 +0000 (Thu, 04 Oct 2012) | 1 line - - Clean up references to freemail rules and add #ifplugins ------------------------------------------------------------------------- -r1394083 | kmcgrail | 2012-10-04 14:13:26 +0000 (Thu, 04 Oct 2012) | 1 -line +r1838374 | gbechis | 2018-08-19 10:10:16 +0000 (Sun, 19 Aug 2018) | 2 +lines - More regression test fails. Moved __FROM_FREEMAIL to 10_has_base.cf as -well ------------------------------------------------------------------------- -r1393899 | spamassassin_role | 2012-10-04 03:11:19 +0000 (Thu, 04 Oct -2012) | 1 line + refactor some "require" code - updated scores for revision 1393354 active rules added since last -mass-check ------------------------------------------------------------------------ -r1393572 | axb | 2012-10-03 15:59:58 +0000 (Wed, 03 Oct 2012) | 1 line +r1838365 | gbechis | 2018-08-19 08:54:59 +0000 (Sun, 19 Aug 2018) | 2 +lines - added 20_bug_6848_ajb.cf ------------------------------------------------------------------------- -r1393265 | spamassassin_role | 2012-10-03 03:03:39 +0000 (Wed, 03 Oct -2012) | 1 line + skip tests if GeoIP is installed but there are no databases available - updated scores for revision 1392792 active rules added since last -mass-check ------------------------------------------------------------------------ -r1392994 | axb | 2012-10-02 15:55:09 +0000 (Tue, 02 Oct 2012) | 2 lines +r1838364 | gbechis | 2018-08-19 08:52:11 +0000 (Sun, 19 Aug 2018) | 2 +lines - header __HAS_REPLY_TO moved to 10_hasbase.cf - (att KAM: passed test) ------------------------------------------------------------------------- -r1392900 | kmcgrail | 2012-10-02 13:08:14 +0000 (Tue, 02 Oct 2012) | 1 -line + better detection of GeoIP installed modules - Adding __HAS_REPLY_TO back since it is used elsewhere ------------------------------------------------------------------------ -r1392892 | mmartinec | 2012-10-02 12:43:14 +0000 (Tue, 02 Oct 2012) | 1 -line +r1837877 | gbechis | 2018-08-11 18:33:18 +0000 (Sat, 11 Aug 2018) | 2 +lines - avoid: Use of uninitialized value in pattern match (m//) at -.../DependencyInfo.pm line 375 ------------------------------------------------------------------------- -r1392817 | axb | 2012-10-02 09:46:34 +0000 (Tue, 02 Oct 2012) | 1 line + typo - disabled FSL_FREEMAIL_1 / FSL_FREEMAIL_2 - This is handled by Freemail -plugin ------------------------------------------------------------------------ -r1392794 | axb | 2012-10-02 08:52:40 +0000 (Tue, 02 Oct 2012) | 1 line +r1837876 | gbechis | 2018-08-11 18:23:51 +0000 (Sat, 11 Aug 2018) | 3 +lines - # TrendMicro antispam outbound tagged? - could cause Fps due to dubious -filter quality ------------------------------------------------------------------------- -r1392717 | spamassassin_role | 2012-10-02 03:01:14 +0000 (Tue, 02 Oct -2012) | 1 line + close file descriptors when they are no more needed + probably only partial fix for #7587 - updated scores for revision 1392240 active rules added since last -mass-check ------------------------------------------------------------------------ -r1392699 | mmartinec | 2012-10-02 00:19:47 +0000 (Tue, 02 Oct 2012) | 1 -line +r1837466 | gbechis | 2018-08-05 13:39:41 +0000 (Sun, 05 Aug 2018) | 4 +lines - Bug 6842 - Spamc should have an option to only try v4 addresses when -hostnames are specified with -d ... implemented options -4 and -6 to spamc ------------------------------------------------------------------------- -r1392178 | spamassassin_role | 2012-10-01 03:14:03 +0000 (Mon, 01 Oct -2012) | 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 1391968 active rules added since last -mass-check ------------------------------------------------------------------------ -r1391941 | spamassassin_role | 2012-09-30 02:56:49 +0000 (Sun, 30 Sep -2012) | 1 line +r1837465 | gbechis | 2018-08-05 13:38:31 +0000 (Sun, 05 Aug 2018) | 8 +lines - updated scores for revision 1391774 active rules added since last -mass-check ------------------------------------------------------------------------- -r1391738 | spamassassin_role | 2012-09-29 03:02:16 +0000 (Sat, 29 Sep -2012) | 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 1391368 active rules added since last -mass-check ------------------------------------------------------------------------- -r1391669 | axb | 2012-09-28 21:49:39 +0000 (Fri, 28 Sep 2012) | 1 line + fixes bz #7529 - enabled AXB_XM_FORGED_OL2600 ------------------------------------------------------------------------ -r1391287 | spamassassin_role | 2012-09-28 03:08:53 +0000 (Fri, 28 Sep -2012) | 1 line +r1836883 | gbechis | 2018-07-28 09:38:39 +0000 (Sat, 28 Jul 2018) | 3 +lines - updated scores for revision 1390892 active rules added since last -mass-check ------------------------------------------------------------------------- -r1391000 | kmcgrail | 2012-09-27 13:25:01 +0000 (Thu, 27 Sep 2012) | 1 -line + Add possibility to match multiple rules + for a single uri, bz #7595 - removing SUBJ_YOUR_DEBT from all files due to poor S/O ------------------------------------------------------------------------ -r1390968 | kmcgrail | 2012-09-27 12:33:12 +0000 (Thu, 27 Sep 2012) | 1 -line +r1836855 | gbechis | 2018-07-27 18:03:13 +0000 (Fri, 27 Jul 2018) | 2 +lines - removing SUBJ_YOUR_DEBT due to poor S/O ------------------------------------------------------------------------- -r1390871 | axb | 2012-09-27 07:50:47 +0000 (Thu, 27 Sep 2012) | 1 line + improve tests - Initial "automasscheck-minimal" commit - needs testing and documentation ------------------------------------------------------------------------ -r1390870 | axb | 2012-09-27 07:49:30 +0000 (Thu, 27 Sep 2012) | 1 line +r1836516 | gbechis | 2018-07-23 21:23:37 +0000 (Mon, 23 Jul 2018) | 2 +lines - Initial "automasscheck-minimal" commit - needs testing and documentation ------------------------------------------------------------------------- -r1390866 | axb | 2012-09-27 07:01:16 +0000 (Thu, 27 Sep 2012) | 1 line + Add Mail::SpamAssassin::Plugin::URILocalBL regression tests - disabled FSL_RCVD_USER to avoid overlap similar rule with better hit rate ------------------------------------------------------------------------ -r1390861 | axb | 2012-09-27 06:19:19 +0000 (Thu, 27 Sep 2012) | 1 line +r1836275 | gbechis | 2018-07-19 14:19:48 +0000 (Thu, 19 Jul 2018) | 2 +lines - Disabled overlapping rules - disabled ignored score entries ------------------------------------------------------------------------- -r1390817 | spamassassin_role | 2012-09-27 03:06:02 +0000 (Thu, 27 Sep -2012) | 1 line + Mail::SpamAssassin::Plugin::RelayCountry regression tests - updated scores for revision 1390330 active rules added since last -mass-check ------------------------------------------------------------------------ -r1390263 | spamassassin_role | 2012-09-26 02:57:33 +0000 (Wed, 26 Sep -2012) | 1 line +r1835030 | gbechis | 2018-07-03 22:20:19 +0000 (Tue, 03 Jul 2018) | 2 +lines - updated scores for revision 1389758 active rules added since last -mass-check ------------------------------------------------------------------------- -r1389694 | spamassassin_role | 2012-09-25 03:07:48 +0000 (Tue, 25 Sep -2012) | 1 line + make it work even if SA is not installed - updated scores for revision 1389247 active rules added since last -mass-check ------------------------------------------------------------------------ -r1389191 | spamassassin_role | 2012-09-24 03:04:12 +0000 (Mon, 24 Sep -2012) | 1 line +r1834725 | gbechis | 2018-06-30 07:01:43 +0000 (Sat, 30 Jun 2018) | 2 +lines - updated scores for revision 1388977 active rules added since last -mass-check ------------------------------------------------------------------------- -r1388981 | axb | 2012-09-23 08:58:46 +0000 (Sun, 23 Sep 2012) | 1 line + typo in man page - added ukrpost.ua ------------------------------------------------------------------------ -r1388951 | spamassassin_role | 2012-09-23 03:10:10 +0000 (Sun, 23 Sep -2012) | 1 line +r1834723 | gbechis | 2018-06-30 06:37:15 +0000 (Sat, 30 Jun 2018) | 3 +lines - updated scores for revision 1388752 active rules added since last -mass-check ------------------------------------------------------------------------- -r1388732 | spamassassin_role | 2012-09-22 03:15:14 +0000 (Sat, 22 Sep -2012) | 1 line + correct syntax for GRANT with PostgreSQL + bz 7281 - updated scores for revision 1388377 active rules added since last -mass-check ------------------------------------------------------------------------ -r1388310 | spamassassin_role | 2012-09-21 03:14:46 +0000 (Fri, 21 Sep -2012) | 1 line +r1834722 | gbechis | 2018-06-30 06:12:21 +0000 (Sat, 30 Jun 2018) | 5 +lines - updated scores for revision 1387911 active rules added since last -mass-check ------------------------------------------------------------------------- -r1387848 | spamassassin_role | 2012-09-20 03:23:37 +0000 (Thu, 20 Sep -2012) | 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 1387490 active rules added since last -mass-check ------------------------------------------------------------------------ -r1387594 | mmartinec | 2012-09-19 13:42:42 +0000 (Wed, 19 Sep 2012) | 1 +r1834452 | billcole | 2018-06-26 17:37:23 +0000 (Tue, 26 Jun 2018) | 1 line - Bug 6837: (was: spamd does not require IO::Socket::IP) - spamd reports -failed eval attempt in a required module as an error ------------------------------------------------------------------------- -r1387505 | axb | 2012-09-19 09:45:13 +0000 (Wed, 19 Sep 2012) | 1 line - - disabled - bad performance/hit rate ------------------------------------------------------------------------- -r1387440 | spamassassin_role | 2012-09-19 03:14:12 +0000 (Wed, 19 Sep -2012) | 1 line - - updated scores for revision 1387055 active rules added since last -mass-check ------------------------------------------------------------------------- -r1387137 | axb | 2012-09-18 13:15:54 +0000 (Tue, 18 Sep 2012) | 1 line - - removed forced scores for disabled rules (mainly HS_*) ------------------------------------------------------------------------- -r1386993 | axb | 2012-09-18 05:40:15 +0000 (Tue, 18 Sep 2012) | 3 lines - - removed - publish DNS_FROM_RFC_BOGUSMX - publish DNS_FROM_RFC_DSN ------------------------------------------------------------------------- -r1386975 | spamassassin_role | 2012-09-18 03:15:19 +0000 (Tue, 18 Sep -2012) | 1 line - - updated scores for revision 1386514 active rules added since last -mass-check ------------------------------------------------------------------------- -r1386456 | spamassassin_role | 2012-09-17 03:13:24 +0000 (Mon, 17 Sep -2012) | 1 line - - updated scores for revision 1385232 active rules added since last -mass-check ------------------------------------------------------------------------- -r1385211 | spamassassin_role | 2012-09-16 03:21:55 +0000 (Sun, 16 Sep -2012) | 1 line - - updated scores for revision 1385031 active rules added since last -mass-check ------------------------------------------------------------------------- -r1385127 | axb | 2012-09-15 17:02:56 +0000 (Sat, 15 Sep 2012) | 1 line - - removed rfc-ignorant.org ------------------------------------------------------------------------- -r1385004 | spamassassin_role | 2012-09-15 03:24:55 +0000 (Sat, 15 Sep -2012) | 1 line - - updated scores for revision 1384686 active rules added since last -mass-check ------------------------------------------------------------------------- -r1384667 | axb | 2012-09-14 07:27:53 +0000 (Fri, 14 Sep 2012) | 1 line - - added "ifplugin Mail::SpamAssassin::Plugin::Bayes" in lang files + Test for bug 7591 ------------------------------------------------------------------------ -r1384631 | spamassassin_role | 2012-09-14 03:17:55 +0000 (Fri, 14 Sep -2012) | 1 line - - updated scores for revision 1384236 active rules added since last -mass-check ------------------------------------------------------------------------- -r1384196 | spamassassin_role | 2012-09-13 03:28:05 +0000 (Thu, 13 Sep -2012) | 1 line - - updated scores for revision 1383849 active rules added since last -mass-check ------------------------------------------------------------------------- -r1383742 | spamassassin_role | 2012-09-12 03:14:16 +0000 (Wed, 12 Sep -2012) | 1 line - - updated scores for revision 1383293 active rules added since last -mass-check ------------------------------------------------------------------------- -r1383230 | spamassassin_role | 2012-09-11 03:19:31 +0000 (Tue, 11 Sep -2012) | 1 line - - updated scores for revision 1382695 active rules added since last -mass-check ------------------------------------------------------------------------- -r1382632 | spamassassin_role | 2012-09-10 03:23:24 +0000 (Mon, 10 Sep -2012) | 1 line - - updated scores for revision 1382427 active rules added since last -mass-check ------------------------------------------------------------------------- -r1382394 | spamassassin_role | 2012-09-09 03:22:12 +0000 (Sun, 09 Sep -2012) | 1 line - - updated scores for revision 1382249 active rules added since last -mass-check ------------------------------------------------------------------------- -r1382239 | jhardin | 2012-09-08 04:36:43 +0000 (Sat, 08 Sep 2012) | 1 line - - Add rules-all debug channel: list rule name before execution to find -runaway rule ------------------------------------------------------------------------- -r1382238 | jhardin | 2012-09-08 04:25:20 +0000 (Sat, 08 Sep 2012) | 1 line - - __FROM_12LTRDOM_1 FP reduction ------------------------------------------------------------------------- -r1382228 | spamassassin_role | 2012-09-08 03:09:51 +0000 (Sat, 08 Sep -2012) | 1 line - - updated scores for revision 1381936 active rules added since last -mass-check ------------------------------------------------------------------------- -r1382118 | kmcgrail | 2012-09-07 18:35:25 +0000 (Fri, 07 Sep 2012) | 1 +r1834327 | billcole | 2018-06-25 13:34:44 +0000 (Mon, 25 Jun 2018) | 1 line - Added overlap meta rule for BILLION_DOLLARS and US_DOLLARS_3 + REALLY revert whitewash fix of t/idn_dots.t ------------------------------------------------------------------------ -r1381846 | spamassassin_role | 2012-09-07 03:10:48 +0000 (Fri, 07 Sep -2012) | 1 line - - updated scores for revision 1381532 active rules added since last -mass-check ------------------------------------------------------------------------- -r1381591 | mmartinec | 2012-09-06 13:17:24 +0000 (Thu, 06 Sep 2012) | 1 +r1834325 | billcole | 2018-06-25 13:30:17 +0000 (Mon, 25 Jun 2018) | 1 line - Bug 6830: check_body_length - provide a has_check_body_length feature -test capability, deal with truncated messages ------------------------------------------------------------------------- -r1381483 | axb | 2012-09-06 07:07:09 +0000 (Thu, 06 Sep 2012) | 1 line - - updated descriptions as per SA users thread + KAM comments ------------------------------------------------------------------------- -r1381466 | spamassassin_role | 2012-09-06 03:06:19 +0000 (Thu, 06 Sep -2012) | 1 line - - updated scores for revision 1381077 active rules added since last -mass-check + Revert whitewash fix of t/idn_dots.t ------------------------------------------------------------------------ -r1381251 | jhardin | 2012-09-05 17:09:44 +0000 (Wed, 05 Sep 2012) | 1 line - - Limit score generated for FILL_THIS_FORM_SHORT ------------------------------------------------------------------------- -r1380958 | spamassassin_role | 2012-09-05 03:05:38 +0000 (Wed, 05 Sep -2012) | 1 line - - updated scores for revision 1380492 active rules added since last -mass-check ------------------------------------------------------------------------- -r1380441 | kmcgrail | 2012-09-04 03:16:41 +0000 (Tue, 04 Sep 2012) | 1 +r1834218 | billcole | 2018-06-23 17:21:42 +0000 (Sat, 23 Jun 2018) | 1 line - Adding test for version 3.4 for eval for body length ------------------------------------------------------------------------- -r1380439 | spamassassin_role | 2012-09-04 03:06:17 +0000 (Tue, 04 Sep -2012) | 1 line - - updated scores for revision 1380170 active rules added since last -mass-check ------------------------------------------------------------------------- -r1380119 | spamassassin_role | 2012-09-03 03:08:42 +0000 (Mon, 03 Sep -2012) | 1 line - - updated scores for revision 1379932 active rules added since last -mass-check + add 'use utf8' for older Perl ------------------------------------------------------------------------ -r1379912 | spamassassin_role | 2012-09-02 03:02:07 +0000 (Sun, 02 Sep -2012) | 1 line - - updated scores for revision 1379722 active rules added since last -mass-check ------------------------------------------------------------------------- -r1379563 | axb | 2012-08-31 19:55:39 +0000 (Fri, 31 Aug 2012) | 1 line - - added wanadoo.fr ------------------------------------------------------------------------- -r1378630 | jhardin | 2012-08-29 16:20:22 +0000 (Wed, 29 Aug 2012) | 1 line - - Add rule for "data:" URI per -https://isc.sans.edu/diary.html?storyid=13996 ------------------------------------------------------------------------- -r1378186 | mmartinec | 2012-08-28 15:47:14 +0000 (Tue, 28 Aug 2012) | 1 +r1834151 | kmcgrail | 2018-06-22 18:09:19 +0000 (Fri, 22 Jun 2018) | 1 line - remove a (now)redundant test in listpromotable (Bug 6820) + Working on idn_dots.t test failures for RC4 ------------------------------------------------------------------------ -r1377188 | spamassassin_role | 2012-08-25 03:28:44 +0000 (Sat, 25 Aug -2012) | 1 line +r1833929 | gbechis | 2018-06-20 17:16:33 +0000 (Wed, 20 Jun 2018) | 3 +lines - updated scores for revision 1376865 active rules added since last -mass-check ------------------------------------------------------------------------- -r1376817 | spamassassin_role | 2012-08-24 03:26:43 +0000 (Fri, 24 Aug -2012) | 1 line + silence a warning if GeoIP v6 database is not installed + but a v6 address is on relay headers - updated scores for revision 1376408 active rules added since last -mass-check ------------------------------------------------------------------------ -r1376355 | spamassassin_role | 2012-08-23 03:21:41 +0000 (Thu, 23 Aug -2012) | 1 line +r1833660 | gbechis | 2018-06-17 09:41:02 +0000 (Sun, 17 Jun 2018) | 11 +lines - updated scores for revision 1375947 active rules added since last -mass-check ------------------------------------------------------------------------- -r1376090 | kmcgrail | 2012-08-22 15:10:48 +0000 (Wed, 22 Aug 2012) | 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. - Adding a less than 128 byte body test rule as well ------------------------------------------------------------------------- -r1376083 | kmcgrail | 2012-08-22 14:50:16 +0000 (Wed, 22 Aug 2012) | 1 -line + IP::Country::Fast has no ipv6 support, so a better api + should be adopted sooner or later. - Added possible improvement for check_body_length and more comments re: -bug 6830 ------------------------------------------------------------------------ -r1376077 | kmcgrail | 2012-08-22 14:43:30 +0000 (Wed, 22 Aug 2012) | 1 +r1833617 | billcole | 2018-06-15 17:33:15 +0000 (Fri, 15 Jun 2018) | 1 line - Body Length rule for Bug 6830 ------------------------------------------------------------------------- -r1375944 | axb | 2012-08-22 08:41:51 +0000 (Wed, 22 Aug 2012) | 5 lines - - Disabled - - MSHTML_6_00_2900_3199_A: no hits at all - MSHTML_6_00_2900_3199_B: no hits at all - MSHTML_6_00_2900_3199_C: no hits at all ------------------------------------------------------------------------- -r1375943 | axb | 2012-08-22 08:40:50 +0000 (Wed, 22 Aug 2012) | 6 lines - - Disabled: - - FAKE_OUTBLAZE_RCVD_168: no hits at all - FAKE_OUTBLAZE_RCVD_168_2: no hits at all - FAKE_OUTBLAZE_RCVD_PURIN: no hits at all - FAKE_OUTBLAZE_RCVD_PURIN_2: no hits at all ------------------------------------------------------------------------- -r1375942 | axb | 2012-08-22 08:39:10 +0000 (Wed, 22 Aug 2012) | 5 lines - - GAMES: no hits at all - __GAMES_BODY: no hits at all - # used in: GAMES - __GAMES_SUBJ: no hits at all - # used in: GAMES + Reverting prematurely-committed changes ------------------------------------------------------------------------ -r1375941 | axb | 2012-08-22 08:38:07 +0000 (Wed, 22 Aug 2012) | 2 lines - - GMD_R_DOT_HTML: no hits at all - JM_MID_STORM: no hits at all ------------------------------------------------------------------------- -r1375884 | spamassassin_role | 2012-08-22 03:16:18 +0000 (Wed, 22 Aug -2012) | 1 line - - updated scores for revision 1375431 active rules added since last -mass-check ------------------------------------------------------------------------- -r1375379 | spamassassin_role | 2012-08-21 03:15:55 +0000 (Tue, 21 Aug -2012) | 1 line - - updated scores for revision 1374945 active rules added since last -mass-check ------------------------------------------------------------------------- -r1375208 | kmcgrail | 2012-08-20 20:30:34 +0000 (Mon, 20 Aug 2012) | 1 +r1833615 | billcole | 2018-06-15 17:23:05 +0000 (Fri, 15 Jun 2018) | 1 line - added some error checking and emails to the do-stable-update-with-scores + Corrected link to Pyzor documentation site, replacing OTHER dead SF link. ------------------------------------------------------------------------ -r1375096 | jhardin | 2012-08-20 16:38:33 +0000 (Mon, 20 Aug 2012) | 1 line +r1832678 | gbechis | 2018-06-01 11:15:23 +0000 (Fri, 01 Jun 2018) | 2 +lines - Add possible malware/phishing sign per -http://isc.sans.edu/diary.html?storyid=13921 ------------------------------------------------------------------------- -r1375095 | jhardin | 2012-08-20 16:37:18 +0000 (Mon, 20 Aug 2012) | 1 line + fix custom headers length, fix another fp via Google Groups - Tweak LOTSA_MONEY ------------------------------------------------------------------------ -r1374957 | axb | 2012-08-20 09:30:27 +0000 (Mon, 20 Aug 2012) | 15 lines - - removed "publish" for disabled out rules - - publish HS_DRUG_DOLLAR_1 - publish HS_DRUG_DOLLAR_2 - publish HS_DRUG_DOLLAR_3 - publish HS_DRUG_DOLLAR_MANY - publish HS_FORGED_OE_FW - publish HS_GETMEOFF - publish HS_INDEX_PARAM - publish HS_MEETUP_FOR_SEX - publish HS_SUBJ_NEW_SOFTWARE - publish HS_SUBJ_ONLINE_PHARMACEUTICAL - publish HS_VPXL - +r1831955 | gbechis | 2018-05-21 06:24:55 +0000 (Mon, 21 May 2018) | 2 +lines ------------------------------------------------------------------------- -r1374904 | spamassassin_role | 2012-08-20 03:19:37 +0000 (Mon, 20 Aug -2012) | 1 line + more generic regexp to match ipv6 - updated scores for revision 1374711 active rules added since last -mass-check ------------------------------------------------------------------------ -r1374505 | spamassassin_role | 2012-08-18 03:14:43 +0000 (Sat, 18 Aug -2012) | 1 line +r1831837 | gbechis | 2018-05-18 09:04:10 +0000 (Fri, 18 May 2018) | 2 +lines - updated scores for revision 1374176 active rules added since last -mass-check ------------------------------------------------------------------------- -r1374213 | mmartinec | 2012-08-17 11:58:39 +0000 (Fri, 17 Aug 2012) | 1 -line + Unbreak FORGED_GMAIL_RCVD - Bug 6829: Avoid unsightly warnings in SA::Util::DependencyInfo when gpg -is missing ------------------------------------------------------------------------ -r1374131 | spamassassin_role | 2012-08-17 03:07:43 +0000 (Fri, 17 Aug -2012) | 1 line +r1831826 | gbechis | 2018-05-18 07:13:02 +0000 (Fri, 18 May 2018) | 2 +lines - updated scores for revision 1373758 active rules added since last -mass-check ------------------------------------------------------------------------- -r1373716 | spamassassin_role | 2012-08-16 03:19:25 +0000 (Thu, 16 Aug -2012) | 1 line + Fix another fp on FORGED_GMAIL_RCVD rule - updated scores for revision 1373273 active rules added since last -mass-check ------------------------------------------------------------------------ -r1373202 | kmcgrail | 2012-08-15 04:04:03 +0000 (Wed, 15 Aug 2012) | 1 -line +r1831443 | gbechis | 2018-05-11 19:44:30 +0000 (Fri, 11 May 2018) | 2 +lines - change to mass-check to get ArchiteIterator sane defaults like the from -separator ------------------------------------------------------------------------- -r1373199 | spamassassin_role | 2012-08-15 03:10:18 +0000 (Wed, 15 Aug -2012) | 1 line + fix fp for FORGED_GMAIL_RCVD rule - updated scores for revision 1372782 active rules added since last -mass-check ------------------------------------------------------------------------ -r1373194 | kmcgrail | 2012-08-15 02:24:04 +0000 (Wed, 15 Aug 2012) | 1 +r1831329 | billcole | 2018-05-10 12:08:55 +0000 (Thu, 10 May 2018) | 1 line - Net::Patricia not as flexible as NetAddr::IP with overlapping networks. -Updated documentation to help make this more apparent and also fixed -trust_path.t to avoid tests for incompatible syntaxes. + revert r1823175 ------------------------------------------------------------------------ -r1373030 | mmartinec | 2012-08-14 19:06:35 +0000 (Tue, 14 Aug 2012) | 1 +r1831273 | billcole | 2018-05-09 17:37:07 +0000 (Wed, 09 May 2018) | 1 line - Bug 6819, more cases + Improve spamd PID detection with a fixed pidfile ------------------------------------------------------------------------ -r1372996 | mmartinec | 2012-08-14 17:54:31 +0000 (Tue, 14 Aug 2012) | 1 +r1831272 | billcole | 2018-05-09 17:35:07 +0000 (Wed, 09 May 2018) | 1 line - minor docs fix in RelayCountry.pm ------------------------------------------------------------------------- -r1372973 | spamassassin_role | 2012-08-14 17:11:20 +0000 (Tue, 14 Aug -2012) | 1 line - - updated scores for revision 1372782 active rules added since last -mass-check ------------------------------------------------------------------------- -r1372304 | hege | 2012-08-13 08:06:26 +0000 (Mon, 13 Aug 2012) | 2 lines - - Bug 6823: Last body line skipped if multipart end boundary missing - ------------------------------------------------------------------------- -r1372248 | spamassassin_role | 2012-08-13 03:08:27 +0000 (Mon, 13 Aug -2012) | 1 line - - updated scores for revision 1372057 active rules added since last -mass-check ------------------------------------------------------------------------- -r1372142 | axb | 2012-08-12 16:15:50 +0000 (Sun, 12 Aug 2012) | 1 line - - added outlook.com ------------------------------------------------------------------------- -r1372141 | axb | 2012-08-12 16:14:19 +0000 (Sun, 12 Aug 2012) | 1 line - - disabled lookups ------------------------------------------------------------------------- -r1372140 | axb | 2012-08-12 16:13:19 +0000 (Sun, 12 Aug 2012) | 1 line - - disabled lookups + Decouple mass-check from "base" perl ------------------------------------------------------------------------ -r1372139 | axb | 2012-08-12 16:13:01 +0000 (Sun, 12 Aug 2012) | 1 line - - disabled lookups ------------------------------------------------------------------------- -r1372135 | axb | 2012-08-12 15:48:11 +0000 (Sun, 12 Aug 2012) | 2 lines - - disabled as per -https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6220 +r1831073 | gbechis | 2018-05-07 06:37:50 +0000 (Mon, 07 May 2018) | 3 +lines ------------------------------------------------------------------------- -r1372051 | kmcgrail | 2012-08-12 06:48:47 +0000 (Sun, 12 Aug 2012) | 1 -line + Enforce a C locale when logging to stder + bz #7305 - more logic for rpm-based perl and lib64 issues - bug 6809 ------------------------------------------------------------------------ -r1372048 | spamassassin_role | 2012-08-12 02:59:18 +0000 (Sun, 12 Aug -2012) | 1 line +r1829671 | gbechis | 2018-04-20 17:45:03 +0000 (Fri, 20 Apr 2018) | 2 +lines - updated scores for revision 1371891 active rules added since last -mass-check ------------------------------------------------------------------------- -r1371943 | axb | 2012-08-11 13:08:37 +0000 (Sat, 11 Aug 2012) | 1 line + Test spamc also with --option=value case - Updated missing .ni entries ------------------------------------------------------------------------ -r1370995 | kmcgrail | 2012-08-08 22:24:00 +0000 (Wed, 08 Aug 2012) | 1 -line +r1829628 | gbechis | 2018-04-20 06:48:21 +0000 (Fri, 20 Apr 2018) | 3 +lines - Added some small debug texts ------------------------------------------------------------------------- -r1370940 | kmcgrail | 2012-08-08 20:17:17 +0000 (Wed, 08 Aug 2012) | 1 -line + too much free(3) will kill --reporttype=option handling + problem spotted by Reio Remma, thanks - Added warning that these dir is possibly replaced by -rulesrc/sandbox/dos/new-rule-score-gen/ ------------------------------------------------------------------------ -r1370938 | kmcgrail | 2012-08-08 20:16:05 +0000 (Wed, 08 Aug 2012) | 1 -line +r1829033 | gbechis | 2018-04-13 06:45:35 +0000 (Fri, 13 Apr 2018) | 5 +lines - updating the correct generate-new-scores file ------------------------------------------------------------------------- -r1370926 | kmcgrail | 2012-08-08 20:05:01 +0000 (Wed, 08 Aug 2012) | 1 -line + 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. - changed masscheck to use 84 months of HAM up from 72 ------------------------------------------------------------------------ -r1370900 | kmcgrail | 2012-08-08 19:17:57 +0000 (Wed, 08 Aug 2012) | 1 +r1828218 | kmcgrail | 2018-04-03 11:28:11 +0000 (Tue, 03 Apr 2018) | 1 line - small misspelling + Adding Manifest items fo3 3.42 ------------------------------------------------------------------------ -r1370799 | kmcgrail | 2012-08-08 15:09:06 +0000 (Wed, 08 Aug 2012) | 1 +r1826916 | billcole | 2018-03-16 03:15:19 +0000 (Fri, 16 Mar 2018) | 1 line - adding some debug to generate-new-scores for bug 6821 + added optional support for SHA256 in addition to or instead of SHA1 +validation ------------------------------------------------------------------------ -r1370784 | kmcgrail | 2012-08-08 14:24:01 +0000 (Wed, 08 Aug 2012) | 1 -line +r1826822 | gbechis | 2018-03-15 14:27:09 +0000 (Thu, 15 Mar 2018) | 2 +lines - Adding parens on regex to define $1 for bug 6820 ------------------------------------------------------------------------- -r1370753 | kmcgrail | 2012-08-08 13:11:42 +0000 (Wed, 08 Aug 2012) | 1 -line + fix for perl older than 5.24 - DEBUG for bug 6820 ------------------------------------------------------------------------ -r1369788 | axb | 2012-08-06 11:40:01 +0000 (Mon, 06 Aug 2012) | 3 lines +r1826771 | gbechis | 2018-03-15 07:33:00 +0000 (Thu, 15 Mar 2018) | 4 +lines - util_rb_2tld no-ip.co.uk should be + If there are rules present in score but not in .cf files a warning is +printed, + shut up the warning. + bz 7535 - util_rb_3tld no-ip.co.uk ------------------------------------------------------------------------ -r1369746 | axb | 2012-08-06 08:20:30 +0000 (Mon, 06 Aug 2012) | 9 lines - - added: +r1826742 | gbechis | 2018-03-14 17:36:30 +0000 (Wed, 14 Mar 2018) | 3 +lines - util_rb_2tld no-ip.biz - util_rb_2tld no-ip.ca - util_rb_2tld no-ip.co.uk - util_rb_2tld no-ip.com - util_rb_2tld no-ip.info - util_rb_2tld no-ip.net - util_rb_2tld no-ip.org ------------------------------------------------------------------------- -r1369738 | axb | 2012-08-06 07:25:05 +0000 (Mon, 06 Aug 2012) | 2 lines + detect more http[s] url mismatches + bz 6977 - Added co.cm com.cm net.cm - (http://wiki.rrpproxy.net/CM) ------------------------------------------------------------------------ -r1367840 | khopesh | 2012-08-01 01:39:21 +0000 (Wed, 01 Aug 2012) | 1 line +r1826740 | gbechis | 2018-03-14 17:26:02 +0000 (Wed, 14 Mar 2018) | 2 +lines - misc FP resolution for URI_HEX ------------------------------------------------------------------------- -r1367837 | khopesh | 2012-08-01 01:38:45 +0000 (Wed, 01 Aug 2012) | 1 line + fix utf8 mode - bug 6814 ------------------------------------------------------------------------ -r1367634 | mmartinec | 2012-07-31 15:59:09 +0000 (Tue, 31 Jul 2012) | 1 +r1826582 | billcole | 2018-03-12 17:49:59 +0000 (Mon, 12 Mar 2018) | 1 line - Bug 6819: Avoiding some DNS lookup failure warnings + Update documentation of 'eval' rule method source, sanity-check method +calls. Fixes Bug #7558 ------------------------------------------------------------------------ -r1367116 | mmartinec | 2012-07-30 15:20:40 +0000 (Mon, 30 Jul 2012) | 1 +r1826356 | billcole | 2018-03-09 16:02:43 +0000 (Fri, 09 Mar 2018) | 1 line - Bug 6819, one more detail + Partial fix for bug 7558 ------------------------------------------------------------------------ -r1366003 | jhardin | 2012-07-26 14:06:48 +0000 (Thu, 26 Jul 2012) | 1 line - - Tweak LOTSA_MONEY, add more french variants ------------------------------------------------------------------------- -r1365983 | mmartinec | 2012-07-26 13:29:26 +0000 (Thu, 26 Jul 2012) | 1 -line +r1826202 | gbechis | 2018-03-08 10:48:04 +0000 (Thu, 08 Mar 2018) | 3 +lines - Bug 6819: Avoiding some DNS lookup failure warnings ------------------------------------------------------------------------- -r1365860 | jhardin | 2012-07-26 01:03:38 +0000 (Thu, 26 Jul 2012) | 1 line + add homedir parameter in dccproc call + RedHat bz 1532139 - Relax HTML_ATTACH a bit, Content_Type header may not contain a filename; -add HTML attachment obfu malware rule for zip MIME type + html filename ------------------------------------------------------------------------ -r1365644 | jhardin | 2012-07-25 15:56:45 +0000 (Wed, 25 Jul 2012) | 1 line +r1826187 | gbechis | 2018-03-08 08:17:53 +0000 (Thu, 08 Mar 2018) | 3 +lines - HDRS_LCASE FP avoidance ------------------------------------------------------------------------- -r1365206 | mmartinec | 2012-07-24 18:25:20 +0000 (Tue, 24 Jul 2012) | 1 -line + fix utf8 decoding in some corner cases + bz 7520 - fix a perl 5.17 warning about unquoted "{" in a regexp - in 20_basic.cf ------------------------------------------------------------------------ -r1365195 | mmartinec | 2012-07-24 18:06:16 +0000 (Tue, 24 Jul 2012) | 1 +r1826179 | billcole | 2018-03-08 06:41:57 +0000 (Thu, 08 Mar 2018) | 1 line - fix a perl 5.17 warning about unquoted "{" in a regexp ------------------------------------------------------------------------- -r1362834 | axb | 2012-07-18 09:50:50 +0000 (Wed, 18 Jul 2012) | 1 line - - disabled hstern "no hits at all" rules ------------------------------------------------------------------------- -r1361596 | jhardin | 2012-07-14 21:54:55 +0000 (Sat, 14 Jul 2012) | 1 line - - Add some MSGID rules to possibly help tune HDRS_LCASE ------------------------------------------------------------------------- -r1359162 | jhardin | 2012-07-09 13:29:45 +0000 (Mon, 09 Jul 2012) | 1 line - - HDRS_LCASE tuning, more LOTSA_MONEY combos, "spam bill 1618" showing up -again so add rules in case it gets popular ------------------------------------------------------------------------- -r1358492 | spamassassin_role | 2012-07-07 02:54:24 +0000 (Sat, 07 Jul -2012) | 1 line - - updated scores for revision 1358082 active rules added since last -mass-check ------------------------------------------------------------------------- -r1358028 | spamassassin_role | 2012-07-06 03:00:17 +0000 (Fri, 06 Jul -2012) | 1 line - - updated scores for revision 1357494 active rules added since last -mass-check ------------------------------------------------------------------------- -r1358021 | khopesh | 2012-07-06 01:34:56 +0000 (Fri, 06 Jul 2012) | 1 line - - removed copyright notice (relying upon the Berne Convention's automatic -copyright) to comply with -http://www.apache.org/dev/apply-license.html#contributor-copyright ------------------------------------------------------------------------- -r1357834 | khopesh | 2012-07-05 19:44:58 +0000 (Thu, 05 Jul 2012) | 1 line - - relicensed ------------------------------------------------------------------------- -r1357449 | spamassassin_role | 2012-07-05 03:02:44 +0000 (Thu, 05 Jul -2012) | 1 line - - updated scores for revision 1357175 active rules added since last -mass-check ------------------------------------------------------------------------- -r1357280 | jhardin | 2012-07-04 14:43:04 +0000 (Wed, 04 Jul 2012) | 1 line - - Reduce generated score limit on some rules poorly represented in -masscheck corpora until they are better tuned ------------------------------------------------------------------------- -r1357172 | axb | 2012-07-04 08:47:16 +0000 (Wed, 04 Jul 2012) | 1 line - - Disabled "no hits at all" rules ------------------------------------------------------------------------- -r1357048 | spamassassin_role | 2012-07-04 03:02:45 +0000 (Wed, 04 Jul -2012) | 1 line - - updated scores for revision 1356619 active rules added since last -mass-check ------------------------------------------------------------------------- -r1356883 | jhardin | 2012-07-03 19:35:18 +0000 (Tue, 03 Jul 2012) | 1 line - - Reduce generated score limit on some rules poorly represented in -masscheck corpora until they are better tuned ------------------------------------------------------------------------- -r1356595 | axb | 2012-07-03 07:45:58 +0000 (Tue, 03 Jul 2012) | 1 line - - Fix for Bug 6813 + Fix for Bug #7557 ------------------------------------------------------------------------ -r1356555 | spamassassin_role | 2012-07-03 03:03:05 +0000 (Tue, 03 Jul -2012) | 1 line - - updated scores for revision 1356113 active rules added since last -mass-check ------------------------------------------------------------------------- -r1356526 | jhardin | 2012-07-03 00:01:14 +0000 (Tue, 03 Jul 2012) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1356270 | jhardin | 2012-07-02 14:54:08 +0000 (Mon, 02 Jul 2012) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1356240 | jhardin | 2012-07-02 14:16:20 +0000 (Mon, 02 Jul 2012) | 1 line - - More FP avoidance, score limits ------------------------------------------------------------------------- -r1356060 | spamassassin_role | 2012-07-02 03:08:01 +0000 (Mon, 02 Jul -2012) | 1 line - - updated scores for revision 1355863 active rules added since last -mass-check ------------------------------------------------------------------------- -r1355764 | jhardin | 2012-06-30 16:41:40 +0000 (Sat, 30 Jun 2012) | 1 line - - More FP avoidance, score limits ------------------------------------------------------------------------- -r1355622 | spamassassin_role | 2012-06-30 02:57:53 +0000 (Sat, 30 Jun -2012) | 1 line - - updated scores for revision 1355272 active rules added since last -mass-check ------------------------------------------------------------------------- -r1355224 | spamassassin_role | 2012-06-29 03:03:45 +0000 (Fri, 29 Jun -2012) | 1 line - - updated scores for revision 1354859 active rules added since last -mass-check ------------------------------------------------------------------------- -r1354802 | spamassassin_role | 2012-06-28 02:57:52 +0000 (Thu, 28 Jun -2012) | 1 line - - updated scores for revision 1354373 active rules added since last -mass-check ------------------------------------------------------------------------- -r1354654 | mmartinec | 2012-06-27 18:15:42 +0000 (Wed, 27 Jun 2012) | 1 +r1826177 | billcole | 2018-03-08 05:33:13 +0000 (Thu, 08 Mar 2018) | 1 line - Bug 6803: disable test X_URIBL_Y_FFD in t/dnsbl_subtests.t, no longer -applies + Fix for bug #7556 ------------------------------------------------------------------------ -r1354598 | mmartinec | 2012-06-27 16:01:43 +0000 (Wed, 27 Jun 2012) | 1 -line +r1825725 | gbechis | 2018-03-02 13:57:33 +0000 (Fri, 02 Mar 2018) | 2 +lines - Bug 6803: Add input validation to responses from DNSBL queries ------------------------------------------------------------------------- -r1354506 | mmartinec | 2012-06-27 13:58:21 +0000 (Wed, 27 Jun 2012) | 1 -line + Add HashBL (Email Blocklist (EBL), http://msbl.org/ebl.html) plugin, bz +#7548 - Bug 6805: subject_is_all_caps - strip prefixes like Re:, Fwd: ------------------------------------------------------------------------ -r1354161 | mmartinec | 2012-06-26 18:46:05 +0000 (Tue, 26 Jun 2012) | 1 -line +r1825185 | gbechis | 2018-02-24 00:37:46 +0000 (Sat, 24 Feb 2018) | 4 +lines - Bug 6808: AsyncLoop and Perl 5.16.0 ------------------------------------------------------------------------- -r1354108 | mmartinec | 2012-06-26 16:51:18 +0000 (Tue, 26 Jun 2012) | 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 - Bug 6811 (lost one line) ------------------------------------------------------------------------ -r1354103 | mmartinec | 2012-06-26 16:33:53 +0000 (Tue, 26 Jun 2012) | 1 -line +r1825177 | gbechis | 2018-02-23 22:50:32 +0000 (Fri, 23 Feb 2018) | 3 +lines - Bug 6811: Add option to sa-learn (and ArchiveIterator) to override a -built-in message size limit ------------------------------------------------------------------------- -r1354072 | mmartinec | 2012-06-26 15:49:50 +0000 (Tue, 26 Jun 2012) | 1 -line + document when --mbox or --mbx parameters are needed + bz #6857 - Bug 6703 fix ------------------------------------------------------------------------ -r1353987 | mmartinec | 2012-06-26 12:23:34 +0000 (Tue, 26 Jun 2012) | 1 -line +r1825175 | gbechis | 2018-02-23 22:44:45 +0000 (Fri, 23 Feb 2018) | 4 +lines - *@survey.ebay.com signed by ebay.com: updated 60_adsp_override_dkim.cf -and 60_whitelist_dkim.cf ------------------------------------------------------------------------- -r1353840 | axb | 2012-06-26 07:14:37 +0000 (Tue, 26 Jun 2012) | 2 lines + In OpenBSD /usr/sbin/sysctl is a symlink to /sbin/sysctl + fix path, no functional change + bz #7545 - See bug 6810 - removed 5/8 from RCVD_ILLEGAL_IP - allocated by Ripe. ------------------------------------------------------------------------ -r1353647 | jhardin | 2012-06-25 16:42:50 +0000 (Mon, 25 Jun 2012) | 1 line +r1825157 | gbechis | 2018-02-23 18:25:25 +0000 (Fri, 23 Feb 2018) | 5 +lines - More FP avoidance ------------------------------------------------------------------------- -r1353067 | jhardin | 2012-06-23 05:33:16 +0000 (Sat, 23 Jun 2012) | 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 - More FP avoidance, score limits ------------------------------------------------------------------------ -r1352762 | spamassassin_role | 2012-06-22 03:01:27 +0000 (Fri, 22 Jun -2012) | 1 line +r1825154 | gbechis | 2018-02-23 18:17:29 +0000 (Fri, 23 Feb 2018) | 3 +lines - updated scores for revision 1352457 active rules added since last -mass-check ------------------------------------------------------------------------- -r1352397 | spamassassin_role | 2012-06-21 03:00:27 +0000 (Thu, 21 Jun -2012) | 1 line + check for freemail for all emails in a Reply-To header + bz #6664 - updated scores for revision 1351995 active rules added since last -mass-check ------------------------------------------------------------------------ -r1351926 | spamassassin_role | 2012-06-20 02:59:25 +0000 (Wed, 20 Jun -2012) | 1 line +r1825032 | gbechis | 2018-02-22 08:20:37 +0000 (Thu, 22 Feb 2018) | 3 +lines - updated scores for revision 1351605 active rules added since last -mass-check ------------------------------------------------------------------------- -r1351564 | spamassassin_role | 2012-06-19 03:01:46 +0000 (Tue, 19 Jun -2012) | 1 line + Check if $socket is defined and print error accordingly + bz 7380 - updated scores for revision 1351242 active rules added since last -mass-check ------------------------------------------------------------------------ -r1351397 | mmartinec | 2012-06-18 16:01:18 +0000 (Mon, 18 Jun 2012) | 1 +r1825018 | billcole | 2018-02-21 23:46:08 +0000 (Wed, 21 Feb 2018) | 1 line - nitpick, spelling ------------------------------------------------------------------------- -r1351382 | jhardin | 2012-06-18 15:11:28 +0000 (Mon, 18 Jun 2012) | 1 line - - Fix make_install.t 64-bit libs tests for Gentoo ------------------------------------------------------------------------- -r1351202 | spamassassin_role | 2012-06-18 03:00:10 +0000 (Mon, 18 Jun -2012) | 1 line - - updated scores for revision 1351075 active rules added since last -mass-check + Group switching code for bugs #7554 and #7555 ------------------------------------------------------------------------ -r1351197 | jhardin | 2012-06-18 02:17:27 +0000 (Mon, 18 Jun 2012) | 1 line +r1824931 | gbechis | 2018-02-21 07:33:02 +0000 (Wed, 21 Feb 2018) | 2 +lines - More FP avoidance ------------------------------------------------------------------------- -r1350952 | jhardin | 2012-06-16 16:21:14 +0000 (Sat, 16 Jun 2012) | 1 line + Add an example of a rule that matches an ASN, bz 6929 - More FP avoidance ------------------------------------------------------------------------ -r1350949 | jhardin | 2012-06-16 16:12:37 +0000 (Sat, 16 Jun 2012) | 1 line +r1824688 | gbechis | 2018-02-18 18:35:40 +0000 (Sun, 18 Feb 2018) | 2 +lines - More FP avoidance ------------------------------------------------------------------------- -r1350948 | jhardin | 2012-06-16 16:05:31 +0000 (Sat, 16 Jun 2012) | 1 line + fix all pod errors spotted in bz 7168 and many more - More FP avoidance ------------------------------------------------------------------------ -r1350846 | spamassassin_role | 2012-06-16 03:02:09 +0000 (Sat, 16 Jun -2012) | 1 line +r1824577 | gbechis | 2018-02-17 09:47:43 +0000 (Sat, 17 Feb 2018) | 2 +lines - updated scores for revision 1350536 active rules added since last -mass-check ------------------------------------------------------------------------- -r1350842 | kmcgrail | 2012-06-16 02:50:07 +0000 (Sat, 16 Jun 2012) | 1 -line + Fix some regression tests on OpenBSD, bz 7499 - Fixing meta tag relation name ------------------------------------------------------------------------ -r1350841 | kmcgrail | 2012-06-16 02:32:13 +0000 (Sat, 16 Jun 2012) | 1 +r1823276 | kmcgrail | 2018-02-06 06:05:37 +0000 (Tue, 06 Feb 2018) | 1 line - Fix for unparseable relay suggested by Cedric Knight bug 6801 + Bug 7418 - sa-update change to handle cross platform newline better ------------------------------------------------------------------------ -r1350839 | kmcgrail | 2012-06-16 02:29:08 +0000 (Sat, 16 Jun 2012) | 1 +r1823274 | kmcgrail | 2018-02-06 05:10:42 +0000 (Tue, 06 Feb 2018) | 1 line - mbox_format_from_regex option addition bug 6703 ------------------------------------------------------------------------- -r1350456 | spamassassin_role | 2012-06-15 03:03:19 +0000 (Fri, 15 Jun -2012) | 1 line - - updated scores for revision 1350129 active rules added since last -mass-check ------------------------------------------------------------------------- -r1350079 | spamassassin_role | 2012-06-14 03:02:54 +0000 (Thu, 14 Jun -2012) | 1 line - - updated scores for revision 1349685 active rules added since last -mass-check ------------------------------------------------------------------------- -r1349620 | spamassassin_role | 2012-06-13 03:04:02 +0000 (Wed, 13 Jun -2012) | 1 line - - updated scores for revision 1349193 active rules added since last -mass-check ------------------------------------------------------------------------- -r1349125 | jhardin | 2012-06-12 05:30:56 +0000 (Tue, 12 Jun 2012) | 1 line - - Tweak FILL_THIS_FORM ------------------------------------------------------------------------- -r1349103 | spamassassin_role | 2012-06-12 03:08:46 +0000 (Tue, 12 Jun -2012) | 1 line - - updated scores for revision 1348751 active rules added since last -mass-check ------------------------------------------------------------------------- -r1348713 | spamassassin_role | 2012-06-11 03:05:01 +0000 (Mon, 11 Jun -2012) | 1 line - - updated scores for revision 1348551 active rules added since last -mass-check ------------------------------------------------------------------------- -r1348662 | jhardin | 2012-06-10 21:10:23 +0000 (Sun, 10 Jun 2012) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1348528 | jhardin | 2012-06-10 04:12:50 +0000 (Sun, 10 Jun 2012) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1348525 | spamassassin_role | 2012-06-10 03:01:18 +0000 (Sun, 10 Jun -2012) | 1 line - - updated scores for revision 1348336 active rules added since last -mass-check ------------------------------------------------------------------------- -r1348302 | spamassassin_role | 2012-06-09 03:00:34 +0000 (Sat, 09 Jun -2012) | 1 line - - updated scores for revision 1347949 active rules added since last -mass-check ------------------------------------------------------------------------- -r1348144 | jhardin | 2012-06-08 16:28:12 +0000 (Fri, 08 Jun 2012) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1348054 | axb | 2012-06-08 13:02:24 +0000 (Fri, 08 Jun 2012) | 1 line - - removed skim.com as per Bug 6804 - + Bug 7496 - speed up startup code ------------------------------------------------------------------------ -r1347871 | spamassassin_role | 2012-06-08 02:59:48 +0000 (Fri, 08 Jun -2012) | 1 line - - updated scores for revision 1347536 active rules added since last -mass-check ------------------------------------------------------------------------- -r1347616 | axb | 2012-06-07 13:42:32 +0000 (Thu, 07 Jun 2012) | 1 line - - updated 20_xmailer.cf ------------------------------------------------------------------------- -r1347344 | spamassassin_role | 2012-06-07 03:00:53 +0000 (Thu, 07 Jun -2012) | 1 line - - updated scores for revision 1346785 active rules added since last -mass-check ------------------------------------------------------------------------- -r1346908 | mmartinec | 2012-06-06 14:21:57 +0000 (Wed, 06 Jun 2012) | 1 +r1823205 | kmcgrail | 2018-02-05 16:13:03 +0000 (Mon, 05 Feb 2018) | 1 line - Bug 6798: WIFEXITED not supported in windows from Util.pm ------------------------------------------------------------------------- -r1346724 | jhardin | 2012-06-06 03:20:58 +0000 (Wed, 06 Jun 2012) | 1 line - - More FP avoidance, ACH_CANCELLED tweaking ------------------------------------------------------------------------- -r1346721 | spamassassin_role | 2012-06-06 03:01:06 +0000 (Wed, 06 Jun -2012) | 1 line - - updated scores for revision 1346294 active rules added since last -mass-check + Clean-up of unmaintained tools and files that are only maintained in +trunk - see trunk-only/ ------------------------------------------------------------------------ -r1346472 | mmartinec | 2012-06-05 17:09:15 +0000 (Tue, 05 Jun 2012) | 1 +r1823175 | kmcgrail | 2018-02-05 14:10:22 +0000 (Mon, 05 Feb 2018) | 1 line - sa-update: properly report exit status of a failed GPG call + Bug 7492 - switch from use vars to our cleanup ------------------------------------------------------------------------ -r1346458 | mmartinec | 2012-06-05 16:35:28 +0000 (Tue, 05 Jun 2012) | 1 -line +r1823171 | davej | 2018-02-05 13:34:29 +0000 (Mon, 05 Feb 2018) | 1 line - Bug 6800 (removed a redundant grep) + Bug 7417 ------------------------------------------------------------------------ -r1346448 | mmartinec | 2012-06-05 16:00:43 +0000 (Tue, 05 Jun 2012) | 1 +r1823142 | kmcgrail | 2018-02-05 09:10:12 +0000 (Mon, 05 Feb 2018) | 1 line - Bug 6800: X-Spam-Checker-Version should also show what sa-update we are -at ------------------------------------------------------------------------- -r1346219 | spamassassin_role | 2012-06-05 03:02:14 +0000 (Tue, 05 Jun -2012) | 1 line - - updated scores for revision 1345872 active rules added since last -mass-check + Bug 7491 switch test framework to Test::More ------------------------------------------------------------------------ -r1346064 | mmartinec | 2012-06-04 18:05:53 +0000 (Mon, 04 Jun 2012) | 1 +r1823126 | kmcgrail | 2018-02-05 06:20:06 +0000 (Mon, 05 Feb 2018) | 1 line - Bug 6802: a hack on three J_CHICKENPOX_* rules replacing ss with s[s] -avoids interpreting "ss" as "sharp s" + Bug 7481 - Adding build time specification of re2c binary ------------------------------------------------------------------------ -r1345864 | dlemke | 2012-06-04 08:23:35 +0000 (Mon, 04 Jun 2012) | 1 line +r1822650 | davej | 2018-01-30 14:19:37 +0000 (Tue, 30 Jan 2018) | 1 line - added sandbox folder for Daniel Lemke (initial commit) + Bug 6222 ------------------------------------------------------------------------ -r1345816 | spamassassin_role | 2012-06-04 02:51:08 +0000 (Mon, 04 Jun -2012) | 1 line - - updated scores for revision 1345631 active rules added since last -mass-check ------------------------------------------------------------------------- -r1345467 | axb | 2012-06-02 09:09:57 +0000 (Sat, 02 Jun 2012) | 2 lines - - moved URIBL_SBL_A from sandbox +r1822649 | davej | 2018-01-30 14:17:16 +0000 (Tue, 30 Jan 2018) | 1 line + Bug 7540 ------------------------------------------------------------------------ -r1345463 | axb | 2012-06-02 08:46:56 +0000 (Sat, 02 Jun 2012) | 3 lines +r1822483 | davej | 2018-01-28 22:40:16 +0000 (Sun, 28 Jan 2018) | 1 line - removed - publish FH_HELO_EQ_D_D_D_D - for disabled rule + Bug 7534 ------------------------------------------------------------------------ -r1345460 | axb | 2012-06-02 08:14:51 +0000 (Sat, 02 Jun 2012) | 1 line - - removed hardcoded scores for JM's deprecated XMAILER_* rules ------------------------------------------------------------------------- -r1345423 | spamassassin_role | 2012-06-02 03:00:09 +0000 (Sat, 02 Jun -2012) | 1 line - - updated scores for revision 1345016 active rules added since last -mass-check ------------------------------------------------------------------------- -r1345213 | axb | 2012-06-01 14:47:41 +0000 (Fri, 01 Jun 2012) | 4 lines - - removed hardcoded publish XMAILER_MIMEOLE_ * - (obsoleted JM rules) +r1822467 | davej | 2018-01-28 16:03:13 +0000 (Sun, 28 Jan 2018) | 1 line - these have been replaced by regularly updated & auto promoted -AXB_XMAILER_* /rulesrc/sandbox/axb/20_xmailer.cf) rules + Bug 6946. ------------------------------------------------------------------------ -r1344975 | spamassassin_role | 2012-06-01 02:54:24 +0000 (Fri, 01 Jun -2012) | 1 line - - updated scores for revision 1344598 active rules added since last -mass-check ------------------------------------------------------------------------- -r1344966 | jhardin | 2012-06-01 01:54:48 +0000 (Fri, 01 Jun 2012) | 1 line - - More FP avoidance ------------------------------------------------------------------------- -r1342671 | axb | 2012-05-25 15:07:31 +0000 (Fri, 25 May 2012) | 2 lines - - removed *.s3.amazonaws.com - too much potential for PFs - not enough abuse to justify ------------------------------------------------------------------------- -r1341124 | mmartinec | 2012-05-21 17:37:48 +0000 (Mon, 21 May 2012) | 1 -line - - added comments that study() is a no-op since perl 5.16.0, eliminating -related bugs ------------------------------------------------------------------------- -r1339707 | axb | 2012-05-17 16:57:47 +0000 (Thu, 17 May 2012) | 2 lines - - Initial commit for __HAS base rules +r1821749 | davej | 2018-01-20 15:26:02 +0000 (Sat, 20 Jan 2018) | 1 line + Bug 6946 ------------------------------------------------------------------------ -r1339152 | mmartinec | 2012-05-16 13:12:03 +0000 (Wed, 16 May 2012) | 1 -line +r1819502 | davej | 2017-12-29 18:37:34 +0000 (Fri, 29 Dec 2017) | 1 line - docs detail + Bug 6420 ------------------------------------------------------------------------ -r1338801 | mmartinec | 2012-05-15 17:22:06 +0000 (Tue, 15 May 2012) | 1 +r1819497 | kmcgrail | 2017-12-29 15:20:04 +0000 (Fri, 29 Dec 2017) | 1 line - Bug 6770: initial dns test eventually creates incorrect disabling of -certain plugins - change a default for dns_available from "test" to "yes" ------------------------------------------------------------------------- -r1338747 | axb | 2012-05-15 15:15:03 +0000 (Tue, 15 May 2012) | 1 line - - cleanup work in prgress + Bug 7525 - missing includes declarations in spamc ------------------------------------------------------------------------ -r1338717 | mmartinec | 2012-05-15 14:11:53 +0000 (Tue, 15 May 2012) | 1 +r1819449 | kmcgrail | 2017-12-28 23:14:24 +0000 (Thu, 28 Dec 2017) | 1 line - Bug 6769: update docs for option dns_available to match actual semantics + bug 7524 logic patch for getoptlong issues in spamc ------------------------------------------------------------------------ -r1338665 | kmcgrail | 2012-05-15 12:09:53 +0000 (Tue, 15 May 2012) | 1 +r1819447 | kmcgrail | 2017-12-28 22:49:03 +0000 (Thu, 28 Dec 2017) | 1 line - more parsing cleanup thanks to Adam Katz per bug 6549 + Bug 6970 - adding t.co url shortener ------------------------------------------------------------------------ -r1338479 | mmartinec | 2012-05-14 22:56:40 +0000 (Mon, 14 May 2012) | 1 +r1819442 | kmcgrail | 2017-12-28 22:20:16 +0000 (Thu, 28 Dec 2017) | 1 line - test spamd_sql_prefs.t failed because rules MSGID_RANDY and -DATE_IN_PAST_03_06 brought a test message over a spam threshold + bug 7524 - opt cant be freed here or getoptlong fails ------------------------------------------------------------------------ -r1338477 | mmartinec | 2012-05-14 22:52:41 +0000 (Mon, 14 May 2012) | 1 +r1816710 | kmcgrail | 2017-11-30 12:46:21 +0000 (Thu, 30 Nov 2017) | 1 line - Bug 6759: "ESMTPA;" not detected by Received.pm - fix three test cases -in rcvd_parser.t + Bug 7509 - free for spamc opt ------------------------------------------------------------------------ -r1338469 | mmartinec | 2012-05-14 22:43:39 +0000 (Mon, 14 May 2012) | 1 -line +r1815854 | jhardin | 2017-11-20 20:54:17 +0000 (Mon, 20 Nov 2017) | 1 line - Bug 5808, localize $@ in DESTROY + 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