Browse code

0.70-rc

git-svn: trunk@403

Tomasz Kojm authored on 2004/03/16 04:54:12
Showing 4 changed files
... ...
@@ -1,4 +1,10 @@
1
+Mon Mar 15 20:53:10 CET 2004 (tk)
2
+---------------------------------
3
+  * clamav-milter: version number increased to 0.70
4
+  V 0.70-rc
5
+
1 6
 Mon Mar 15 18:40:44 GMT 2004 (trog)
7
+-----------------------------------
2 8
   * libvlamav/ole2_extract.c: fix cli_malloc() error
3 9
 
4 10
 Mon Mar 15 17:05:01 CET 2004 (tk)
... ...
@@ -3,8 +3,8 @@ here may not be available in binary packages.
3 3
 --
4 4
 
5 5
 
6
-0.70
6
+0.70-rc
7
+-------
7 8
 
8 9
 The two major changes in this version are new thread manager in clamd
9 10
 and support for decoding MS Office VBA macros. Both of them have been
... ...
@@ -21,6 +21,7 @@ implemented by Trog. Besides, there are many improvements and bugfixes
21 21
     + TCPWrappers support
22 22
 
23 23
 -) libclamav:
24
+    + fixed crash with some RAR archives generated by the Bagle worm
24 25
     + support for MS Office documents (OLE2) and VBA macros decompression
25 26
     + support for encrypted archive detection
26 27
     + new flags: CL_OLE2, CL_ENCRYPTED (see clamdoc.pdf, Section 6.1)
... ...
@@ -45,7 +46,7 @@ Special thanks to Dirk Mueller <mueller*kde.org> for the code review and
45 45
 many bugfixes and cleanups.
46 46
 
47 47
 
48
-We are happy to announce new programs that support ClamAV (all of them
48
+We are happy to announce new programs with support for ClamAV (all of them
49 49
 have been reviewed by our team):
50 50
     + j-chkmail - a powerful filter for sendmail
51 51
     + qscanq - Virus Scanning for Qmail
... ...
@@ -65,7 +66,7 @@ have been reviewed by our team):
65 65
 
66 66
 --
67 67
 The ClamAV team (http://www.clamav.net/team.html)
68
-March 14, 2004
68
+March 15, 2004
69 69
 
70 70
 
71 71
 
... ...
@@ -3,8 +3,8 @@ here may not be available in binary packages.
3 3
 --
4 4
 
5 5
 
6
-0.70
6
+0.70-rc
7
+-------
7 8
 
8 9
 The two major changes in this version are new thread manager in clamd
9 10
 and support for decoding MS Office VBA macros. Both of them have been
... ...
@@ -21,6 +21,7 @@ implemented by Trog. Besides, there are many improvements and bugfixes
21 21
     + TCPWrappers support
22 22
 
23 23
 -) libclamav:
24
+    + fixed crash with some RAR archives generated by the Bagle worm
24 25
     + support for MS Office documents (OLE2) and VBA macros decompression
25 26
     + support for encrypted archive detection
26 27
     + new flags: CL_OLE2, CL_ENCRYPTED (see clamdoc.pdf, Section 6.1)
... ...
@@ -45,7 +46,7 @@ Special thanks to Dirk Mueller <mueller*kde.org> for the code review and
45 45
 many bugfixes and cleanups.
46 46
 
47 47
 
48
-We are happy to announce new programs that support ClamAV (all of them
48
+We are happy to announce new programs with support for ClamAV (all of them
49 49
 have been reviewed by our team):
50 50
     + j-chkmail - a powerful filter for sendmail
51 51
     + qscanq - Virus Scanning for Qmail
... ...
@@ -65,7 +66,7 @@ have been reviewed by our team):
65 65
 
66 66
 --
67 67
 The ClamAV team (http://www.clamav.net/team.html)
68
-March 14, 2004
68
+March 15, 2004
69 69
 
70 70
 
71 71
 
... ...
@@ -286,6 +286,9 @@
286 286
  *
287 287
  * Change History:
288 288
  * $Log: clamav-milter.c,v $
289
+ * Revision 1.61  2004/03/15 19:54:12  kojm
290
+ * 0.70-rc
291
+ *
289 292
  * Revision 1.60  2004/03/10 11:31:03  nigelhorne
290 293
  * Use HAVE_STRERROR_R
291 294
  *
... ...
@@ -451,9 +454,9 @@
451 451
  * Revision 1.6  2003/09/28 16:37:23  nigelhorne
452 452
  * Added -f flag use MaxThreads if --max-children not set
453 453
  */
454
-static	char	const	rcsid[] = "$Id: clamav-milter.c,v 1.60 2004/03/10 11:31:03 nigelhorne Exp $";
454
+static	char	const	rcsid[] = "$Id: clamav-milter.c,v 1.61 2004/03/15 19:54:12 kojm Exp $";
455 455
 
456
-#define	CM_VERSION	"0.67l"
456
+#define	CM_VERSION	"0.70"
457 457
 
458 458
 /*#define	CONFDIR	"/usr/local/etc"*/
459 459