scan "> From" messages

git-svn: trunk@496
remotes/push_mirror/metadata
Tomasz Kojm 21 years ago
parent 7e72f1f285
commit 35407219b7
  1. 4
      clamav-devel/ChangeLog
  2. 6
      clamav-devel/README
  3. 4
      clamav-devel/aclocal.m4
  4. 1
      clamav-devel/configure
  5. 1
      clamav-devel/configure.in
  6. 1
      clamav-devel/libclamav/scanners.c

@ -1,3 +1,7 @@
Fri Apr 16 14:43:25 CEST 2004 (tk)
----------------------------------
* libclamav: scan ">From " messages
Fri Apr 16 12:40:03 BST 2004 (trog)
-----------------------------------
* libclamav/vba_extract.c: fix possible crash

@ -3,8 +3,8 @@ here may not be available in binary packages.
--
0.70-rc
-------
0.70
----
The two major changes in this version are new thread manager in clamd
and support for decoding MS Office VBA macros. Both of them have been
@ -21,12 +21,12 @@ implemented by Trog. Besides, there are many improvements and bugfixes
+ TCPWrappers support
-) libclamav:
+ fixed crash with some RAR archives generated by the Bagle worm
+ support for MS Office documents (OLE2) and VBA macros decompression
+ support for encrypted archive detection
+ new flags: CL_OLE2, CL_ENCRYPTED (see clamdoc.pdf, Section 6.1)
+ improved support for mail files (especially bounces)
+ improved RAR support
+ improved support for multipart and bounce messages
-) clamscan:
+ new option: --detect-encrypted

@ -81,7 +81,7 @@ dnl there is now a CREATE_PREFIX_TARGET_H in this file as a shorthand for
dnl PREFIX_CONFIG_H from a target.h file, however w/o the target.h ever created
dnl (the prefix is a bit different, since we add an extra -target- and -host-)
dnl
dnl @version: $Id: aclocal.m4,v 1.33 2004/04/14 22:55:44 kojm Exp $
dnl @version: $Id: aclocal.m4,v 1.34 2004/04/16 12:50:53 kojm Exp $
dnl @author Guido Draheim <guidod@gmx.de> STATUS: used often
AC_DEFUN([AC_CREATE_TARGET_H],
@ -4041,7 +4041,7 @@ dnl AC_COMPILE_CHECK_SIZEOF(ptrdiff_t, $headers)
dnl AC_COMPILE_CHECK_SIZEOF(off_t, $headers)
dnl
dnl @author Kaveh Ghazi <ghazi@caip.rutgers.edu>
dnl @version $Id: aclocal.m4,v 1.33 2004/04/14 22:55:44 kojm Exp $
dnl @version $Id: aclocal.m4,v 1.34 2004/04/16 12:50:53 kojm Exp $
dnl
AC_DEFUN([AC_COMPILE_CHECK_SIZEOF],
[changequote(<<, >>)dnl

@ -9883,6 +9883,7 @@ cat >>confdefs.h <<\_ACEOF
#define _REENTRANT 1
_ACEOF
LIBS="$LIBS -lpthread"
fi
cat >>confdefs.h <<\_ACEOF

@ -379,6 +379,7 @@ netbsd*)
CLAMAV_MILTER_LIBS="$CLAMAV_MILTER_LIBS -lpthread"
AC_DEFINE(CL_THREAD_SAFE,1,[thread safe])
AC_DEFINE(_REENTRANT,1,[thread safe])
LIBS="$LIBS -lpthread"
fi
AC_DEFINE(C_BSD,1,[os is bsd flavor])
;;

@ -85,6 +85,7 @@ static const struct cli_magic_s cli_magic[] = {
{0, "X-Apparently-To: ", 17, "Mail", CL_MAILFILE},
{0, "For: ", 5, "Eserv mail", CL_MAILFILE},
{0, "X-EVS", 5, "EVS mail", CL_MAILFILE},
{0, ">From ", 6, "Symantec", CL_MAILFILE},
{0, "v:\015\012Received: ", 14, "VPOP3 Mail (DOS)", CL_MAILFILE},
{0, "v:\012Received: ", 13, "VPOP3 Mail (UNIX)", CL_MAILFILE},
{0, "Hi. This is the qmail-send", 26, "Qmail bounce", CL_MAILFILE},

Loading…
Cancel
Save