-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
1515 lines (1015 loc) · 42 KB
/
ChangeLog
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
2022-01-16 Emmanuel Saracco <emmanuel@esaracco.fr>
* Version: 0.23.1
* Other:
- Fix CSS warning (#7).
2021-09-21 Emmanuel Saracco <emmanuel@esaracco.fr>
* Version: 0.23
* Other:
- Updated for new clamav 0.103.3. Old versions of ClamAV are not
supported anymore.
- Added the following clamav options:
ConcurrentDatabase
ReloadAlertBrokenMedia
StructuredCCOnly
MaxScanTime
BytecodeUnsigned
- Removed the following freshclam options:
SafeBrowsing
2021-01-24 Emmanuel Saracco <emmanuel@esaracco.fr>
* Version: 0.22.1
* Transation:
- UTF-8 is the webmin default now.
2021-01-22 Emmanuel Saracco <emmanuel@esaracco.fr>
* Version: 0.22
* Other:
- Updated for new clamav 0.102.4. Old versions of ClamAV are not
supported anymore.
- Added the following clamav options:
OnAccessMaxThreads
OnAccessDenyOnError
OnAccessExcludeUname
OnAccessRetryAttempts
- Removed the following clamav options:
ScanOnAccess
- Some warning messages enhancement.
2019-08-01 Emmanuel Saracco <emmanuel@esaracco.fr>
* Version: 0.21.1
- Better management of the virus search message.
- Fixed virus search string handling.
- Fixed email header parser for mbox quarantaines.
- Fixed encoding and escape issues.
- Fixed Clamd remote control.
- Local scan enhancement.
- Added tabs for "Quarantine" and "Settings" sections.
- Added help for viewing emails and resending them.
- Alert popup enhancement for old webmin theme.
2019-07-25 Emmanuel Saracco <emmanuel@esaracco.fr>
* Version: 0.21
Please, consider to upgrade to 0.21 as soon as possible. This release
fix a lot of important bugs and Authentic Theme compatibility
problems.
- Big rewrite of the entire module in order to take full advantage of
the power of the Authentic theme.
- Added help for each feature.
- Removed no longer maintained translations.
- And as usual: a lot of debugging.
2019-07-21 Emmanuel Saracco <emmanuel@esaracco.fr>
* Version: 0.20.1
Hotfix : Fix an error in module configuration that hid important
options.
2019-07-21 Emmanuel Saracco <emmanuel@esaracco.fr>
* Version: 0.20
Please, consider to upgrade to 0.20 as soon as possible. This release
fix a lot of important bugs.
- Added a configuration option to check the release of new versions
of wbmclamav.
- Big rewrite and (a lot of) debug in the Global Settings section.
- Fix freshclam configuration writing and database update management.
- Fix module uninstallation error.
- Debug/improved ClamAV daemon remote access.
- Module index loading optimization.
- Signatures database update fixes.
- Cleaning/optimization, HTML fixes and enhancement.
- Optimizing ClamAV database information retrieval.
2019-07-13 Emmanuel Saracco <emmanuel@esaracco.fr>
* Version: 0.19
* Other:
- Updated for new clamav 0.101.2. Old versions of ClamAV are not
supported anymore.
- Added the following clamav options:
HeuristicAlerts
AlertBrokenExecutables
AlertEncrypted
AlertEncryptedArchive
AlertEncryptedDoc
AlertOLE2Macros
AlertPhishingSSLMismatch
AlertPhishingCloak
AlertPartitionIntersection
AlertExceedsMax
- Removed the following clamav options:
AlgorithmicDetection
DetectBrokenExecutable
OLE2BlockMacros
PhishingAlwaysBlockSSLMismatch
PhishingAlwaysBlockCloak
PartitionIntersection
ArchiveBlockEncrypted
BlockMax
- Added logo on the index page.
- Cleaning and optimization.
2019-06-23 Emmanuel Saracco <emmanuel@esaracco.fr>
* Version: 0.18
* Viruses search database:
- Added search by viruses prefixes, and removed virus information
link for now (it seems that no more online database offers it).
* Signature creation section:
- Complete remodeling of the signatures creation helper.
* Other:
- Attempt to avoid calls to the system() function as much as
possible by using File::Path, File::Copy etc. (WIP)
- New wbmclamav logo.
- External links update.
2019-06-07 Emmanuel Saracco <emmanuel@esaracco.fr>
* wbmclamav is now hosted on GitHub.
2019-05-12 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.17
* Other:
- Fixed clamav version check.
- Updated for new clamav 0.100.2. Old versions of ClamAV are not
supported anymore.
- Added the following clamav options:
PreludeEnable
PreludeAnalyzerName
ScanXMLDOCS
ScanHWP3
MaxIconsPE
MaxRecHWP3
PCREMatchLimit
PCRERecMatchLimit
PCREMaxFileSize
BlockMax
OnAccessMountPath
OnAccessExcludeRootUID
OnAccessDisableDDD
OnAccessPrevention
OnAccessExtraScanning
- Removed the following clamav options:
AllowSupplementaryGroups
StatsEnabled
StatsPEDisabled
StatsHostID
StatsTimeout
- Removed the following freshclam option:
AllowSupplementaryGroups
SubmitDetectionStats
DetectionStatsCountry
DetectionStatsHostID
- Added the following clamd remote actions:
SHUTDOWN
COMMANDS
STATS
IDSESSION
INSTREAM
DETSTATSCLEAR
DETSTATS
ALLMATCHSCAN
- Removed the following clamd remote actions:
QUIT
SESSION
2015-07-15 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.16
* System:
- Added systemd support.
* Other:
- Updated for new clamav 0.98.7. Old versions of ClamAV are not
supported anymore.
- Added the following clamav options:
ForceToDisk
DisableCache
DisableCertCheck
ScanSWF
PartitionIntersection
MaxEmbeddedPE
MaxHTMLNormalize
MaxHTMLNoTags
MaxScriptNormalize
MaxZipTypeRcg
MaxPartitions
ScanOnAccess
OnAccessMaxFileSize
OnAccessIncludePath
OnAccessExcludePath
OnAccessExcludeUID
StatsEnabled
StatsPEDisabled
StatsHostID
StatsTimeout
- Removed the following clamav options:
ClamukoScanOnAccess
ClamukoScannerCount
ClamukoMaxFileSize
ClamukoScanOnOpen
ClamukoScanOnClose
ClamukoScanOnExec
ClamukoIncludePath
ClamukoExcludePath
ClamukoExcludeUID
- Added the following freshclam option:
LogRotate
PrivateMirror
2012-10-30 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.15
* Database update:
- Fixed bug with recent ClamAV.
* Quarantine:
- Fixed bug with select/unselect all.
* Directories scan:
- Fixed clamscan report parsing.
- Fixed double-display.
* Viruses search database:
- Removed viruspool (dead link), added F-Secure.
* Other:
- Updated for new clamav 0.97.6. Older versions of ClamAV are not
supported anymore.
- Added the following clamav options:
OLE2BlockMacros
ClamukoExcludeUID
- Added the following freshclam option:
DatabaseCustomURL
ExtraDatabase
- Fixed a bug with environment variable PATH.
- Renamed "virii" to "viruses".
- Updated deprecated URLs.
2010-10-02 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.14
2010-09-30 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Configuration:
- Use clamdscan if no clamscan were found.
* Other:
- Updated for new clamav 0.96.3. Old versions of ClamAV are not
supported anymore.
- Added the following clamav options:
ExtendedDetectionInfo
ClamukoScannerCount
- Added the following freshclam option:
TestDatabases
2010-07-17 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.13.1
2010-07-01 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Other:
- Added the following missed clamav option:
BytecodeTimeout
2010-06-20 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.13
2010-06-17 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Other:
- Updated for new clamav 0.96.1. Old versions of ClamAV are not
supported anymore.
- Added the following clamav options:
OfficialDatabaseOnly
LocalSocketGroup
LocalSocketMode
CrossFilesystems
Bytecode
BytecodeSecurity
- Added the following freshclam option:
DetectionStatsHostID
Bytecode
- Removed the following clamav options:
MailFollowURLs
2010-02-13 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* version : 0.12.1
2010-02-10 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Fixed a bug in quarantine purge script that was resulting in total
quarantine deletion instead of deleting only files >= to a given
number of days.
- Big simplification of quarantine purge script.
2009-12-17 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Fixed a problem on resending email when port is specified.
2009-05-15 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.12
2009-05-14 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Directories check section:
- Fixed a problem with spaces in filename.
2009-05-12 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Other:
- Updated for new clamav 0.95.1. Old versions of ClamAV are not
supported anymore.
- Added the following clamav options:
CommandReadTimeout
SendBufTimeout
MaxQueue
- Added the following freshclam option:
ReceiveTimeout
SubmitDetectionStats
DetectionStatsCountry
SafeBrowsing
- Removed the following clamav options:
PhishingRestrictedScan
ArchiveLimitMemoryUsage
2009-01-25 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Fixed a bug in resend mail function (thanks to Dirk Jakobsmeier).
2008-11-27 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.11
2008-11-22 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- We now support mbox quarantine format for amavisd-new.
* Dependencies:
- Added dependencie on the Mail::Mbox::MessageParser perl module
for amavisd-new content scanner.
2008-10-25 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.10
* Quarantine section:
- Fixed a problem with some qmailscanner quarantines. Should work
fine with any of them now.
2008-10-17 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.10rc3
* Quarantine section:
- Fixed a important bug (resulting in /etc/init.d/clamav-freshclam
emptying).
* Other:
- Fixed a important bug (resulting in /etc/crontab removal on
some systems) in module uninstallation.
2008-10-14 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.10rc2
* Quarantine section:
- Some GD style works for evolution graph.
2008-10-13 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Page load enhancement by caching statistics data. Also added a
button to force statistics processing.
- Optimized pagination processing time for quarantine results.
- Added evolution graph support for mailscanner and qmailscanner.
- Fixed a bug in mailscanner statistics.
2008-10-12 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Added quarantine evolution graph for amavisd-new.
* Dependencies:
- Added dependencie on the following perl modules:
GD
GD::Graph::lines
2008-10-12 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.10rc1
2008-10-11 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Dependencies:
- Smarter Perl modules dependencies management.
* Global settings section:
- Fixed a bug that was preventing boolean variable to be added.
* Other:
- Removed unused function.
- Updated for new clamav 0.94. Old versions of ClamAV are not
supported anymore.
- Added the following clamav options:
ExcludePath
ExcludePUA
IncludePUA
ScanPartialMessages
HeuristicScanPrecedence
StructuredDataDetection
StructuredMinCreditCardCount
StructuredMinSSNCount
StructuredSSNFormatNormal
StructuredSSNFormatStripped
- Added the following freshclam option:
CompressLocalDatabase
- Removed the following clamd remote action:
RAWSCAN
- Added the following clamd remote actions:
FILDES
QUIT
- Now multiple variables are handled correctly (ExcludePath,
ExcludePUA and so on).
2008-10-07 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.9.2
2008-09-13 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Fixed a bug on resend mail function (thanks to Bram Schoenmakers).
2008-07-11 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Configuration:
- Updated config-* files.
- Added "config-ubuntu-file".
* Other:
- Now should handle both *.cld and *.cvd database files.
2008-06-15 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.9.1
2008-06-10 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Fixed a deletion problem with some particular filenames.
2008-05-13 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Configuration:
- Added the following option in config.info:
clamav_spam_user
* Dependencies:
- Added dependencie on "Mail::SpamAssassin" perl module.
* Quarantine section:
- Now use SpamAssassin API instead of command line tool for
spam management.
* Other:
- Updated for new clamav 0.93. Old versions of ClamAV are not
supported anymore.
- Added the following clamav options:
MaxScanSize
MaxFileSize
MaxRecursion
MaxFiles
- Removed the following clamav options:
MailMaxRecursion
ArchiveMaxFileSize
ArchiveMaxRecursion
ArchiveMaxFiles
ArchiveMaxCompressionRatio
ArchiveBlockMax
2008-02-18 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Configuration:
- Fixed a include issue (thanks to Kosta Djordjevic).
2008-01-08 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Security:
- Fixed a include issue in ACL management file (thanks to
Lorenzo Lolli).
2007-12-10 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.9.0
2007-10-26 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.9rc1
* WARNING:
- Backup your data.
- Please do the following actions after installing this new
release candidate:
. Review module configuration and save it.
. Review "Global settings" section and click the "Apply
button".
* Configuration:
- Fixed some problems with restore process.
* Other:
- Fixed a problem with the following freshclam option:
NotifyClamd
- Code cleaning and comments.
2007-10-24 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Configuration:
- Added the following options in config.info:
clamav_sys_user
clamav_sys_group
- Fixed issues in clamav/freshclam configuration files management.
* Other:
- Updated for new clamav 0.91.2. Old versions of ClamAV are not
supported anymore.
- Fixed a typo in freshclam options.
- Added the following clamav option:
DetectPUA
- Added the following clamd remote commands:
MULTISCAN
STREAM
SESSION
END
- Some security stuff and code cleaning.
2007-10-22 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine:
- It should also work now with amavisd-new quantines splitted into
mutiple subdirectories (task #1563).
2007-10-21 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Configuration:
- Fixed a problem with clamav init script detection on some
condition.
2007-04-08 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Now take in account the Cc field of quarantined E-Mails when
resending them (thanks to Aritza Sobrinos).
2007-03-03 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.8.0
* Global settings section:
- Now use the "clamconf" utility when available to check
clamav/freshclam configuration before restarting clamav.
* Other:
- Updated for new clamav 0.90.1. Old versions of ClamAV are not
supported anymore.
- Added the following clamav options:
AlgorithmicDetection
ScanELF
ScanPDF
MailMaxRecursion
PhishingSignatures
PhishingScanURLs
PhishingRestrictedScan
PhishingAlwaysBlockSSLMismatch
PhishingAlwaysBlockCloak
NodalCoreAcceleration
- Removed the following clamav options:
DisableDefaultScanOptions
ScanRAR
ClamukoScanArchive
- Added the following freshclam options:
ScriptedUpdates
HTTPUserAgent
OnUpdateExecute
ConnectTimeout
ReceiveTimeout
LogVerbose
LogFileMaxSize
Foreground
- Updated some outdated links.
2006-11-20 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.7.4
2006-11-13 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Configuration:
- Fixed a problem with backup/restore process.
- Fixed a problem with clamav init script detection on Fedora.
2006-11-10 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.7.3
2006-11-09 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- This time *really* Fixed the problem when resending E-Mails with
multiple recipients (thanks to Aritza Sobrinos) :-)
2006-10-31 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Fixed a problem when resending E-Mails with multiple
recipients (thanks to Aritza Sobrinos).
2006-09-24 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.7.2
2006-09-22 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Fixed a bug with empty sender E-Mail headers (thanks to Tom
Sasbrink).
* Other:
- Fixed a permission problem on a executable script.
- Code cleaning.
2006-09-16 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Remote control section:
- Fixed a problem with commands arguments detection.
* Quarantine section:
- Added some basic SpamAssassin learning support using "sa-learn" if
available (task #969).
- Updated search results pagination mode to be more suitable for
large quarantines.
* Other:
- Added a very basic script to simulate the gunzip command but
without returning error if files are not gziped.
2006-09-13 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.7.1
2006-09-12 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Other:
- Fixed problems with module uninstallation (thanks to Jason Singh).
2006-07-14 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Other:
- Fixed a bad command call to "chmod" instead of "chown".
2006-07-02 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Added "banned" and "bad header" support for amavisd-new
quarantine should be ok now (tasks #394 and #603).
- Added "CVS Export" of search results.
2006-06-28 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.7.0
2006-06-27 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- It is now possible to choose to delete/not delete E-Mails after
resending them.
2006-06-24 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Directories check section:
- Some inputs checks and cleaning.
2006-06-24 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version 0.7rc2
* Dependencies:
- Removed "Net::Ping" dependency.
- Added "IO::Socket" dependency.
2006-06-23 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Viruses database search section:
- Updated link to viruspool.
2006-06-22 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Fixed a problem with SMTP host:port.
2006-06-22 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version 0.7rc1
2006-06-21 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Dependencies:
- Added dependency on 'Net::Ping'.
* Quarantine section:
- Code cleaning and debugging for mail resend/delete part.
* Other:
- Much better error handling on some command execution.
- Updated uninstall script.
2006-06-18 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Other:
- Fixed a problem's assumption with module name (thanks to Tom
Sasbrink).
2006-05-25 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Task #850 (Quarantine support for Qmail-Scanner) should be ok
now.
* Other:
- Added a "LeaveTemporaryFiles" clamd option.
2006-03-23 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Some debugging to avoid piping E-Mail in MTA when calling
amavis-inject with '-S' option.
* Dependencies:
- Added dependencies on 'Getopt::Long', 'IO::File' and
'Net::SMTP' for amavis-inject.
2006-03-05 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Configuration:
- wbmclamav now backup all the system files that it will
work with. User can restore them at any moment. It is very
experimental, so please backup your system before executing
this new version.
* Other:
- Fixed a lot of bugs with BSD systems.
2006-01-18 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Configuration:
- Removed a unused variable.
* Quarantine section:
- Now user can indicate sender, recipient an SMTP to use when
resending E-mails from quarantine (task #397).
* Other:
- Fixed a problem with amavis-ng detection.
2006-01-14 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Configuration:
- Added new update method "Manual update".
* Other:
- We now rely exclusively on Webmin environment PATH variable
to find binaries. please, review your Webmin settings.
- Some debug.
2005-11-23 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.6.2
* Configuration:
- Added Mandriva compatibility (thanks to Ralph Lerale).
* Quarantine section:
- Fixed Bug #602 (Quarantine filename).
* Other:
- Updated for clamav 0.87.1.
- Added the following options: PidFile, Example,
TemporaryDirectory, DatabaseDirectory, IdleTimeout,
ClamukoScanOnAccess.
- Removed the following options: DataDirectory,
ClamukoScanOnLine.
2005-08-22 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.6.1
2005-08-21 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Clamav-milter:
- Fixed a problem with "Activate/Deactivate" button for
clamav-milter deamon (thanks to Robert Betts).
2005-05-14 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Other:
- Task #446 (add label tags around text for checkboxes) is ok
now.
2005-04-30 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.6.0
* Other:
- Updated for new clamav 0.84. Old versions of ClamAV are not
supported anymore.
2005-04-28 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Other:
- Updated for clamav 0.84rc2.
Added "LocalIPAddress".
2005-04-26 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Bug #415 (Amavisd new is not found on Mandrake) should be
fixed now.
2005-03-06 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Fixed a problem with directories removal on quarantine
purge (thanks to Ed Kasky).
2005-02-25 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.6rc2
2005-02-19 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Fixed a problem with maxdays for quarantine purge (thanks
to Gary Buckmaster).
2005-02-01 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Version: 0.6rc1
2005-01-30 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Viruses database search section:
- Removed Trend-Micro link and added Viruspool.
* Quarantine section:
- Quarantine purge have been rewrited. Please test it.
2005-01-29 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Directories check section:
- Added possibility to use the new '--move' clamscan option.
* Dependencies:
- Added dependencie on "File::Find".
* Other:
- Updated for new clamav 0.81. Old versions of ClamAV are not
supported anymore. Added "ExitOnOOM", "StreamMinPort",
"StreamMaxPort" and "AllowSupplementaryGroups".
- Updated Copyright years.
2005-01-23 Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org>
* Quarantine section:
- Reverted a pseudo-fix on quarantine purge problem. Removing
the '*' is not a good idea because quarantine repository is
also removed :-( So I add it again until someone send me a