Improve e-mail detection

git-svn: trunk@809
remotes/push_mirror/metadata
Tomasz Kojm 21 years ago
parent d906bb2dfa
commit e0549aa02c
  1. 7
      clamav-devel/ChangeLog
  2. 4
      clamav-devel/libclamav/filetypes.c

@ -1,3 +1,8 @@
Sat Aug 28 20:25:44 CEST 2004 (tk)
----------------------------------
* libclamav/filetypes.c: Improve e-mail detection (thanks to Andy Igoshin
<ai*vsu.ru>)
Sat Aug 28 10:16:19 BST 2004 (trog)
-----------------------------------
* libclamav/ole2_extract.c: Another go at fixing MACOS/X filenames
@ -142,7 +147,7 @@ Sat Aug 21 12:59:43 BST 2004 (njh)
----------------------------------
* libclamav: Changed the handling of miltipart messages, that is scanning
emails with attachments. Reports on impact on memory
usage and speed welcome to clamav-devel@clamav.net
usage and speed welcome to clamav-devel@lists.sf.net.
Fri Aug 20 21:05:04 CEST 2004 (tk)
----------------------------------

@ -118,9 +118,13 @@ static const struct cli_smagic_s cli_smagic[] = {
/* "\nFrom: " * "\nContent-Type: " */
{"0a46726f6d3a20{-2048}0a436f6e74656e742d547970653a20", "Mail file", CL_MAILFILE},
/* "\nReceived: " * "\nContent-Type: " */
{"0a52656365697665643a20{-2048}0a436f6e74656e742d547970653a20", "Mail file", CL_MAILFILE},
/* "\nReceived: " * "\nContent-type: " */
{"0a52656365697665643a20{-2048}0a436f6e74656e742d747970653a20", "Mail file", CL_MAILFILE},
/* remember the matcher is case sensitive */
{"3c62723e", "HTML data", CL_HTMLFILE}, /* <br> */
{"3c42723e", "HTML data", CL_HTMLFILE}, /* <Br> */

Loading…
Cancel
Save