forked from apache/spamassassin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changes
4060 lines (2770 loc) · 158 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
------------------------------------------------------------------------
r1905917 | sidney | 2022-12-11 19:21:41 +0000 (Sun, 11 Dec 2022) | 1 line
Bug 7826 - Fix a couple missed blacklist to blocklist edits in comments
------------------------------------------------------------------------
r1905889 | gbechis | 2022-12-09 15:59:31 +0000 (Fri, 09 Dec 2022) | 2
lines
unbreak when Test::Pod is not installed
------------------------------------------------------------------------
r1905879 | gbechis | 2022-12-09 09:09:55 +0000 (Fri, 09 Dec 2022) | 3
lines
remove "nice" tflags where not needed
bz #8085
------------------------------------------------------------------------
r1905870 | sidney | 2022-12-08 21:42:40 +0000 (Thu, 08 Dec 2022) | 1 line
Bug 8088 - Add -T and remove use strict and use warnings - copied
initial file from wrong template
------------------------------------------------------------------------
r1905869 | sidney | 2022-12-08 21:31:13 +0000 (Thu, 08 Dec 2022) | 1 line
Bug 8088 - Fix typo in POD documentation and add podchecker.t to
regression tests
------------------------------------------------------------------------
r1905867 | sidney | 2022-12-08 18:53:56 +0000 (Thu, 08 Dec 2022) | 1 line
Bug 8087 - Fix bug that showed up in DMARC with some subdomains
------------------------------------------------------------------------
r1905853 | hege | 2022-12-08 10:24:26 +0000 (Thu, 08 Dec 2022) | 2 lines
Bug 8016 - Remove uridnsbl_skip_domain(s)
------------------------------------------------------------------------
r1905834 | sidney | 2022-12-07 09:07:23 +0000 (Wed, 07 Dec 2022) | 1 line
remove caution against using versions of gpg that are now 15-20 years
past their stated end of life date
------------------------------------------------------------------------
r1905829 | sidney | 2022-12-07 07:00:49 +0000 (Wed, 07 Dec 2022) | 1 line
Bug 8086 - remove obsolete options and commands from build script. Also
some old comments
------------------------------------------------------------------------
r1905828 | sidney | 2022-12-07 06:59:04 +0000 (Wed, 07 Dec 2022) | 1 line
remove some garbage characters in the announcement file
------------------------------------------------------------------------
r1905823 | sidney | 2022-12-07 03:03:09 +0000 (Wed, 07 Dec 2022) | 1 line
4.0.0-rc4 RELEASED
------------------------------------------------------------------------
r1905819 | sidney | 2022-12-06 22:44:26 +0000 (Tue, 06 Dec 2022) | 1 line
preparing to release 4.0.0-rc4
------------------------------------------------------------------------
r1905818 | sidney | 2022-12-06 21:53:22 +0000 (Tue, 06 Dec 2022) | 1 line
Bug 8056 - fix yet another typo in documentation line in earlier commit
------------------------------------------------------------------------
r1905817 | sidney | 2022-12-06 21:49:03 +0000 (Tue, 06 Dec 2022) | 1 line
Bug 8056 - fix typos in documentation lines in previous commit
------------------------------------------------------------------------
r1905814 | sidney | 2022-12-06 20:56:14 +0000 (Tue, 06 Dec 2022) | 1 line
Minor edit to release build instructions documentation
------------------------------------------------------------------------
r1905811 | sidney | 2022-12-06 20:19:59 +0000 (Tue, 06 Dec 2022) | 1 line
Bug 8056 - Add .gitattributes to MANIFEST.SKIP
------------------------------------------------------------------------
r1905809 | sidney | 2022-12-06 19:48:27 +0000 (Tue, 06 Dec 2022) | 1 line
Bug 8056 - add .gitattributes required for Windows test Github Actions
to work
------------------------------------------------------------------------
r1905808 | sidney | 2022-12-06 19:35:16 +0000 (Tue, 06 Dec 2022) | 1 line
Bug 8045 - Add warning to tests about directory permissions now required
for tests to pass
------------------------------------------------------------------------
r1905790 | sidney | 2022-12-06 11:05:53 +0000 (Tue, 06 Dec 2022) | 1 line
Bug 8056 - commit Github Actions that can be used in a fork of our
Github mirror to run regression tests on Github action runners
------------------------------------------------------------------------
r1905787 | sidney | 2022-12-06 08:31:13 +0000 (Tue, 06 Dec 2022) | 1 line
Bug 8084 - exclude new perlcritic policy for bareword dir handles
------------------------------------------------------------------------
r1905783 | sidney | 2022-12-06 01:07:53 +0000 (Tue, 06 Dec 2022) | 1 line
Bug 8083 - exclude Bangs::ProhibitDebuggingModules from perlcritic tests
------------------------------------------------------------------------
r1905778 | hege | 2022-12-05 19:15:26 +0000 (Mon, 05 Dec 2022) | 2 lines
Bug 8078 - Shortcircuiting does not work as expected
------------------------------------------------------------------------
r1905769 | gbechis | 2022-12-05 15:47:59 +0000 (Mon, 05 Dec 2022) | 2
lines
"num" hashbl config regression tests
------------------------------------------------------------------------
r1905766 | gbechis | 2022-12-05 15:23:04 +0000 (Mon, 05 Dec 2022) | 2
lines
add a "num" option to check_hashbl_bodyre that removes the chars from
the match that are not numbers
------------------------------------------------------------------------
r1905737 | hege | 2022-12-04 14:04:52 +0000 (Sun, 04 Dec 2022) | 2 lines
Fix EMPTY_MESSAGE description for nosubject
------------------------------------------------------------------------
r1905736 | hege | 2022-12-04 13:59:57 +0000 (Sun, 04 Dec 2022) | 2 lines
Use nosubject for __NONEMPTY_BODY
------------------------------------------------------------------------
r1905735 | hege | 2022-12-04 13:59:35 +0000 (Sun, 04 Dec 2022) | 2 lines
Clear out old tests
------------------------------------------------------------------------
r1905734 | hege | 2022-12-04 13:47:03 +0000 (Sun, 04 Dec 2022) | 2 lines
Bug 8078 - Shortcircuiting does not work as expected
------------------------------------------------------------------------
r1905576 | gbechis | 2022-11-28 16:13:19 +0000 (Mon, 28 Nov 2022) | 3
lines
include the appropriate headers to avoid spurious test failures
when "-Wimplicit-function-declaration" compiler option is used
------------------------------------------------------------------------
r1905566 | gbechis | 2022-11-28 08:34:04 +0000 (Mon, 28 Nov 2022) | 2
lines
update url shortener as well, spotted by hege@ thanks
------------------------------------------------------------------------
r1905564 | gbechis | 2022-11-28 07:59:10 +0000 (Mon, 28 Nov 2022) | 2
lines
add s.free.fr shortener
------------------------------------------------------------------------
r1905524 | gbechis | 2022-11-25 10:04:38 +0000 (Fri, 25 Nov 2022) | 2
lines
catch more samples
------------------------------------------------------------------------
r1905523 | gbechis | 2022-11-25 09:07:36 +0000 (Fri, 25 Nov 2022) | 2
lines
catch another uri
------------------------------------------------------------------------
r1905518 | sidney | 2022-11-25 04:03:09 +0000 (Fri, 25 Nov 2022) | 1 line
test from .fun and .site TLDs
------------------------------------------------------------------------
r1905425 | gbechis | 2022-11-21 09:06:27 +0000 (Mon, 21 Nov 2022) | 2
lines
catch more uris
------------------------------------------------------------------------
r1905377 | gbechis | 2022-11-18 11:40:26 +0000 (Fri, 18 Nov 2022) | 2
lines
match more uris
------------------------------------------------------------------------
r1905376 | gbechis | 2022-11-18 10:59:09 +0000 (Fri, 18 Nov 2022) | 2
lines
fix regexp
------------------------------------------------------------------------
r1905227 | billcole | 2022-11-10 22:04:16 +0000 (Thu, 10 Nov 2022) | 3
lines
Forcing publish of 2 extremely safe rules to see if that works to get
around promotion blockage
------------------------------------------------------------------------
r1905214 | hege | 2022-11-10 07:28:04 +0000 (Thu, 10 Nov 2022) | 2 lines
Bug 7735 - Meta rules need to handle missing/unrun dependencies
------------------------------------------------------------------------
r1905160 | hege | 2022-11-08 16:08:50 +0000 (Tue, 08 Nov 2022) | 2 lines
Bug 7735 - Meta rules need to handle missing/unrun dependencies
------------------------------------------------------------------------
r1904981 | hege | 2022-11-01 20:11:58 +0000 (Tue, 01 Nov 2022) | 3 lines
Bug 7735 - Meta rules need to handle missing/unrun dependencies
- revert to old logic
------------------------------------------------------------------------
r1904928 | hege | 2022-10-30 08:07:30 +0000 (Sun, 30 Oct 2022) | 2 lines
Remove accidentally committed unneeded debug line
------------------------------------------------------------------------
r1904893 | hege | 2022-10-28 05:35:52 +0000 (Fri, 28 Oct 2022) | 2 lines
Bug 8070 - PDFInfo pdf_is_empty_body() destroys body array
------------------------------------------------------------------------
r1904865 | hege | 2022-10-27 06:46:28 +0000 (Thu, 27 Oct 2022) | 2 lines
Adjust priority of GMD_PDF_EMPTY_BODY to work around Bug 8070
------------------------------------------------------------------------
r1904837 | sidney | 2022-10-26 03:35:50 +0000 (Wed, 26 Oct 2022) | 1 line
bug 8069 - Use shortened links that are under our control so test
remains stable
------------------------------------------------------------------------
r1904818 | sidney | 2022-10-24 22:20:56 +0000 (Mon, 24 Oct 2022) | 1 line
bug 8068 - Add a delay in the test to allow for some slow test systems
------------------------------------------------------------------------
r1904811 | hege | 2022-10-24 14:03:19 +0000 (Mon, 24 Oct 2022) | 2 lines
Bug 8062 - no URL makes uridnsbl rules "unrun"
------------------------------------------------------------------------
r1904798 | hege | 2022-10-24 08:10:13 +0000 (Mon, 24 Oct 2022) | 2 lines
Some extra test code slipped through in last commit, revert
------------------------------------------------------------------------
r1904797 | hege | 2022-10-24 07:59:32 +0000 (Mon, 24 Oct 2022) | 2 lines
Bug 8061 - Fix meta handling for $suppl_attrib->{rule_hits}
------------------------------------------------------------------------
r1904779 | sidney | 2022-10-22 12:46:14 +0000 (Sat, 22 Oct 2022) | 1 line
Bug 8066 - remove unnecessary svn:eol-style property from some files in
svn repository
------------------------------------------------------------------------
r1904751 | sidney | 2022-10-20 23:11:06 +0000 (Thu, 20 Oct 2022) | 1 line
Bug 8067 - Work around error thrown by Cwd::realpath on older Windows
perl when path does not exist
------------------------------------------------------------------------
r1904709 | billcole | 2022-10-20 01:27:03 +0000 (Thu, 20 Oct 2022) | 1
line
Yet another hashbust pattern
------------------------------------------------------------------------
r1904696 | gbechis | 2022-10-19 14:02:15 +0000 (Wed, 19 Oct 2022) | 2
lines
add a Drupal uri check
------------------------------------------------------------------------
r1904678 | hege | 2022-10-18 09:29:30 +0000 (Tue, 18 Oct 2022) | 2 lines
Update tlds
------------------------------------------------------------------------
r1904676 | hege | 2022-10-18 08:24:19 +0000 (Tue, 18 Oct 2022) | 2 lines
Bug 8063 - uri not detected if two text/html parts exist
------------------------------------------------------------------------
r1904671 | sidney | 2022-10-18 06:05:42 +0000 (Tue, 18 Oct 2022) | 1 line
Bug 8066 - remove unnecessary svn:eol-style property from some files in
svn repository
------------------------------------------------------------------------
r1904667 | billcole | 2022-10-17 21:41:36 +0000 (Mon, 17 Oct 2022) | 1
line
adjusting test rules
------------------------------------------------------------------------
r1904598 | hege | 2022-10-15 12:19:43 +0000 (Sat, 15 Oct 2022) | 3 lines
Add missing debug logging for all rules in blocked DNS query, previously
only first rule was logged.
(consider this safe and trivial enough to commit without voting)
------------------------------------------------------------------------
r1904597 | hege | 2022-10-15 12:06:15 +0000 (Sat, 15 Oct 2022) | 2 lines
Fix meta documentation
------------------------------------------------------------------------
r1904529 | hege | 2022-10-11 17:40:55 +0000 (Tue, 11 Oct 2022) | 2 lines
Bug 8060 - Fix meta handling for metas without dependencies
------------------------------------------------------------------------
r1904528 | hege | 2022-10-11 17:39:03 +0000 (Tue, 11 Oct 2022) | 2 lines
Bug 8059 - Fix meta handling for URIDNSBL NS/A lookups
------------------------------------------------------------------------
r1904484 | hege | 2022-10-10 09:29:48 +0000 (Mon, 10 Oct 2022) | 2 lines
Bug 8058 - DMARC makes DNS queries with local_tests_only
------------------------------------------------------------------------
r1904481 | gbechis | 2022-10-10 06:43:47 +0000 (Mon, 10 Oct 2022) | 3
lines
check for Office 2003 markers only when needed
bz #8055
------------------------------------------------------------------------
r1904466 | sidney | 2022-10-09 03:10:56 +0000 (Sun, 09 Oct 2022) | 1 line
bug 8027 - skip extracttext tests if executable found in path with space
to avoid test failure
------------------------------------------------------------------------
r1904448 | billcole | 2022-10-08 03:27:30 +0000 (Sat, 08 Oct 2022) | 1
line
de-testing some rules
------------------------------------------------------------------------
r1904368 | gbechis | 2022-10-03 06:30:32 +0000 (Mon, 03 Oct 2022) | 2
lines
add snip.ly
------------------------------------------------------------------------
r1904337 | billcole | 2022-09-29 18:25:59 +0000 (Thu, 29 Sep 2022) | 1
line
Intuit reported as spamming on Users ML
------------------------------------------------------------------------
r1904315 | billcole | 2022-09-28 02:49:06 +0000 (Wed, 28 Sep 2022) | 1
line
wrap mimeheader rules in ifplugin.
------------------------------------------------------------------------
r1904311 | sidney | 2022-09-27 22:39:36 +0000 (Tue, 27 Sep 2022) | 1 line
Bug 8054 - Fix tests detection of existence of ipv4 and ipv6 local ip
addresses
------------------------------------------------------------------------
r1904286 | billcole | 2022-09-26 19:35:06 +0000 (Mon, 26 Sep 2022) | 1
line
It only looks like a boundary string.
------------------------------------------------------------------------
r1904253 | billcole | 2022-09-25 19:49:34 +0000 (Sun, 25 Sep 2022) | 1
line
Various new test rules: hashbust texts and MIME bogosity
------------------------------------------------------------------------
r1904221 | sidney | 2022-09-22 22:36:12 +0000 (Thu, 22 Sep 2022) | 1 line
4.0.0-rc3 RELEASED
------------------------------------------------------------------------
r1904209 | sidney | 2022-09-22 12:52:26 +0000 (Thu, 22 Sep 2022) | 1 line
preparing to release 4.0.0-rc3
------------------------------------------------------------------------
r1904206 | sidney | 2022-09-22 09:53:19 +0000 (Thu, 22 Sep 2022) | 1 line
Bug 8050 - Fix global_state_dir on Windows
------------------------------------------------------------------------
r1904201 | sidney | 2022-09-21 20:38:43 +0000 (Wed, 21 Sep 2022) | 1 line
Bug 8043 - Don't try and fail to setgid to drop privs when spamd started
with a supplemental group without privs
------------------------------------------------------------------------
r1904166 | billcole | 2022-09-20 12:55:16 +0000 (Tue, 20 Sep 2022) | 1
line
adjusting to slight fingerprint change
------------------------------------------------------------------------
r1904165 | billcole | 2022-09-20 12:46:28 +0000 (Tue, 20 Sep 2022) | 1
line
adjusting to slight fingerprint change
------------------------------------------------------------------------
r1904155 | hege | 2022-09-20 05:19:30 +0000 (Tue, 20 Sep 2022) | 2 lines
Deprecate HeaderEval check_for_unique_subject_id(),
word_is_in_dictionary() functions (Bug 8051)
------------------------------------------------------------------------
r1904147 | sidney | 2022-09-19 12:57:56 +0000 (Mon, 19 Sep 2022) | 1 line
Bug 8045 - Drop privileges for the one-time initialization of plugins at
start of spamd
------------------------------------------------------------------------
r1904140 | sidney | 2022-09-18 23:52:24 +0000 (Sun, 18 Sep 2022) | 1 line
Bug 8048 - Make default for pyzor and raxor2 fork options 0 on Windows
------------------------------------------------------------------------
r1904139 | sidney | 2022-09-18 23:48:01 +0000 (Sun, 18 Sep 2022) | 1 line
Bug 8047 - work around MSG_DONTWAIT not existing on Windows
------------------------------------------------------------------------
r1904059 | hege | 2022-09-14 04:53:19 +0000 (Wed, 14 Sep 2022) | 2 lines
Trivial debug line typo fix
------------------------------------------------------------------------
r1903986 | sidney | 2022-09-10 20:10:55 +0000 (Sat, 10 Sep 2022) | 1 line
4.0.0-rc2 RELEASED
------------------------------------------------------------------------
r1903975 | sidney | 2022-09-10 15:04:50 +0000 (Sat, 10 Sep 2022) | 1 line
preparing to release 4.0.0-rc2
------------------------------------------------------------------------
r1903966 | sidney | 2022-09-10 12:21:30 +0000 (Sat, 10 Sep 2022) | 1 line
Minor edit to release build instructions documentation
------------------------------------------------------------------------
r1903962 | sidney | 2022-09-10 11:28:35 +0000 (Sat, 10 Sep 2022) | 1 line
Bug 8038 - work around quirk of newer Extutils::MakeMaker on Windows
with dmake
------------------------------------------------------------------------
r1903921 | sidney | 2022-09-08 03:11:07 +0000 (Thu, 08 Sep 2022) | 1 line
Bug 8040 - Add note to test that has a very rare failure due to race
condition
------------------------------------------------------------------------
r1903917 | sidney | 2022-09-07 20:51:34 +0000 (Wed, 07 Sep 2022) | 1 line
Bug 8033 - Add PRAGMA to SQLite test to speed test without unreliable
use of /dev/shm
------------------------------------------------------------------------
r1903904 | sidney | 2022-09-06 21:31:50 +0000 (Tue, 06 Sep 2022) | 1 line
bug 8036 - set -zsh so ps -C spamd works on linux
------------------------------------------------------------------------
r1903878 | sidney | 2022-09-05 10:39:38 +0000 (Mon, 05 Sep 2022) | 1 line
Fix typo in pod doc
------------------------------------------------------------------------
r1903870 | sidney | 2022-09-05 05:54:46 +0000 (Mon, 05 Sep 2022) | 1 line
bug 8033 - Remove use of /dev/shm to speed up test because that causes
test failure on some machines. Label test as long running
------------------------------------------------------------------------
r1903850 | sidney | 2022-09-03 20:18:01 +0000 (Sat, 03 Sep 2022) | 1 line
bug 8039 - Remove no longer used code accidentally left in Makefile.PL
------------------------------------------------------------------------
r1903795 | sidney | 2022-09-01 00:29:49 +0000 (Thu, 01 Sep 2022) | 1 line
Bug 8034 Fix test failure when Net::DNS::Nameserver is not installed
------------------------------------------------------------------------
r1903794 | billcole | 2022-08-31 19:37:48 +0000 (Wed, 31 Aug 2022) | 1
line
Bug #8037
------------------------------------------------------------------------
r1903782 | gbechis | 2022-08-30 20:42:01 +0000 (Tue, 30 Aug 2022) | 3
lines
Mail::SpamAssassin::SubProcBackChannel is needed
fix bz #8035
------------------------------------------------------------------------
r1903693 | hege | 2022-08-26 06:00:47 +0000 (Fri, 26 Aug 2022) | 2 lines
Bug 8032 - DCC meta failure
------------------------------------------------------------------------
r1903659 | sidney | 2022-08-24 10:32:02 +0000 (Wed, 24 Aug 2022) | 1 line
4.0.0-rc1 RELEASED
------------------------------------------------------------------------
r1903655 | sidney | 2022-08-24 09:11:42 +0000 (Wed, 24 Aug 2022) | 1 line
preparing to release 4.0.0-rc1
------------------------------------------------------------------------
r1903650 | sidney | 2022-08-24 02:23:32 +0000 (Wed, 24 Aug 2022) | 1 line
bug 7981 - Update UPGRADE file for 4.0.0 replease. Re-wrap 4.0.0
announcements file from 72 to 70 columns
------------------------------------------------------------------------
r1903649 | sidney | 2022-08-24 01:58:14 +0000 (Wed, 24 Aug 2022) | 1 line
bug 8030 - Have spamd save incoming @INC to pass as -I options when it
does a SIGHUP restart of itself
------------------------------------------------------------------------
r1903647 | gbechis | 2022-08-23 21:42:53 +0000 (Tue, 23 Aug 2022) | 2
lines
match more custom uris
------------------------------------------------------------------------
r1903607 | sidney | 2022-08-21 05:14:57 +0000 (Sun, 21 Aug 2022) | 1 line
Correct typo force-mirror -> forcemirror
------------------------------------------------------------------------
r1903603 | sidney | 2022-08-20 23:26:52 +0000 (Sat, 20 Aug 2022) | 1 line
Announcement file rewritten for 4.0.0, word wrapped at 72 (Thunderbird's
default for plain text), placeholder for file hashes
------------------------------------------------------------------------
r1903602 | sidney | 2022-08-20 20:17:24 +0000 (Sat, 20 Aug 2022) | 1 line
bug 6439 - Add new test file from previous commit to MANIFEST
------------------------------------------------------------------------
r1903595 | sidney | 2022-08-20 11:39:17 +0000 (Sat, 20 Aug 2022) | 1 line
bug 8025 - Add a comment referencing this issue to the fix already
committed
------------------------------------------------------------------------
r1903581 | sidney | 2022-08-20 00:19:41 +0000 (Sat, 20 Aug 2022) | 1 line
bug 8029 - Change tests that use a spamd pid file to make use of the one
already set up in SATest.pm
------------------------------------------------------------------------
r1903556 | gbechis | 2022-08-19 08:16:08 +0000 (Fri, 19 Aug 2022) | 2
lines
pubish rules
------------------------------------------------------------------------
r1903543 | sidney | 2022-08-18 23:36:56 +0000 (Thu, 18 Aug 2022) | 1 line
bug 6439 - Add test case to t/extracttext.t to demonstrate using cat to
handle text disguised as octet/stream
------------------------------------------------------------------------
r1903528 | sidney | 2022-08-18 16:49:59 +0000 (Thu, 18 Aug 2022) | 1 line
Add DBD::SQLite min version requirement to some tests that didn't check
for it. Cosmetic correction where it said 1.59
------------------------------------------------------------------------
r1903510 | sidney | 2022-08-18 04:32:14 +0000 (Thu, 18 Aug 2022) | 1 line
bug 8028 - Fix tests that failed when run in perl built with
uselongdouble that was not a SpamAssassin bug
------------------------------------------------------------------------
r1903469 | sidney | 2022-08-17 00:01:47 +0000 (Wed, 17 Aug 2022) | 1 line
bug 8028 - SQLite now handles upsert using same syntax as pgsql, fix an
error message
------------------------------------------------------------------------
r1903460 | gbechis | 2022-08-16 13:14:59 +0000 (Tue, 16 Aug 2022) | 2
lines
test for some html links
------------------------------------------------------------------------
r1903454 | sidney | 2022-08-16 08:33:56 +0000 (Tue, 16 Aug 2022) | 1 line
Bug 8002 - Exclude another set of PerlCritic policies found on a CPAN
test machine
------------------------------------------------------------------------
r1903420 | sidney | 2022-08-15 05:06:36 +0000 (Mon, 15 Aug 2022) | 1 line
More complete fix for taint than in previous commit, using the code
already in sa_t_init()
------------------------------------------------------------------------
r1903411 | sidney | 2022-08-14 11:22:37 +0000 (Sun, 14 Aug 2022) | 1 line
bug 8026 - Update extracttest.t with test data that works with more
versions of tesseract
------------------------------------------------------------------------
r1903388 | gbechis | 2022-08-13 09:07:22 +0000 (Sat, 13 Aug 2022) | 2
lines
Google storage cloud abuse rule
------------------------------------------------------------------------
r1903383 | sidney | 2022-08-13 00:50:00 +0000 (Sat, 13 Aug 2022) | 1 line
bug 8025 - Use better untaint pattern for Windows file paths than the
incomplete fix for bug 8010
------------------------------------------------------------------------
r1903375 | sidney | 2022-08-12 15:48:45 +0000 (Fri, 12 Aug 2022) | 1 line
bug 7666 - Make declared module dependencies more accurate. Reduce noise
in make_install.t, sa_compile.t on macOS
------------------------------------------------------------------------
r1903374 | sidney | 2022-08-12 15:38:44 +0000 (Fri, 12 Aug 2022) | 1 line
bug 7666 - Fix tests running in taint mode that invoke spamassassin when
PERL5LIB is used to pass in module paths
------------------------------------------------------------------------
r1903372 | mmartinec | 2022-08-12 14:26:43 +0000 (Fri, 12 Aug 2022) | 1
line
AskDNS.pm: documentation clarification
------------------------------------------------------------------------
r1903371 | sidney | 2022-08-12 13:19:19 +0000 (Fri, 12 Aug 2022) | 1 line
Fix typo in previous commit
------------------------------------------------------------------------
r1903369 | sidney | 2022-08-12 11:19:32 +0000 (Fri, 12 Aug 2022) | 1 line
Skip part of test if running in perl linked with too old libdb for this
test's db file
------------------------------------------------------------------------
r1903365 | sidney | 2022-08-12 02:50:04 +0000 (Fri, 12 Aug 2022) | 1 line
Fix taint error in test when run in shell that sets
/Users/sidney/.bashrc in environment, such as FreeBSD
------------------------------------------------------------------------
r1903359 | gbechis | 2022-08-11 13:24:23 +0000 (Thu, 11 Aug 2022) | 2
lines
avoid a lint warning in named capture code
------------------------------------------------------------------------
r1903351 | hege | 2022-08-11 11:11:13 +0000 (Thu, 11 Aug 2022) | 2 lines
Test that escaping %{} works
------------------------------------------------------------------------
r1903347 | hege | 2022-08-11 11:00:08 +0000 (Thu, 11 Aug 2022) | 2 lines
Catch regexp warnings
------------------------------------------------------------------------
r1903269 | sidney | 2022-08-07 12:21:13 +0000 (Sun, 07 Aug 2022) | 1 line
reorder checks for whether test can be run to avoid a spurious message
when there is no spamc built
------------------------------------------------------------------------
r1903240 | mmartinec | 2022-08-05 14:22:30 +0000 (Fri, 05 Aug 2022) | 1
line
util: idn_to_ascii logging to include the affected string
------------------------------------------------------------------------
r1903224 | sidney | 2022-08-04 11:08:11 +0000 (Thu, 04 Aug 2022) | 1 line
Add defined check for a value that can end up undefined
------------------------------------------------------------------------
r1903198 | gbechis | 2022-08-02 15:50:25 +0000 (Tue, 02 Aug 2022) | 2
lines
fix man page
------------------------------------------------------------------------
r1903194 | sidney | 2022-08-02 10:37:01 +0000 (Tue, 02 Aug 2022) | 1 line
bug 7666 - Fix module dependency checks in Makefile.PL so CPAN tests can
install missing modules and continue running
------------------------------------------------------------------------
r1903193 | sidney | 2022-08-02 10:32:07 +0000 (Tue, 02 Aug 2022) | 1 line
bug 7666 - Fix tests that run spamassassin in taint mode not passing
through PERL5LIB path
------------------------------------------------------------------------
r1903176 | sidney | 2022-08-02 01:16:56 +0000 (Tue, 02 Aug 2022) | 1 line
Remove unnecessary info line about SQL tests when SQL tests are skipped
------------------------------------------------------------------------
r1903131 | sidney | 2022-07-31 05:02:23 +0000 (Sun, 31 Jul 2022) | 1 line
bug 8020 - Make failed NetAddr::IP dependency not fatal when checking
dependencies
------------------------------------------------------------------------
r1903087 | sidney | 2022-07-29 04:04:40 +0000 (Fri, 29 Jul 2022) | 1 line
Bug 8002 - Exclude another PerlCritic policy found on a CPAN test
machine, add required modules for test
------------------------------------------------------------------------
r1903079 | gbechis | 2022-07-28 16:12:23 +0000 (Thu, 28 Jul 2022) | 3
lines
some .xls files are erroneously detected as encrypted,
look for a marker not present on encrypted files
------------------------------------------------------------------------
r1903078 | jhardin | 2022-07-28 14:08:07 +0000 (Thu, 28 Jul 2022) | 1 line
Add "page.link" as 2TLD for URIBL checks - e.g.: academia.page.link
------------------------------------------------------------------------
r1903070 | sidney | 2022-07-28 01:57:22 +0000 (Thu, 28 Jul 2022) | 1 line
Bug 8019 - Fix make_install.t so it can be run using prove -T
------------------------------------------------------------------------
r1903063 | mmartinec | 2022-07-27 17:35:40 +0000 (Wed, 27 Jul 2022) | 1
line
fix t/root_spamd_*.t tests, they were expecting an extra blank before
the result message line from spamc
------------------------------------------------------------------------
r1903061 | mmartinec | 2022-07-27 16:04:02 +0000 (Wed, 27 Jul 2022) | 1
line
t/perlcritic.pl: remove exemption for Perlsecret "Baby Cart", deal with
the only case of its use in ExtractText.pm (the @{[]} hack is no longer
needed around split() in scalar context since perl5.11, we require 5.14
in SpamAssassin.pm)
------------------------------------------------------------------------
r1903050 | sidney | 2022-07-27 09:20:50 +0000 (Wed, 27 Jul 2022) | 1 line
Add test dependencies to ensure that CPAN test bots know about them
------------------------------------------------------------------------
r1903039 | sidney | 2022-07-26 22:19:21 +0000 (Tue, 26 Jul 2022) | 1 line
bug 8003 - fix path syntax when in Windows to let mkrule tests work
------------------------------------------------------------------------
r1903033 | mmartinec | 2022-07-26 18:00:47 +0000 (Tue, 26 Jul 2022) | 1
line
t/perlcritic.pl: remove exemption for Perlsecret Goatse, deal with the
only two cases of its use in MIMEEval.pm, reduce perlcritic verbosity
from 10 to 9
------------------------------------------------------------------------
r1903032 | sidney | 2022-07-26 15:50:07 +0000 (Tue, 26 Jul 2022) | 1 line
bug 8003 - fix extra noise in test on Windows platform
------------------------------------------------------------------------
r1903030 | mmartinec | 2022-07-26 13:35:35 +0000 (Tue, 26 Jul 2022) | 1
line
perlcritic does not appreciate a !! operator
------------------------------------------------------------------------
r1903010 | mmartinec | 2022-07-25 15:24:41 +0000 (Mon, 25 Jul 2022) | 1
line
document ARC, cosmetics/style
------------------------------------------------------------------------
r1903009 | mmartinec | 2022-07-25 15:21:20 +0000 (Mon, 25 Jul 2022) | 1
line
MS::Plugin::DKIM : must not treat a selector "0" as missing! (also fixes
warnings: call method "result_detail" on an undefined value)
------------------------------------------------------------------------
r1902917 | mmartinec | 2022-07-21 18:04:30 +0000 (Thu, 21 Jul 2022) | 1
line
spelling in doc
------------------------------------------------------------------------
r1902916 | mmartinec | 2022-07-21 17:55:37 +0000 (Thu, 21 Jul 2022) | 1
line
documentation: match the list of recognized RR types to a regexp in code
------------------------------------------------------------------------
r1902912 | mmartinec | 2022-07-21 14:23:36 +0000 (Thu, 21 Jul 2022) | 1
line
set_tag() documentation small fix
------------------------------------------------------------------------
r1902889 | hege | 2022-07-20 19:15:25 +0000 (Wed, 20 Jul 2022) | 2 lines
Bug 8016 - Remove uridnsbl_skip_domain(s)
------------------------------------------------------------------------
r1902865 | gbechis | 2022-07-19 21:11:55 +0000 (Tue, 19 Jul 2022) | 2
lines
improve check for forged Hotmail headers due to Microsoft changes
------------------------------------------------------------------------
r1902838 | gbechis | 2022-07-18 13:07:03 +0000 (Mon, 18 Jul 2022) | 2
lines
Google translate is used to obfuscate uris
------------------------------------------------------------------------
r1902744 | kb | 2022-07-15 18:09:59 +0000 (Fri, 15 Jul 2022) | 7 lines
Bug 7980, plaintext_body_sig_ratio performance: Replaced the one-shot,
prone
to backtrack signature identifying regex. Now doing a fast single-pass
over
the entire string, using a minimal regex to identify signature
delimiters.
Also ignore decoy markers at the end.
------------------------------------------------------------------------
r1902710 | sidney | 2022-07-14 04:24:51 +0000 (Thu, 14 Jul 2022) | 1 line
bug 8015 - Remove test for blocked bitly link. Bitly has no permanent
link to test with
------------------------------------------------------------------------
r1902571 | gbechis | 2022-07-08 13:44:54 +0000 (Fri, 08 Jul 2022) | 2
lines
use DKIM from $suppl_attrib if available
------------------------------------------------------------------------
r1902513 | billcole | 2022-07-06 20:34:44 +0000 (Wed, 06 Jul 2022) | 1
line
New spam-for-hire seen
------------------------------------------------------------------------
r1902486 | gbechis | 2022-07-05 13:43:27 +0000 (Tue, 05 Jul 2022) | 2
lines
adds proper if can() sub
------------------------------------------------------------------------
r1902484 | gbechis | 2022-07-05 13:37:53 +0000 (Tue, 05 Jul 2022) | 3
lines
Checks if SPF checks have been skipped because EnvelopeFrom cannot be
determined,
to be used in meta-rules
------------------------------------------------------------------------
r1902425 | sidney | 2022-07-03 10:22:54 +0000 (Sun, 03 Jul 2022) | 1 line
bug 8003 - after changes made for other tests, re_base_extraction.t now
works on Windows
------------------------------------------------------------------------
r1902424 | sidney | 2022-07-03 09:30:08 +0000 (Sun, 03 Jul 2022) | 1 line
Bug 8003 - mass_check.t requires masscheck which is not written to run
on Windows
------------------------------------------------------------------------
r1902423 | sidney | 2022-07-03 09:23:00 +0000 (Sun, 03 Jul 2022) | 1 line
Bug 8003 - reuse.t requires masscheck which is not written to run on
Windows
------------------------------------------------------------------------
r1902385 | gbechis | 2022-07-01 07:26:04 +0000 (Fri, 01 Jul 2022) | 2
lines
add ARC rules
------------------------------------------------------------------------
r1902301 | gbechis | 2022-06-28 07:28:36 +0000 (Tue, 28 Jun 2022) | 3
lines
fix sql schema on MariaDB 10.1
bz #8012
------------------------------------------------------------------------
r1902276 | gbechis | 2022-06-27 10:01:33 +0000 (Mon, 27 Jun 2022) | 2
lines
unbreak DKIM when $suppl_attrib are used (amavisd-new for example)
------------------------------------------------------------------------
r1902245 | jhardin | 2022-06-25 18:30:57 +0000 (Sat, 25 Jun 2022) | 1 line
Add exclusion for myimages and myphotos to __URI_TRY_3LD
------------------------------------------------------------------------
r1902055 | sidney | 2022-06-19 04:48:21 +0000 (Sun, 19 Jun 2022) | 1 line
bug 8003 - Reduce noise of warnings in Windows lock file code to make
some tests practical in Windows
------------------------------------------------------------------------
r1902053 | sidney | 2022-06-19 04:10:57 +0000 (Sun, 19 Jun 2022) | 1 line
bug 8003 - Fix bayesbdb.t not closing db files during test, now works on
Windows
------------------------------------------------------------------------
r1901958 | sidney | 2022-06-16 03:44:43 +0000 (Thu, 16 Jun 2022) | 1 line
bug 8003 - Remove debugging flag accidentally left in last commit
------------------------------------------------------------------------
r1901956 | sidney | 2022-06-15 23:10:44 +0000 (Wed, 15 Jun 2022) | 1 line
bug 8011 - Fix Pyzor and Razor tests and various code that supports them
for use in Windows
------------------------------------------------------------------------
r1901955 | sidney | 2022-06-15 22:57:24 +0000 (Wed, 15 Jun 2022) | 1 line
bug 8010 - remove lines obsoleted by other untaint fixes
------------------------------------------------------------------------
r1901954 | sidney | 2022-06-15 22:53:05 +0000 (Wed, 15 Jun 2022) | 1 line
bug 8003 - Skip tests or portions that cannot run in Windows, change
other non-portable things in tests to portable equivalents
------------------------------------------------------------------------
r1901953 | sidney | 2022-06-15 22:45:51 +0000 (Wed, 15 Jun 2022) | 1 line
bug 8003 - Change ip address used in test from one that Windows is too
strict with
------------------------------------------------------------------------
r1901952 | sidney | 2022-06-15 22:23:22 +0000 (Wed, 15 Jun 2022) | 1 line
bug 8010 - Fix untaint pattern in File::Find in Windows
------------------------------------------------------------------------
r1901951 | sidney | 2022-06-15 21:57:36 +0000 (Wed, 15 Jun 2022) | 1 line
bug 8003 - disable these tests i Windows since umask is a no-op there
------------------------------------------------------------------------
r1901899 | sidney | 2022-06-14 09:15:28 +0000 (Tue, 14 Jun 2022) | 1 line
Bug 8009 - Delete anti-pattern that matches when some optional modules
are missing, and not real errors
------------------------------------------------------------------------
r1901887 | billcole | 2022-06-13 18:26:12 +0000 (Mon, 13 Jun 2022) | 1
line
typo in prior comment
------------------------------------------------------------------------
r1901885 | billcole | 2022-06-13 18:10:09 +0000 (Mon, 13 Jun 2022) | 1
line
New MID pattern rule, tests very well on private B2B system.
------------------------------------------------------------------------
r1901879 | gbechis | 2022-06-13 14:03:50 +0000 (Mon, 13 Jun 2022) | 2
lines
mention Authentication-Results header in man page
------------------------------------------------------------------------
r1901875 | sidney | 2022-06-13 10:09:28 +0000 (Mon, 13 Jun 2022) | 1 line
bug 8007 - POSIX::_exit in forked child on Windows terminates parent,
use exit() instead if on Windows
------------------------------------------------------------------------
r1901764 | sidney | 2022-06-09 02:12:54 +0000 (Thu, 09 Jun 2022) | 1 line
Bug 8003 - Fix compile time error in Windows in test that is supposed to
be skipped on Windows
------------------------------------------------------------------------
r1901738 | sidney | 2022-06-08 02:26:05 +0000 (Wed, 08 Jun 2022) | 1 line
bug 8005 - sleep() required in test in Windows where select() is needed
in other OS
------------------------------------------------------------------------
r1901719 | gbechis | 2022-06-07 08:41:50 +0000 (Tue, 07 Jun 2022) | 3
lines
Add check_arc_signed() and check_arc_valid() subs to verify ARC
signatures.
bz #7935
------------------------------------------------------------------------
r1901667 | sidney | 2022-06-05 12:50:11 +0000 (Sun, 05 Jun 2022) | 1 line
Bug 8003 - Fix determining when to skip spamc/spamd tests in Windows
------------------------------------------------------------------------
r1901657 | hege | 2022-06-05 08:24:49 +0000 (Sun, 05 Jun 2022) | 2 lines
Fix revision 1901651
------------------------------------------------------------------------
r1901656 | hege | 2022-06-05 08:03:13 +0000 (Sun, 05 Jun 2022) | 2 lines
Remove superfluous return
------------------------------------------------------------------------
r1901651 | sidney | 2022-06-05 03:43:52 +0000 (Sun, 05 Jun 2022) | 1 line
bug 8003 - skip tests that fail in Windows that need further
investigation to determine if they can be fixed
------------------------------------------------------------------------
r1901649 | sidney | 2022-06-05 02:41:19 +0000 (Sun, 05 Jun 2022) | 1 line
bug 8003 - Remove check for sudo when in Windows
------------------------------------------------------------------------
r1901581 | hege | 2022-06-03 05:46:32 +0000 (Fri, 03 Jun 2022) | 2 lines
Minor got_hit/rule_ready cleanups (Bug 7999)
------------------------------------------------------------------------
r1901580 | hege | 2022-06-03 05:46:17 +0000 (Fri, 03 Jun 2022) | 2 lines
Add missing semicolon, cosmetic
------------------------------------------------------------------------
r1901579 | hege | 2022-06-03 05:12:35 +0000 (Fri, 03 Jun 2022) | 2 lines
Minor rule_ready optimization
------------------------------------------------------------------------
r1901578 | hege | 2022-06-03 05:02:42 +0000 (Fri, 03 Jun 2022) | 2 lines
Clean up plugin, don't call unnecessary got_hit() (Bug 7999)
------------------------------------------------------------------------
r1901577 | hege | 2022-06-03 04:59:29 +0000 (Fri, 03 Jun 2022) | 2 lines
Check lint_rules correctly
------------------------------------------------------------------------
r1901573 | sidney | 2022-06-02 22:41:38 +0000 (Thu, 02 Jun 2022) | 1 line
bug 8003 - Untaint PATH in Windows
------------------------------------------------------------------------
r1901534 | hege | 2022-06-02 05:40:27 +0000 (Thu, 02 Jun 2022) | 2 lines
Bug 8003 - Many test failures in Windows due to various platform
dependent things
------------------------------------------------------------------------
r1901533 | hege | 2022-06-02 05:32:04 +0000 (Thu, 02 Jun 2022) | 2 lines