Browse code

merge backport fixes for 0.86.1

git-svn-id: file:///var/lib/svn/clamav-devel/branches/0.88-stable@2785 77e5149b-7576-45b1-b177-96237e5ba77b

Sven Strickroth authored on 2007/02/18 23:31:25
Showing 168 changed files
... ...
@@ -1,3 +1,11 @@
1
+Thu Jun 23 23:13:41 CEST 2005
2
+-----------------------------
3
+  V 0.86.1
4
+  * Fixes backported from CVS:
5
+    - libclamav/mspack/qtmd.c: fix possible crash (tk)
6
+      Reported by Andrew Toller <atoller*connectfree.co.uk>
7
+      and Stefan Kanthak <stefan.kanthak*fujitsu-siemens.com>
8
+
1 9
 Sun Jun 19 21:37:07 CEST 2005
2 10
 -----------------------------
3 11
   V 0.86
... ...
@@ -1,9 +1,7 @@
1
-0.86
1
+0.86.1
2
+------
2 3
 
3
-This release introduces a number of bugfixes and cleanups. Possible descriptor
4
-leaks in archive unpackers and mishandling of fast track uuencoded files have
5
-been fixed in libclamav. Database reloading in clamav-milter has been improved.
4
+A possible crash in the libmspack's Quantum decompressor has been fixed.
6 5
 
7 6
 --
8 7
 The ClamAV team (http://www.clamav.net/team.html)
... ...
@@ -2,6 +2,14 @@ Note: This README/NEWS file refers to the source tarball. Some things described
2 2
 here may not be available in binary packages.
3 3
 --
4 4
 
5
+0.86.1
6
+------
7
+
8
+A possible crash in the libmspack's Quantum decompressor has been fixed.
9
+
10
+--
11
+The ClamAV team (http://www.clamav.net/team.html)
12
+
5 13
 0.86
6 14
 ----
7 15
 
... ...
@@ -2073,7 +2073,7 @@ fi
2073 2073
 
2074 2074
 # Define the identity of the package.
2075 2075
  PACKAGE=clamav
2076
- VERSION="0.86"
2076
+ VERSION="0.86.1"
2077 2077
 
2078 2078
 
2079 2079
 cat >>confdefs.h <<_ACEOF
... ...
@@ -2207,7 +2207,7 @@ am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
2207 2207
 
2208 2208
 
2209 2209
 LC_CURRENT=1
2210
-LC_REVISION=14
2210
+LC_REVISION=15
2211 2211
 LC_AGE=0
2212 2212
 LIBCLAMAV_VERSION="$LC_CURRENT":"$LC_REVISION":"$LC_AGE"
2213 2213
 
... ...
@@ -11816,7 +11816,7 @@ cat >>confdefs.h <<\_ACEOF
11816 11816
 #define C_BSD 1
11817 11817
 _ACEOF
11818 11818
 
11819
-    disable_gethostbyname_r="yes"
11819
+    use_gethostbyname_r="no"
11820 11820
     ;;
11821 11821
 openbsd*)
11822 11822
     if test "$have_pthreads" = "yes"; then
... ...
@@ -11845,7 +11845,7 @@ cat >>confdefs.h <<\_ACEOF
11845 11845
 #define C_BSD 1
11846 11846
 _ACEOF
11847 11847
 
11848
-    disable_gethostbyname_r="yes"
11848
+    use_gethostbyname_r="no"
11849 11849
     ;;
11850 11850
 bsdi*)
11851 11851
     if test "$have_pthreads" = "yes"; then
... ...
@@ -11869,7 +11869,7 @@ cat >>confdefs.h <<\_ACEOF
11869 11869
 #define C_BSD 1
11870 11870
 _ACEOF
11871 11871
 
11872
-    disable_gethostbyname_r="yes"
11872
+    use_gethostbyname_r="no"
11873 11873
     ;;
11874 11874
 netbsd*)
11875 11875
      if test "$have_pthreads" = "yes"; then
... ...
@@ -11893,7 +11893,7 @@ cat >>confdefs.h <<\_ACEOF
11893 11893
 #define C_BSD 1
11894 11894
 _ACEOF
11895 11895
 
11896
-    disable_gethostbyname_r="yes"
11896
+    use_gethostbyname_r="no"
11897 11897
     ;;
11898 11898
 bsd*)
11899 11899
     echo "$as_me:$LINENO: result: Unknown BSD detected. Disabling thread support." >&5
... ...
@@ -11904,7 +11904,7 @@ cat >>confdefs.h <<\_ACEOF
11904 11904
 #define C_BSD 1
11905 11905
 _ACEOF
11906 11906
 
11907
-    disable_gethostbyname_r="yes"
11907
+    use_gethostbyname_r="no"
11908 11908
     ;;
11909 11909
 beos*)
11910 11910
     echo "$as_me:$LINENO: result: BeOS detected. Disabling thread support." >&5
... ...
@@ -11933,7 +11933,7 @@ cat >>confdefs.h <<\_ACEOF
11933 11933
 _ACEOF
11934 11934
 
11935 11935
     use_netinfo="yes"
11936
-    disable_gethostbyname_r="yes"
11936
+    use_gethostbyname_r="no"
11937 11937
     ;;
11938 11938
 os2*)
11939 11939
     FRESHCLAM_LIBS="$FRESHCLAM_LIBS -lsyslog"
... ...
@@ -13267,10 +13267,10 @@ fi
13267 13267
 # Check whether --enable-gethostbyname_r or --disable-gethostbyname_r was given.
13268 13268
 if test "${enable_gethostbyname_r+set}" = set; then
13269 13269
   enableval="$enable_gethostbyname_r"
13270
-  disable_gethostbyname_r=$enableval
13270
+  use_gethostbyname_r=$enableval
13271 13271
 fi;
13272 13272
 
13273
-if test "$disable_gethostbyname_r" = "yes"; then
13273
+if test "$use_gethostbyname_r" = "no"; then
13274 13274
     echo "$as_me:$LINENO: result: support disabled" >&5
13275 13275
 echo "${ECHO_T}support disabled" >&6
13276 13276
 elif test -z "$ac_cv_gethostbyname_args"; then
... ...
@@ -18,11 +18,11 @@ dnl   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 18
 
19 19
 AC_INIT(clamscan/clamscan.c)
20 20
 AC_CREATE_TARGET_H(target.h)
21
-AM_INIT_AUTOMAKE(clamav, "0.86")
21
+AM_INIT_AUTOMAKE(clamav, "0.86.1")
22 22
 AM_CONFIG_HEADER(clamav-config.h)
23 23
 
24 24
 LC_CURRENT=1
25
-LC_REVISION=14
25
+LC_REVISION=15
26 26
 LC_AGE=0
27 27
 LIBCLAMAV_VERSION="$LC_CURRENT":"$LC_REVISION":"$LC_AGE"
28 28
 AC_SUBST(LIBCLAMAV_VERSION)
... ...
@@ -400,7 +400,7 @@ freebsd*)
400 400
 	fi
401 401
     fi
402 402
     AC_DEFINE(C_BSD,1,[os is freebsd])
403
-    disable_gethostbyname_r="yes"
403
+    use_gethostbyname_r="no"
404 404
     ;;
405 405
 openbsd*)
406 406
     if test "$have_pthreads" = "yes"; then
... ...
@@ -417,7 +417,7 @@ openbsd*)
417 417
 	AC_DEFINE(_REENTRANT,1,[thread safe])
418 418
     fi
419 419
     AC_DEFINE(C_BSD,1,[os is OpenBSD])
420
-    disable_gethostbyname_r="yes"
420
+    use_gethostbyname_r="no"
421 421
     ;;
422 422
 bsdi*)
423 423
     if test "$have_pthreads" = "yes"; then
... ...
@@ -429,7 +429,7 @@ bsdi*)
429 429
 	AC_DEFINE(_REENTRANT,1,[thread safe])
430 430
     fi
431 431
     AC_DEFINE(C_BSD,1,[os is BSDI BSD/OS])
432
-    disable_gethostbyname_r="yes"
432
+    use_gethostbyname_r="no"
433 433
     ;;
434 434
 netbsd*)
435 435
      if test "$have_pthreads" = "yes"; then
... ...
@@ -441,13 +441,13 @@ netbsd*)
441 441
 	ADDITIONAL_LIBS="$LIBS -lpthread"
442 442
      fi
443 443
     AC_DEFINE(C_BSD,1,[os is NetBSD])
444
-    disable_gethostbyname_r="yes"
444
+    use_gethostbyname_r="no"
445 445
     ;;
446 446
 bsd*)
447 447
     AC_MSG_RESULT(Unknown BSD detected. Disabling thread support.)
448 448
     have_pthreads="no"
449 449
     AC_DEFINE(C_BSD,1,[os is bsd flavor])
450
-    disable_gethostbyname_r="yes"
450
+    use_gethostbyname_r="no"
451 451
     ;;
452 452
 beos*)
453 453
     AC_MSG_RESULT(BeOS detected. Disabling thread support.)
... ...
@@ -459,7 +459,7 @@ darwin*)
459 459
     AC_DEFINE(C_DARWIN,1,[os is darwin])
460 460
     AC_DEFINE(BIND_8_COMPAT,1,[enable bind8 compatibility])
461 461
     use_netinfo="yes"
462
-    disable_gethostbyname_r="yes"
462
+    use_gethostbyname_r="no"
463 463
     ;;
464 464
 os2*)
465 465
     FRESHCLAM_LIBS="$FRESHCLAM_LIBS -lsyslog"
... ...
@@ -734,9 +734,9 @@ fi
734 734
 
735 735
 AC_ARG_ENABLE(gethostbyname_r,
736 736
 [  --disable-gethostbyname_r	  disable support for gethostbyname_r],
737
-disable_gethostbyname_r=$enableval,)
737
+use_gethostbyname_r=$enableval,)
738 738
 
739
-if test "$disable_gethostbyname_r" = "yes"; then
739
+if test "$use_gethostbyname_r" = "no"; then
740 740
     AC_MSG_RESULT(support disabled)
741 741
 elif test -z "$ac_cv_gethostbyname_args"; then
742 742
     AC_MSG_RESULT(no)
743 743
Binary files a/docs/clamdoc.pdf and b/docs/clamdoc.pdf differ
... ...
@@ -69,7 +69,7 @@
69 69
     \vspace{3cm}
70 70
     \begin{flushright}
71 71
 	\rule[-1ex]{8cm}{3pt}\\
72
-	\huge Clam AntiVirus 0.86rc1\\
72
+	\huge Clam AntiVirus 0.86.1\\
73 73
 	\huge \emph{User Manual}\\
74 74
     \end{flushright}
75 75
 
... ...
@@ -2153,8 +2153,6 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
2153 2153
 				   &		 &     & \url{<timothy.folks*edgescape.com>}\\ \hline
2154 2154
 	\url{clamav.hanbiro.com} & 211.234.111.17 & Korea & Kwon Taek Sool\\
2155 2155
 				 &		  &	  & \email{<master*hanbiro.com>}\\ \hline
2156
-	\url{clamav.kyit.edu.tw} & 210.60.80.8 & Taiwan & Rui-Xiang Guo\\
2157
-				 &	       &	& \email{<rxg*cc.kyit.edu.tw>}\\ \hline
2158 2156
 	\url{clamav.vtu.lt} & 193.219.149.170 & Lithuania & Eugenijus J.\\
2159 2157
 			    &		      &		  & \email{<ejs*ar.vtu.lt>}\\ \hline
2160 2158
 	\url{clamav.ftpproxy.org} & 217.110.63.228 & Germany & Andreas Schoenberg\\
... ...
@@ -2182,6 +2180,8 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
2182 2182
 				 &		  &	     & \email{<soho*paralax.org>}\\ \hline
2183 2183
 	\url{clamav.linux.pt} & 194.65.79.153 & Portugal & Jose Celestino\\
2184 2184
 			      &		      &		 & \email{<japc*co.sapo.pt>}\\ \hline
2185
+	\url{clamav.westlinks.com} & 67.43.173.205 & USA & Tim Treaster\\
2186
+				   &		   &	 & \email{<tim*westlinks.com>}\\ \hline
2185 2187
     \end{tabular}}
2186 2188
     \end{center}
2187 2189
 
... ...
@@ -2286,6 +2286,7 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
2286 2286
 	\item Alex Kah \email{<alex*narfonix.com>}
2287 2287
 	\item Stefan Kaltenbrunner \email{<stefan*kaltenbrunner.cc>}
2288 2288
 	\item Lloyd Kamara \email{<l.kamara*imperial.ac.uk>}
2289
+	\item Stefan Kanthak \email{<stefan.kanthak*fujitsu-siemens.com>}
2289 2290
 	\item Kazuhiko \email{<kazuhiko*fdiary.net>}
2290 2291
 	\item Jeremy Kitchen \email{<kitchen*scriptkitchen.com>}
2291 2292
 	\item Tomasz Klim \email{<tomek*euroneto.pl>}
... ...
@@ -2405,6 +2406,7 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
2405 2405
 	\item Daniel Theodoro \email{<dtheodoro*ig.com.br>}
2406 2406
 	\item Ryan Thompson \email{<clamav*sasknow.com>}
2407 2407
 	\item Yar Tikhiy \email{<yar*comp.chem.msu.su>}
2408
+	\item Andrew Toller \email{<atoller*connectfree.co.uk>}
2408 2409
 	\item Michael L. Torrie \email{<torriem*chem.byu.edu>}
2409 2410
 	\item Trashware \email{<trashware*gmx.net>}
2410 2411
 	\item Matthew Trent \email{<mtrent*localaccess.com>}
... ...
@@ -2522,6 +2524,7 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
2522 2522
 	\item Stroke of Color, Inc.
2523 2523
 	\item Synchro Sistemas de Informacao (\url{http://synchro.com.br/})
2524 2524
 	\item Sahil Tandon
2525
+	\item The Spamex Disposable Email Address Service (\url{http://www.spamex.com})
2525 2526
 	\item Brad Tarver
2526 2527
 	\item Per Reedtz Thomsen
2527 2528
 	\item William Tisdale
... ...
@@ -59,7 +59,7 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
59 59
 <BR>
60 60
 <BR>
61 61
     <DIV ALIGN="RIGHT">
62
-<BR>	<FONT SIZE="+3">Clam AntiVirus 0.86
62
+<BR>	<FONT SIZE="+3">Clam AntiVirus 0.86.1
63 63
 <BR>	<FONT SIZE="+3"><I>User Manual</I>
64 64
 <BR>    
65 65
 </FONT></FONT></DIV>
... ...
@@ -434,7 +434,7 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
434 434
 <BR><HR>
435 435
 <ADDRESS>
436 436
 Tomasz Kojm
437
-2005-06-19
437
+2005-06-23
438 438
 </ADDRESS>
439 439
 </BODY>
440 440
 </HTML>
... ...
@@ -59,7 +59,7 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
59 59
 <BR>
60 60
 <BR>
61 61
     <DIV ALIGN="RIGHT">
62
-<BR>	<FONT SIZE="+3">Clam AntiVirus 0.86
62
+<BR>	<FONT SIZE="+3">Clam AntiVirus 0.86.1
63 63
 <BR>	<FONT SIZE="+3"><I>User Manual</I>
64 64
 <BR>    
65 65
 </FONT></FONT></DIV>
... ...
@@ -434,7 +434,7 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
434 434
 <BR><HR>
435 435
 <ADDRESS>
436 436
 Tomasz Kojm
437
-2005-06-19
437
+2005-06-23
438 438
 </ADDRESS>
439 439
 </BODY>
440 440
 </HTML>
... ...
@@ -234,7 +234,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
234 234
 <BR><HR>
235 235
 <ADDRESS>
236 236
 Tomasz Kojm
237
-2005-06-19
237
+2005-06-23
238 238
 </ADDRESS>
239 239
 </BODY>
240 240
 </HTML>
... ...
@@ -77,7 +77,7 @@ Installation</A>
77 77
 <BR><HR>
78 78
 <ADDRESS>
79 79
 Tomasz Kojm
80
-2005-06-19
80
+2005-06-23
81 81
 </ADDRESS>
82 82
 </BODY>
83 83
 </HTML>
... ...
@@ -70,7 +70,7 @@ SquidClamAV Redirector is a Squid helper script which adds virus scanning
70 70
 <BR><HR>
71 71
 <ADDRESS>
72 72
 Tomasz Kojm
73
-2005-06-19
73
+2005-06-23
74 74
 </ADDRESS>
75 75
 </BODY>
76 76
 </HTML>
... ...
@@ -66,7 +66,7 @@ Squidclam is a replacement for SquidClamAV-Redirector.py written in C
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -65,7 +65,7 @@ Viralator is a perl script that virus scans http downloads on a linux
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -73,7 +73,7 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
73 73
 <BR><HR>
74 74
 <ADDRESS>
75 75
 Tomasz Kojm
76
-2005-06-19
76
+2005-06-23
77 77
 </ADDRESS>
78 78
 </BODY>
79 79
 </HTML>
... ...
@@ -73,7 +73,7 @@ This project provides a kernel module, which provides 3d-party applications
73 73
 <BR><HR>
74 74
 <ADDRESS>
75 75
 Tomasz Kojm
76
-2005-06-19
76
+2005-06-23
77 77
 </ADDRESS>
78 78
 </BODY>
79 79
 </HTML>
... ...
@@ -65,7 +65,7 @@ Famuko is an on-access scanner based on libfam and working in a userspace.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -66,7 +66,7 @@ samba-vscan provides on-access scanning of Samba shares. It supports
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -87,7 +87,7 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
87 87
 <BR><HR>
88 88
 <ADDRESS>
89 89
 Tomasz Kojm
90
-2005-06-19
90
+2005-06-23
91 91
 </ADDRESS>
92 92
 </BODY>
93 93
 </HTML>
... ...
@@ -66,7 +66,7 @@ clamailfilter is a Python script that provides anti-virus scanning via
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -67,7 +67,7 @@ clamassassin is a simple script for virus scanning with clamscan which
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -89,7 +89,7 @@ A note for Solaris/SPARC users: you must set the <I>ABI</I> system
89 89
 <BR><HR>
90 90
 <ADDRESS>
91 91
 Tomasz Kojm
92
-2005-06-19
92
+2005-06-23
93 93
 </ADDRESS>
94 94
 </BODY>
95 95
 </HTML>
... ...
@@ -67,7 +67,7 @@ A procmail filter for clamscan to work in conjunction with procmail.
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -66,7 +66,7 @@ KMail is a fully-featured email client that fits nicely into the K Desktop
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -68,7 +68,7 @@ MyClamMailFilter is an e-mail filter for procmail or maildrop.
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-19
71
+2005-06-23
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -68,7 +68,7 @@ Open WebMail by default can use ClamAV as the external viruscheck module
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-19
71
+2005-06-23
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -69,7 +69,7 @@ QClam is a simple program to plug ClamAV antivirus to your QMail mailbox.
69 69
 <BR><HR>
70 70
 <ADDRESS>
71 71
 Tomasz Kojm
72
-2005-06-19
72
+2005-06-23
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -67,7 +67,7 @@ QMVC is an unidirectional mail filter for qmail. It works in conjunction
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -68,7 +68,7 @@ Sylpheed Claws is a bleeding edge branch of Sylpheed, a light weight mail
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-19
71
+2005-06-23
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -66,7 +66,7 @@ Softlabs AntiVirus is a generic anti-virus filter for incoming mail
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -89,7 +89,7 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
89 89
 <BR><HR>
90 90
 <ADDRESS>
91 91
 Tomasz Kojm
92
-2005-06-19
92
+2005-06-23
93 93
 </ADDRESS>
94 94
 </BODY>
95 95
 </HTML>
... ...
@@ -68,7 +68,7 @@ AVScan is an anti-virus scanner for Endeavour Mark II that uses the ClamAV
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-19
71
+2005-06-23
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -75,7 +75,7 @@ Installing on a shell account</A>
75 75
 <BR><HR>
76 76
 <ADDRESS>
77 77
 Tomasz Kojm
78
-2005-06-19
78
+2005-06-23
79 79
 </ADDRESS>
80 80
 </BODY>
81 81
 </HTML>
... ...
@@ -65,7 +65,7 @@ BeClam is a port of ClamAV for the BeOS operating system.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -66,7 +66,7 @@ clamaktion is a little utility which allows KDE 3 users to scan files
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -66,7 +66,7 @@ ClamShell is a GUI frontend, written in Java, for the Linux version of
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -65,7 +65,7 @@ ClamTk is a perl-tk GUI for ClamAV.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -66,7 +66,7 @@ clamXav is a virus scanner with GUI for Mac OS X.
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -72,7 +72,7 @@ ClamWin provides Graphical User Interface to Clam AntiVirus scanning
72 72
 <BR><HR>
73 73
 <ADDRESS>
74 74
 Tomasz Kojm
75
-2005-06-19
75
+2005-06-23
76 76
 </ADDRESS>
77 77
 </BODY>
78 78
 </HTML>
... ...
@@ -66,7 +66,7 @@ FETCAV stands for Front End To Clam AntiVirus. It's a GUI interface
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -68,7 +68,7 @@ ClamAV Anti-Virus protection for the KDE desktop. The features include:
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-19
71
+2005-06-23
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -67,7 +67,7 @@ A small client for ClamAV that uses the STREAM socket connection to a
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -65,7 +65,7 @@ wbmclamav is a Webmin module to manage Clam AntiVirus, written by
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -69,7 +69,7 @@ Adding new system user and group</A>
69 69
 <BR><HR>
70 70
 <ADDRESS>
71 71
 Tomasz Kojm
72
-2005-06-19
72
+2005-06-23
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -83,7 +83,7 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
83 83
 <BR><HR>
84 84
 <ADDRESS>
85 85
 Tomasz Kojm
86
-2005-06-19
86
+2005-06-23
87 87
 </ADDRESS>
88 88
 </BODY>
89 89
 </HTML>
... ...
@@ -65,7 +65,7 @@ A ClamAV plugin for SpamAssassin 3.x.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -65,7 +65,7 @@ Ruby binding for ClamAV.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -67,7 +67,7 @@ ClamAV bindings for the D programming language
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -65,7 +65,7 @@ Scan files and control clamd directly from Perl.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -65,7 +65,7 @@ Perl binding for ClamAV.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -66,7 +66,7 @@ php-clamav is a small module that implements a limited subset of the
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -65,7 +65,7 @@ Python binding for ClamAV.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -66,7 +66,7 @@ WRAVLib is an extensible integration library to provide a virus security
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -88,7 +88,7 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
88 88
 <BR><HR>
89 89
 <ADDRESS>
90 90
 Tomasz Kojm
91
-2005-06-19
91
+2005-06-23
92 92
 </ADDRESS>
93 93
 </BODY>
94 94
 </HTML>
... ...
@@ -78,7 +78,7 @@ Compilation of base package</A>
78 78
 <BR><HR>
79 79
 <ADDRESS>
80 80
 Tomasz Kojm
81
-2005-06-19
81
+2005-06-23
82 82
 </ADDRESS>
83 83
 </BODY>
84 84
 </HTML>
... ...
@@ -71,7 +71,7 @@ INSERT (the Inside Security Rescue Toolkit) aims to be a multi-functional,
71 71
 <BR><HR>
72 72
 <ADDRESS>
73 73
 Tomasz Kojm
74
-2005-06-19
74
+2005-06-23
75 75
 </ADDRESS>
76 76
 </BODY>
77 77
 </HTML>
... ...
@@ -67,7 +67,7 @@ Local Area Security Linux is a Live CD distribution with a strong
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -67,7 +67,7 @@ mailgraph is a very simple mail statistics RRDtool frontend for Postfix
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -69,7 +69,7 @@ This module includes a Mailman handler for scanning incoming messages
69 69
 <BR><HR>
70 70
 <ADDRESS>
71 71
 Tomasz Kojm
72
-2005-06-19
72
+2005-06-23
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -67,7 +67,7 @@ Moodle is a course management system - a software package designed to help
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -67,7 +67,7 @@ nclamd, nclamav-milter and nclamdscan are rewritten versions of the
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -67,7 +67,7 @@ qmailmrtg7 utilizes qmail and tcpserver/multilog's extensive logging
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -67,7 +67,7 @@ redWall is a bootable CD-ROM firewall which focuses on web-based
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -66,7 +66,7 @@ Scan analyzer allows you to plot and view graphical representation of
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -68,7 +68,7 @@ snort-inline ships with a ClamAV preprocessor that will scan your network
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-19
71
+2005-06-23
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -64,7 +64,7 @@ Compilation with clamav-milter enabled</A>
64 64
 <BR><HR>
65 65
 <ADDRESS>
66 66
 Tomasz Kojm
67
-2005-06-19
67
+2005-06-23
68 68
 </ADDRESS>
69 69
 </BODY>
70 70
 </HTML>
... ...
@@ -64,7 +64,7 @@ Snort-ClamAV scans data in packets for viruses.
64 64
 <BR><HR>
65 65
 <ADDRESS>
66 66
 Tomasz Kojm
67
-2005-06-19
67
+2005-06-23
68 68
 </ADDRESS>
69 69
 </BODY>
70 70
 </HTML>
... ...
@@ -77,7 +77,7 @@ Credits</A>
77 77
 <BR><HR>
78 78
 <ADDRESS>
79 79
 Tomasz Kojm
80
-2005-06-19
80
+2005-06-23
81 81
 </ADDRESS>
82 82
 </BODY>
83 83
 </HTML>
... ...
@@ -1232,19 +1232,6 @@ Database mirrors
1232 1232
 </TR>
1233 1233
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1234 1234
 	<TT><A NAME="tex2html238"
1235
-  HREF="clamav.kyit.edu.tw">clamav.kyit.edu.tw</A></TT> </FONT></TD>
1236
-<TD ALIGN="CENTER"><FONT SIZE="-1"> 210.60.80.8 </FONT></TD>
1237
-<TD ALIGN="CENTER"><FONT SIZE="-1"> Taiwan </FONT></TD>
1238
-<TD ALIGN="CENTER"><FONT SIZE="-1"> Rui-Xiang Guo</FONT></TD>
1239
-</TR>
1240
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1241
-				 </FONT></TD>
1242
-<TD ALIGN="CENTER"><FONT SIZE="-1">	       </FONT></TD>
1243
-<TD ALIGN="CENTER"><FONT SIZE="-1">	</FONT></TD>
1244
-<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;rxg*cc.kyit.edu.tw&gt;</FONT></TD>
1245
-</TR>
1246
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1247
-	<TT><A NAME="tex2html239"
1248 1235
   HREF="clamav.vtu.lt">clamav.vtu.lt</A></TT> </FONT></TD>
1249 1236
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.219.149.170 </FONT></TD>
1250 1237
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Lithuania </FONT></TD>
... ...
@@ -1257,7 +1244,7 @@ Database mirrors
1257 1257
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ejs*ar.vtu.lt&gt;</FONT></TD>
1258 1258
 </TR>
1259 1259
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1260
-	<TT><A NAME="tex2html240"
1260
+	<TT><A NAME="tex2html239"
1261 1261
   HREF="clamav.ftpproxy.org">clamav.ftpproxy.org</A></TT> </FONT></TD>
1262 1262
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 217.110.63.228 </FONT></TD>
1263 1263
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1270,7 +1257,7 @@ Database mirrors
1270 1270
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;asg*ftpproxy.org&gt;</FONT></TD>
1271 1271
 </TR>
1272 1272
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1273
-	<TT><A NAME="tex2html241"
1273
+	<TT><A NAME="tex2html240"
1274 1274
   HREF="clamav.iasi.roedu.net">clamav.iasi.roedu.net</A></TT> </FONT></TD>
1275 1275
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 192.129.4.120 </FONT></TD>
1276 1276
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Romania </FONT></TD>
... ...
@@ -1293,7 +1280,7 @@ Database mirrors
1293 1293
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Location </FONT></TD>
1294 1294
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Administrator</FONT></TD>
1295 1295
 </TR>
1296
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html242"
1296
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html241"
1297 1297
   HREF="clamav.infonet.ee">clamav.infonet.ee</A></TT> </FONT></TD>
1298 1298
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 212.7.0.71 </FONT></TD>
1299 1299
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Estonia </FONT></TD>
... ...
@@ -1306,7 +1293,7 @@ Database mirrors
1306 1306
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;sbr*infonet.ee&gt;</FONT></TD>
1307 1307
 </TR>
1308 1308
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1309
-	<TT><A NAME="tex2html243"
1309
+	<TT><A NAME="tex2html242"
1310 1310
   HREF="clamav.savework.de">clamav.savework.de</A></TT> </FONT></TD>
1311 1311
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 81.169.151.96 </FONT></TD>
1312 1312
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1319,7 +1306,7 @@ Database mirrors
1319 1319
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;clamavdb*savework.de&gt;</FONT></TD>
1320 1320
 </TR>
1321 1321
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1322
-	<TT><A NAME="tex2html244"
1322
+	<TT><A NAME="tex2html243"
1323 1323
   HREF="clamav.citrin.ru">clamav.citrin.ru</A></TT> </FONT></TD>
1324 1324
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.248.60.121 </FONT></TD>
1325 1325
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Russia </FONT></TD>
... ...
@@ -1332,7 +1319,7 @@ Database mirrors
1332 1332
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;citrin*citrin.ru&gt;</FONT></TD>
1333 1333
 </TR>
1334 1334
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1335
-	<TT><A NAME="tex2html245"
1335
+	<TT><A NAME="tex2html244"
1336 1336
   HREF="clamav.keystreams.com">clamav.keystreams.com</A></TT> </FONT></TD>
1337 1337
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 207.158.28.8 </FONT></TD>
1338 1338
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -1345,7 +1332,7 @@ Database mirrors
1345 1345
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;volfman*keystreams.com&gt;</FONT></TD>
1346 1346
 </TR>
1347 1347
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1348
-	<TT><A NAME="tex2html246"
1348
+	<TT><A NAME="tex2html245"
1349 1349
   HREF="clamav.paralax.org">clamav.paralax.org</A></TT> </FONT></TD>
1350 1350
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 83.148.101.196 </FONT></TD>
1351 1351
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Bulgaria </FONT></TD>
... ...
@@ -1358,7 +1345,7 @@ Database mirrors
1358 1358
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;soho*paralax.org&gt;</FONT></TD>
1359 1359
 </TR>
1360 1360
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1361
-	<TT><A NAME="tex2html247"
1361
+	<TT><A NAME="tex2html246"
1362 1362
   HREF="clamav.linux.pt">clamav.linux.pt</A></TT> </FONT></TD>
1363 1363
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 194.65.79.153 </FONT></TD>
1364 1364
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Portugal </FONT></TD>
... ...
@@ -1371,7 +1358,7 @@ Database mirrors
1371 1371
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;japc*co.sapo.pt&gt;</FONT></TD>
1372 1372
 </TR>
1373 1373
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1374
-	<TT><A NAME="tex2html248"
1374
+	<TT><A NAME="tex2html247"
1375 1375
   HREF="clamav.westlinks.com">clamav.westlinks.com</A></TT> </FONT></TD>
1376 1376
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 67.43.173.205 </FONT></TD>
1377 1377
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -1414,7 +1401,7 @@ Database mirrors
1414 1414
 <!--End of Navigation Panel-->
1415 1415
 <ADDRESS>
1416 1416
 Tomasz Kojm
1417
-2005-06-19
1417
+2005-06-23
1418 1418
 </ADDRESS>
1419 1419
 </BODY>
1420 1420
 </HTML>
... ...
@@ -253,6 +253,8 @@ Contributors</A>
253 253
 </LI>
254 254
 <LI>Lloyd Kamara &lt;l.kamara*imperial.ac.uk&gt;
255 255
 </LI>
256
+<LI>Stefan Kanthak &lt;stefan.kanthak*fujitsu-siemens.com&gt;
257
+</LI>
256 258
 <LI>Kazuhiko &lt;kazuhiko*fdiary.net&gt;
257 259
 </LI>
258 260
 <LI>Jeremy Kitchen &lt;kitchen*scriptkitchen.com&gt;
... ...
@@ -315,7 +317,7 @@ Contributors</A>
315 315
 </LI>
316 316
 <LI>Alexander Marx &lt;mad-ml*madness.at&gt;
317 317
 </LI>
318
-<LI>Andreas Marx (<TT><A NAME="tex2html249"
318
+<LI>Andreas Marx (<TT><A NAME="tex2html248"
319 319
   HREF="http://www.av-test.org/">http://www.av-test.org/</A></TT>)
320 320
 </LI>
321 321
 <LI>Chris Masters &lt;cmasters*insl.co.uk&gt;
... ...
@@ -364,7 +366,7 @@ Contributors</A>
364 364
 </LI>
365 365
 <LI>Simon Munton &lt;simon*munton.demon.co.uk&gt;
366 366
 </LI>
367
-<LI>Farit Nabiullin <TT><A NAME="tex2html250"
367
+<LI>Farit Nabiullin <TT><A NAME="tex2html249"
368 368
   HREF="http://program.farit.ru/">http://program.farit.ru/</A></TT>
369 369
 </LI>
370 370
 <LI>Nemosoft Unv. &lt;nemosoft*smcc.demon.nl&gt;
... ...
@@ -389,7 +391,7 @@ Contributors</A>
389 389
 </LI>
390 390
 <LI>Martijn van Oosterhout &lt;kleptog*svana.org&gt;
391 391
 </LI>
392
-<LI>OpenAntiVirus Team (<TT><A NAME="tex2html251"
392
+<LI>OpenAntiVirus Team (<TT><A NAME="tex2html250"
393 393
   HREF="http://www.OpenAntiVirus.org/">http://www.OpenAntiVirus.org/</A></TT>)
394 394
 </LI>
395 395
 <LI>Tomasz Papszun &lt;tomek*lodz.tpsa.pl&gt;
... ...
@@ -494,6 +496,8 @@ Contributors</A>
494 494
 </LI>
495 495
 <LI>Yar Tikhiy &lt;yar*comp.chem.msu.su&gt;
496 496
 </LI>
497
+<LI>Andrew Toller &lt;atoller*connectfree.co.uk&gt;
498
+</LI>
497 499
 <LI>Michael L. Torrie &lt;torriem*chem.byu.edu&gt;
498 500
 </LI>
499 501
 <LI>Trashware &lt;trashware*gmx.net&gt;
... ...
@@ -565,7 +569,7 @@ Contributors</A>
565 565
 <!--End of Navigation Panel-->
566 566
 <ADDRESS>
567 567
 Tomasz Kojm
568
-2005-06-19
568
+2005-06-23
569 569
 </ADDRESS>
570 570
 </BODY>
571 571
 </HTML>
... ...
@@ -58,24 +58,24 @@ Donors</A>
58 58
     We've received financial support from: (in alphabetical order)
59 59
     
60 60
 <UL>
61
-<LI>ActiveIntra.net Inc. (<TT><A NAME="tex2html252"
61
+<LI>ActiveIntra.net Inc. (<TT><A NAME="tex2html251"
62 62
   HREF="http://www.activeintra.net/">http://www.activeintra.net/</A></TT>)
63 63
 </LI>
64
-<LI>Advance Healthcare Group (<TT><A NAME="tex2html253"
64
+<LI>Advance Healthcare Group (<TT><A NAME="tex2html252"
65 65
   HREF="http://www.ahgl.com.au/">http://www.ahgl.com.au/</A></TT>)
66 66
 </LI>
67
-<LI>American Computer &amp; Electronic Services Corp. (<TT><A NAME="tex2html254"
67
+<LI>American Computer &amp; Electronic Services Corp. (<TT><A NAME="tex2html253"
68 68
   HREF="http://www.acesnw.com/">http://www.acesnw.com/</A></TT>)
69 69
 </LI>
70 70
 <LI>Anonymous donor from Colorado, US
71 71
 </LI>
72
-<LI>Atlas College (<TT><A NAME="tex2html255"
72
+<LI>Atlas College (<TT><A NAME="tex2html254"
73 73
   HREF="http://www.atlascollege.nl/">http://www.atlascollege.nl/</A></TT>)
74 74
 </LI>
75
-<LI>AWD Online (<TT><A NAME="tex2html256"
75
+<LI>AWD Online (<TT><A NAME="tex2html255"
76 76
   HREF="http://www.awdonline.com/">http://www.awdonline.com/</A></TT>)
77 77
 </LI>
78
-<LI>Bear and Bear Consulting, Inc. (<TT><A NAME="tex2html257"
78
+<LI>Bear and Bear Consulting, Inc. (<TT><A NAME="tex2html256"
79 79
   HREF="http://www.bear-consulting.com/">http://www.bear-consulting.com/</A></TT>)
80 80
 </LI>
81 81
 <LI>Aaron Begley
... ...
@@ -84,32 +84,32 @@ Donors</A>
84 84
 </LI>
85 85
 <LI>Norman E. Brake, Jr.
86 86
 </LI>
87
-<LI>Canadian Web Hosting (<TT><A NAME="tex2html258"
87
+<LI>Canadian Web Hosting (<TT><A NAME="tex2html257"
88 88
   HREF="http://www.canadianwebhosting.com/">http://www.canadianwebhosting.com/</A></TT>)
89 89
 </LI>
90
-<LI>cedarcreeksoftware.com (<TT><A NAME="tex2html259"
90
+<LI>cedarcreeksoftware.com (<TT><A NAME="tex2html258"
91 91
   HREF="http://www.cedarcreeksoftware.com/">http://www.cedarcreeksoftware.com/</A></TT>)
92 92
 </LI>
93 93
 <LI>Thanos Chatziathanassiou
94 94
 </LI>
95 95
 <LI>Cheahch from Singapore
96 96
 </LI>
97
-<LI>Conexim Australia - business web hosting (<TT><A NAME="tex2html260"
97
+<LI>Conexim Australia - business web hosting (<TT><A NAME="tex2html259"
98 98
   HREF="http://www.conexim.com.au">http://www.conexim.com.au</A></TT>)
99 99
 </LI>
100 100
 <LI>Joe Cooper
101 101
 </LI>
102 102
 <LI>Ron DeFulio
103 103
 </LI>
104
-<LI>Steve Donegan (<TT><A NAME="tex2html261"
104
+<LI>Steve Donegan (<TT><A NAME="tex2html260"
105 105
   HREF="http://www.donegan.org/">http://www.donegan.org/</A></TT>)
106 106
 </LI>
107
-<LI>Dynamic Network Services, Inc (<TT><A NAME="tex2html262"
107
+<LI>Dynamic Network Services, Inc (<TT><A NAME="tex2html261"
108 108
   HREF="http://www.dyndns.org/">http://www.dyndns.org/</A></TT>)
109 109
 </LI>
110 110
 <LI>EAS Enterprises LLC
111 111
 </LI>
112
-<LI>Electric Embers (<TT><A NAME="tex2html263"
112
+<LI>Electric Embers (<TT><A NAME="tex2html262"
113 113
   HREF="http://electricembers.net">http://electricembers.net</A></TT>)
114 114
 </LI>
115 115
 <LI>John T. Ellis
... ...
@@ -118,25 +118,25 @@ Donors</A>
118 118
 </LI>
119 119
 <LI>Bernhard Erdmann
120 120
 </LI>
121
-<LI>David Eriksson (<TT><A NAME="tex2html264"
121
+<LI>David Eriksson (<TT><A NAME="tex2html263"
122 122
   HREF="http://www.2good.nu/">http://www.2good.nu/</A></TT>)
123 123
 </LI>
124 124
 <LI>Philip Ershler
125 125
 </LI>
126
-<LI>Explido Software USA Inc. (<TT><A NAME="tex2html265"
126
+<LI>Explido Software USA Inc. (<TT><A NAME="tex2html264"
127 127
   HREF="http://www.explido.us/">http://www.explido.us/</A></TT>)
128 128
 </LI>
129 129
 <LI>David Farrick
130 130
 </LI>
131 131
 <LI>Jim Feldman
132 132
 </LI>
133
-<LI>Petr Ferschmann (<TT><A NAME="tex2html266"
133
+<LI>Petr Ferschmann (<TT><A NAME="tex2html265"
134 134
   HREF="http://petr.ferschmann.cz/">http://petr.ferschmann.cz/</A></TT>)
135 135
 </LI>
136
-<LI>Andries Filmer (<TT><A NAME="tex2html267"
136
+<LI>Andries Filmer (<TT><A NAME="tex2html266"
137 137
   HREF="http://www.netexpo.nl/">http://www.netexpo.nl/</A></TT>)
138 138
 </LI>
139
-<LI>The Free Shopping Cart people (<TT><A NAME="tex2html268"
139
+<LI>The Free Shopping Cart people (<TT><A NAME="tex2html267"
140 140
   HREF="http://www.precisionweb.net/">http://www.precisionweb.net/</A></TT>)
141 141
 </LI>
142 142
 <LI>Paul Freeman
... ...
@@ -145,46 +145,46 @@ Donors</A>
145 145
 </LI>
146 146
 <LI>Paolo Galeazzi
147 147
 </LI>
148
-<LI>GANDI (<TT><A NAME="tex2html269"
148
+<LI>GANDI (<TT><A NAME="tex2html268"
149 149
   HREF="http://www.gandi.net/">http://www.gandi.net/</A></TT>)
150 150
 </LI>
151
-<LI>Jeremy Garcia (<TT><A NAME="tex2html270"
151
+<LI>Jeremy Garcia (<TT><A NAME="tex2html269"
152 152
   HREF="http://www.linuxquestions.org/">http://www.linuxquestions.org/</A></TT>)
153 153
 </LI>
154
-<LI>GBC Internet Service Center GmbH (<TT><A NAME="tex2html271"
154
+<LI>GBC Internet Service Center GmbH (<TT><A NAME="tex2html270"
155 155
   HREF="http://www.gbc.net/">http://www.gbc.net/</A></TT>)
156 156
 </LI>
157
-<LI>GCS Tech (<TT><A NAME="tex2html272"
157
+<LI>GCS Tech (<TT><A NAME="tex2html271"
158 158
   HREF="http://www.gcstech.net/">http://www.gcstech.net/</A></TT>)
159 159
 </LI>
160
-<LI>GHRS (<TT><A NAME="tex2html273"
160
+<LI>GHRS (<TT><A NAME="tex2html272"
161 161
   HREF="http://www.ghrshotels.com/">http://www.ghrshotels.com/</A></TT>)
162 162
 </LI>
163 163
 <LI>Todd Goodman
164 164
 </LI>
165
-<LI>Bill Gradwohl (<TT><A NAME="tex2html274"
165
+<LI>Bill Gradwohl (<TT><A NAME="tex2html273"
166 166
   HREF="http://www.ycc.com/">http://www.ycc.com/</A></TT>)
167 167
 </LI>
168 168
 <LI>Grain-of-Salt Consulting
169 169
 </LI>
170 170
 <LI>Terje Gravvold
171 171
 </LI>
172
-<LI>Hart Computer (<TT><A NAME="tex2html275"
172
+<LI>Hart Computer (<TT><A NAME="tex2html274"
173 173
   HREF="http://www.hart.co.jp/">http://www.hart.co.jp/</A></TT>)
174 174
 </LI>
175
-<LI>Hosting Metro LLC (<TT><A NAME="tex2html276"
175
+<LI>Hosting Metro LLC (<TT><A NAME="tex2html275"
176 176
   HREF="http://www.hostingmetro.com/">http://www.hostingmetro.com/</A></TT>)
177 177
 </LI>
178
-<LI>IDEAL Software GmbH (<TT><A NAME="tex2html277"
178
+<LI>IDEAL Software GmbH (<TT><A NAME="tex2html276"
179 179
   HREF="http://www.IdealSoftware.com/">http://www.IdealSoftware.com/</A></TT>)
180 180
 </LI>
181
-<LI>Industry Standard Computers (<TT><A NAME="tex2html278"
181
+<LI>Industry Standard Computers (<TT><A NAME="tex2html277"
182 182
   HREF="http://www.ISCnetwork.com/">http://www.ISCnetwork.com/</A></TT>)
183 183
 </LI>
184
-<LI>Invisik Corporation (<TT><A NAME="tex2html279"
184
+<LI>Invisik Corporation (<TT><A NAME="tex2html278"
185 185
   HREF="http://www.invisik.com/">http://www.invisik.com/</A></TT>)
186 186
 </LI>
187
-<LI>itXcel Internet - Domain Registration (<TT><A NAME="tex2html280"
187
+<LI>itXcel Internet - Domain Registration (<TT><A NAME="tex2html279"
188 188
   HREF="http://www.itxcel.com">http://www.itxcel.com</A></TT>)
189 189
 </LI>
190 190
 <LI>Craig Jackson
... ...
@@ -193,28 +193,28 @@ Donors</A>
193 193
 </LI>
194 194
 <LI>Jason Judge
195 195
 </LI>
196
-<LI>Keith (<TT><A NAME="tex2html281"
196
+<LI>Keith (<TT><A NAME="tex2html280"
197 197
   HREF="http://www.textpad.com/">http://www.textpad.com/</A></TT>)
198 198
 </LI>
199 199
 <LI>Brad Koehn
200 200
 </LI>
201
-<LI>Logic Partners Inc. (<TT><A NAME="tex2html282"
201
+<LI>Logic Partners Inc. (<TT><A NAME="tex2html281"
202 202
   HREF="http://www.logicpartners.com/">http://www.logicpartners.com/</A></TT>)
203 203
 </LI>
204
-<LI>Mark Lotspaih (<TT><A NAME="tex2html283"
204
+<LI>Mark Lotspaih (<TT><A NAME="tex2html282"
205 205
   HREF="http://www.lotcom.org/">http://www.lotcom.org/</A></TT>)
206 206
 </LI>
207
-<LI>Michel Machado (<TT><A NAME="tex2html284"
207
+<LI>Michel Machado (<TT><A NAME="tex2html283"
208 208
   HREF="http://oss.digirati.com.br/">http://oss.digirati.com.br/</A></TT>)
209 209
 </LI>
210 210
 <LI>Olivier Marechal
211 211
 </LI>
212
-<LI>Micro Logic Systems (<TT><A NAME="tex2html285"
212
+<LI>Micro Logic Systems (<TT><A NAME="tex2html284"
213 213
   HREF="http://www.mls.nc/">http://www.mls.nc/</A></TT>)
214 214
 </LI>
215 215
 <LI>Midcoast Internet Solutions
216 216
 </LI>
217
-<LI>Mimecast (<TT><A NAME="tex2html286"
217
+<LI>Mimecast (<TT><A NAME="tex2html285"
218 218
   HREF="http://www.mimecast.com/">http://www.mimecast.com/</A></TT>)
219 219
 </LI>
220 220
 <LI>Kazuhiro Miyaji
... ...
@@ -225,16 +225,16 @@ Donors</A>
225 225
 </LI>
226 226
 <LI>Tomas Morkus
227 227
 </LI>
228
-<LI>Michael Nolan (<TT><A NAME="tex2html287"
228
+<LI>Michael Nolan (<TT><A NAME="tex2html286"
229 229
   HREF="http://www.michaelnolan.co.uk/">http://www.michaelnolan.co.uk/</A></TT>)
230 230
 </LI>
231
-<LI>Oneworkspace.com (<TT><A NAME="tex2html288"
231
+<LI>Oneworkspace.com (<TT><A NAME="tex2html287"
232 232
   HREF="http://www.oneworkspace.com/">http://www.oneworkspace.com/</A></TT>)
233 233
 </LI>
234
-<LI>Origin Solutions (<TT><A NAME="tex2html289"
234
+<LI>Origin Solutions (<TT><A NAME="tex2html288"
235 235
   HREF="http://www.originsolutions.com.au/">http://www.originsolutions.com.au/</A></TT>)
236 236
 </LI>
237
-<LI>outermedia GmbH (<TT><A NAME="tex2html290"
237
+<LI>outermedia GmbH (<TT><A NAME="tex2html289"
238 238
   HREF="http://www.outermedia.de/">http://www.outermedia.de/</A></TT>)
239 239
 </LI>
240 240
 <LI>Alexander Panzhin
... ...
@@ -245,51 +245,54 @@ Donors</A>
245 245
 </LI>
246 246
 <LI>Paul Rantin
247 247
 </LI>
248
-<LI>Thomas J. Raef (<TT><A NAME="tex2html291"
248
+<LI>Thomas J. Raef (<TT><A NAME="tex2html290"
249 249
   HREF="http://www.ebasedsecurity.com">http://www.ebasedsecurity.com</A></TT>)
250 250
 </LI>
251
-<LI>Luke Reeves (<TT><A NAME="tex2html292"
251
+<LI>Luke Reeves (<TT><A NAME="tex2html291"
252 252
   HREF="http://www.neuro-tech.net/">http://www.neuro-tech.net/</A></TT>)
253 253
 </LI>
254
-<LI>RHX (<TT><A NAME="tex2html293"
254
+<LI>RHX (<TT><A NAME="tex2html292"
255 255
   HREF="http://www.rhx.it/">http://www.rhx.it/</A></TT>)
256 256
 </LI>
257 257
 <LI>Stefano Rizzetto
258 258
 </LI>
259
-<LI>Roaring Penguin Software Inc. (<TT><A NAME="tex2html294"
259
+<LI>Roaring Penguin Software Inc. (<TT><A NAME="tex2html293"
260 260
   HREF="http://www.roaringpenguin.com/">http://www.roaringpenguin.com/</A></TT>)
261 261
 </LI>
262 262
 <LI>Luke Rosenthal
263 263
 </LI>
264
-<LI>School of Engineering, University of Pennsylvania (<TT><A NAME="tex2html295"
264
+<LI>School of Engineering, University of Pennsylvania (<TT><A NAME="tex2html294"
265 265
   HREF="http://www.seas.upenn.edu/">http://www.seas.upenn.edu/</A></TT>)
266 266
 </LI>
267 267
 <LI>Tim Scoff
268 268
 </LI>
269
-<LI>Seattle Server (<TT><A NAME="tex2html296"
269
+<LI>Seattle Server (<TT><A NAME="tex2html295"
270 270
   HREF="http://www.seattleserver.com/">http://www.seattleserver.com/</A></TT>)
271 271
 </LI>
272
-<LI>Software Workshop Inc (<TT><A NAME="tex2html297"
272
+<LI>Software Workshop Inc (<TT><A NAME="tex2html296"
273 273
   HREF="http://www.softwareworkshop.com/">http://www.softwareworkshop.com/</A></TT>)
274 274
 </LI>
275
-<LI>Solutions In A Box (<TT><A NAME="tex2html298"
275
+<LI>Solutions In A Box (<TT><A NAME="tex2html297"
276 276
   HREF="http://www.siab.com.au/">http://www.siab.com.au/</A></TT>)
277 277
 </LI>
278 278
 <LI>Stephane Rault
279 279
 </LI>
280
-<LI>Fernando Augusto Medeiros Silva (<TT><A NAME="tex2html299"
280
+<LI>Fernando Augusto Medeiros Silva (<TT><A NAME="tex2html298"
281 281
   HREF="http://www.linuxplace.com.br/">http://www.linuxplace.com.br/</A></TT>)
282 282
 </LI>
283
-<LI>StarBand (<TT><A NAME="tex2html300"
283
+<LI>StarBand (<TT><A NAME="tex2html299"
284 284
   HREF="http://www.starband.com/">http://www.starband.com/</A></TT>)
285 285
 </LI>
286 286
 <LI>Stroke of Color, Inc.
287 287
 </LI>
288
-<LI>Synchro Sistemas de Informacao (<TT><A NAME="tex2html301"
288
+<LI>Synchro Sistemas de Informacao (<TT><A NAME="tex2html300"
289 289
   HREF="http://synchro.com.br/">http://synchro.com.br/</A></TT>)
290 290
 </LI>
291 291
 <LI>Sahil Tandon
292 292
 </LI>
293
+<LI>The Spamex Disposable Email Address Service (<TT><A NAME="tex2html301"
294
+  HREF="http://www.spamex.com">http://www.spamex.com</A></TT>)
295
+</LI>
293 296
 <LI>Brad Tarver
294 297
 </LI>
295 298
 <LI>Per Reedtz Thomsen
... ...
@@ -350,7 +353,7 @@ Donors</A>
350 350
 <!--End of Navigation Panel-->
351 351
 <ADDRESS>
352 352
 Tomasz Kojm
353
-2005-06-19
353
+2005-06-23
354 354
 </ADDRESS>
355 355
 </BODY>
356 356
 </HTML>
... ...
@@ -62,7 +62,7 @@ Graphics</A>
62 62
 <BR><HR>
63 63
 <ADDRESS>
64 64
 Tomasz Kojm
65
-2005-06-19
65
+2005-06-23
66 66
 </ADDRESS>
67 67
 </BODY>
68 68
 </HTML>
... ...
@@ -61,7 +61,7 @@ OpenAntiVirus</A>
61 61
 <BR><HR>
62 62
 <ADDRESS>
63 63
 Tomasz Kojm
64
-2005-06-19
64
+2005-06-23
65 65
 </ADDRESS>
66 66
 </BODY>
67 67
 </HTML>
... ...
@@ -158,7 +158,7 @@ Role: coder, virus database maintainer
158 158
 <BR><HR>
159 159
 <ADDRESS>
160 160
 Tomasz Kojm
161
-2005-06-19
161
+2005-06-23
162 162
 </ADDRESS>
163 163
 </BODY>
164 164
 </HTML>
... ...
@@ -64,11 +64,11 @@ Mathematics Department, Macquarie University, Sydney.
64 64
 The command line arguments were: <BR>
65 65
  <STRONG>latex2html</STRONG> <TT>-local_icons clamdoc.tex</TT>
66 66
 <P>
67
-The translation was initiated by Tomasz Kojm on 2005-06-19
67
+The translation was initiated by Tomasz Kojm on 2005-06-23
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-19
71
+2005-06-23
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -81,7 +81,7 @@ Configuration</A>
81 81
 <BR><HR>
82 82
 <ADDRESS>
83 83
 Tomasz Kojm
84
-2005-06-19
84
+2005-06-23
85 85
 </ADDRESS>
86 86
 </BODY>
87 87
 </HTML>
... ...
@@ -79,7 +79,7 @@ clamd</A>
79 79
 <BR><HR>
80 80
 <ADDRESS>
81 81
 Tomasz Kojm
82
-2005-06-19
82
+2005-06-23
83 83
 </ADDRESS>
84 84
 </BODY>
85 85
 </HTML>
... ...
@@ -91,7 +91,7 @@ On-access scanning</A>
91 91
 <BR><HR>
92 92
 <ADDRESS>
93 93
 Tomasz Kojm
94
-2005-06-19
94
+2005-06-23
95 95
 </ADDRESS>
96 96
 </BODY>
97 97
 </HTML>
... ...
@@ -81,7 +81,7 @@ define(`confINPUT_MAIL_FILTERS', `clmilter')
81 81
 <BR><HR>
82 82
 <ADDRESS>
83 83
 Tomasz Kojm
84
-2005-06-19
84
+2005-06-23
85 85
 </ADDRESS>
86 86
 </BODY>
87 87
 </HTML>
... ...
@@ -80,7 +80,7 @@ Clam AntiVirus is an anti-virus toolkit for UNIX, designed for e-mail
80 80
 <BR><HR>
81 81
 <ADDRESS>
82 82
 Tomasz Kojm
83
-2005-06-19
83
+2005-06-23
84 84
 </ADDRESS>
85 85
 </BODY>
86 86
 </HTML>
... ...
@@ -75,7 +75,7 @@ Testing</A>
75 75
 <BR><HR>
76 76
 <ADDRESS>
77 77
 Tomasz Kojm
78
-2005-06-19
78
+2005-06-23
79 79
 </ADDRESS>
80 80
 </BODY>
81 81
 </HTML>
... ...
@@ -133,7 +133,7 @@ N * * * *	/usr/local/bin/freshclam --quiet
133 133
 <!--End of Navigation Panel-->
134 134
 <ADDRESS>
135 135
 Tomasz Kojm
136
-2005-06-19
136
+2005-06-23
137 137
 </ADDRESS>
138 138
 </BODY>
139 139
 </HTML>
... ...
@@ -77,7 +77,7 @@ Closest mirrors</A>
77 77
 <BR><HR>
78 78
 <ADDRESS>
79 79
 Tomasz Kojm
80
-2005-06-19
80
+2005-06-23
81 81
 </ADDRESS>
82 82
 </BODY>
83 83
 </HTML>
... ...
@@ -80,7 +80,7 @@ Usage</A>
80 80
 <BR><HR>
81 81
 <ADDRESS>
82 82
 Tomasz Kojm
83
-2005-06-19
83
+2005-06-23
84 84
 </ADDRESS>
85 85
 </BODY>
86 86
 </HTML>
... ...
@@ -150,7 +150,7 @@ Perform a clean exit.
150 150
 <!--End of Navigation Panel-->
151 151
 <ADDRESS>
152 152
 Tomasz Kojm
153
-2005-06-19
153
+2005-06-23
154 154
 </ADDRESS>
155 155
 </BODY>
156 156
 </HTML>
... ...
@@ -76,7 +76,7 @@ Clam<B>d</B>scan</A>
76 76
 <BR><HR>
77 77
 <ADDRESS>
78 78
 Tomasz Kojm
79
-2005-06-19
79
+2005-06-23
80 80
 </ADDRESS>
81 81
 </BODY>
82 82
 </HTML>
... ...
@@ -93,7 +93,7 @@ SIGTERM signal. In other case you can lose an access
93 93
 <BR><HR>
94 94
 <ADDRESS>
95 95
 Tomasz Kojm
96
-2005-06-19
96
+2005-06-23
97 97
 </ADDRESS>
98 98
 </BODY>
99 99
 </HTML>
... ...
@@ -70,7 +70,7 @@ Output format</A>
70 70
 <BR><HR>
71 71
 <ADDRESS>
72 72
 Tomasz Kojm
73
-2005-06-19
73
+2005-06-23
74 74
 </ADDRESS>
75 75
 </BODY>
76 76
 </HTML>
... ...
@@ -92,7 +92,7 @@ clamscan</A>
92 92
 <BR><HR>
93 93
 <ADDRESS>
94 94
 Tomasz Kojm
95
-2005-06-19
95
+2005-06-23
96 96
 </ADDRESS>
97 97
 </BODY>
98 98
 </HTML>
... ...
@@ -82,7 +82,7 @@ Error messages are printed in the following format:
82 82
 <BR><HR>
83 83
 <ADDRESS>
84 84
 Tomasz Kojm
85
-2005-06-19
85
+2005-06-23
86 86
 </ADDRESS>
87 87
 </BODY>
88 88
 </HTML>
... ...
@@ -119,7 +119,7 @@ Features</A>
119 119
 <BR><HR>
120 120
 <ADDRESS>
121 121
 Tomasz Kojm
122
-2005-06-19
122
+2005-06-23
123 123
 </ADDRESS>
124 124
 </BODY>
125 125
 </HTML>
... ...
@@ -107,7 +107,7 @@ LibClamAV</A>
107 107
 <BR><HR>
108 108
 <ADDRESS>
109 109
 Tomasz Kojm
110
-2005-06-19
110
+2005-06-23
111 111
 </ADDRESS>
112 112
 </BODY>
113 113
 </HTML>
... ...
@@ -65,7 +65,7 @@ Licence</A>
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -71,7 +71,7 @@ Features</A>
71 71
 <BR><HR>
72 72
 <ADDRESS>
73 73
 Tomasz Kojm
74
-2005-06-19
74
+2005-06-23
75 75
 </ADDRESS>
76 76
 </BODY>
77 77
 </HTML>
... ...
@@ -107,7 +107,7 @@ Archives and compressed files</A>
107 107
 <BR><HR>
108 108
 <ADDRESS>
109 109
 Tomasz Kojm
110
-2005-06-19
110
+2005-06-23
111 111
 </ADDRESS>
112 112
 </BODY>
113 113
 </HTML>
... ...
@@ -62,7 +62,7 @@ Mail files</A>
62 62
 <BR><HR>
63 63
 <ADDRESS>
64 64
 Tomasz Kojm
65
-2005-06-19
65
+2005-06-23
66 66
 </ADDRESS>
67 67
 </BODY>
68 68
 </HTML>
... ...
@@ -75,7 +75,7 @@ API</A>
75 75
 <BR><HR>
76 76
 <ADDRESS>
77 77
 Tomasz Kojm
78
-2005-06-19
78
+2005-06-23
79 79
 </ADDRESS>
80 80
 </BODY>
81 81
 </HTML>
... ...
@@ -65,7 +65,7 @@ Header file</A>
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -88,7 +88,7 @@ Database loading</A>
88 88
 <BR><HR>
89 89
 <ADDRESS>
90 90
 Tomasz Kojm
91
-2005-06-19
91
+2005-06-23
92 92
 </ADDRESS>
93 93
 </BODY>
94 94
 </HTML>
... ...
@@ -68,7 +68,7 @@ Error handling</A>
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-19
71
+2005-06-23
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -68,7 +68,7 @@ Database structure</A>
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-19
71
+2005-06-23
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -79,7 +79,7 @@ Mailing lists</A>
79 79
 <BR><HR>
80 80
 <ADDRESS>
81 81
 Tomasz Kojm
82
-2005-06-19
82
+2005-06-23
83 83
 </ADDRESS>
84 84
 </BODY>
85 85
 </HTML>
... ...
@@ -100,7 +100,7 @@ Database reloading</A>
100 100
 <BR><HR>
101 101
 <ADDRESS>
102 102
 Tomasz Kojm
103
-2005-06-19
103
+2005-06-23
104 104
 </ADDRESS>
105 105
 </BODY>
106 106
 </HTML>
... ...
@@ -206,7 +206,7 @@ This flag enables HTML normalisation (including JScript
206 206
 <!--End of Navigation Panel-->
207 207
 <ADDRESS>
208 208
 Tomasz Kojm
209
-2005-06-19
209
+2005-06-23
210 210
 </ADDRESS>
211 211
 </BODY>
212 212
 </HTML>
... ...
@@ -65,7 +65,7 @@ Memory</A>
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -67,7 +67,7 @@ clamav-config</A>
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -65,7 +65,7 @@ Example</A>
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -80,7 +80,7 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
80 80
 <BR><HR>
81 81
 <ADDRESS>
82 82
 Tomasz Kojm
83
-2005-06-19
83
+2005-06-23
84 84
 </ADDRESS>
85 85
 </BODY>
86 86
 </HTML>
... ...
@@ -391,7 +391,7 @@ There are many ways to contribute to the ClamAV project. See the
391 391
 <!--End of Navigation Panel-->
392 392
 <ADDRESS>
393 393
 Tomasz Kojm
394
-2005-06-19
394
+2005-06-23
395 395
 </ADDRESS>
396 396
 </BODY>
397 397
 </HTML>
... ...
@@ -291,7 +291,7 @@ Third party software</A>
291 291
 <BR><HR>
292 292
 <ADDRESS>
293 293
 Tomasz Kojm
294
-2005-06-19
294
+2005-06-23
295 295
 </ADDRESS>
296 296
 </BODY>
297 297
 </HTML>
... ...
@@ -147,7 +147,7 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
147 147
 <BR><HR>
148 148
 <ADDRESS>
149 149
 Tomasz Kojm
150
-2005-06-19
150
+2005-06-23
151 151
 </ADDRESS>
152 152
 </BODY>
153 153
 </HTML>
... ...
@@ -71,7 +71,7 @@ clamscan is enabled automatically if clamscan binary is found
71 71
 <BR><HR>
72 72
 <ADDRESS>
73 73
 Tomasz Kojm
74
-2005-06-19
74
+2005-06-23
75 75
 </ADDRESS>
76 76
 </BODY>
77 77
 </HTML>
... ...
@@ -70,7 +70,7 @@ and then submit it on our website:
70 70
 <BR><HR>
71 71
 <ADDRESS>
72 72
 Tomasz Kojm
73
-2005-06-19
73
+2005-06-23
74 74
 </ADDRESS>
75 75
 </BODY>
76 76
 </HTML>
... ...
@@ -81,7 +81,7 @@ Please download the newest version (at least 0.1.4).
81 81
 <BR><HR>
82 82
 <ADDRESS>
83 83
 Tomasz Kojm
84
-2005-06-19
84
+2005-06-23
85 85
 </ADDRESS>
86 86
 </BODY>
87 87
 </HTML>
... ...
@@ -65,7 +65,7 @@ A mail processing client for ClamAV. Small, fast and easy to install.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -66,7 +66,7 @@ This is a fast (written in C) CommuniGate Pro anti-virus plugin with
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -66,7 +66,7 @@ ClamCour is a Courier-MTA multithread filter that allows Courier to scan
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -66,7 +66,7 @@ Clamfilter is a small, secure, and efficient content filter for Postfix
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -67,7 +67,7 @@ ClamSMTP is an SMTP filter for Postfix and other mail servers that checks
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -66,7 +66,7 @@ Clapf is a clamav based virus scanning and anti-spam content filter for
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -67,7 +67,7 @@ DspamPD is a transparent SMTP proxy daemon that passes email through DSPAM.
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -68,7 +68,7 @@ exiscan is a patch against exim version 4, providing support for content
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-19
71
+2005-06-23
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -69,7 +69,7 @@ gadoyanvirus is a (yet another) virus stopper for qmail. It replaces the
69 69
 <BR><HR>
70 70
 <ADDRESS>
71 71
 Tomasz Kojm
72
-2005-06-19
72
+2005-06-23
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -73,7 +73,7 @@ Base package</A>
73 73
 <BR><HR>
74 74
 <ADDRESS>
75 75
 Tomasz Kojm
76
-2005-06-19
76
+2005-06-23
77 77
 </ADDRESS>
78 78
 </BODY>
79 79
 </HTML>
... ...
@@ -70,7 +70,7 @@ hMailServer is a free, open source e-mail server for Microsoft Windows.
70 70
 <BR><HR>
71 71
 <ADDRESS>
72 72
 Tomasz Kojm
73
-2005-06-19
73
+2005-06-23
74 74
 </ADDRESS>
75 75
 </BODY>
76 76
 </HTML>
... ...
@@ -67,7 +67,7 @@ IVS Milter is a virus and spam scanning milter. The name stands for
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -69,7 +69,7 @@ j-chkmail is a fast (written in C) filter for sendmail. It does spam and
69 69
 <BR><HR>
70 70
 <ADDRESS>
71 71
 Tomasz Kojm
72
-2005-06-19
72
+2005-06-23
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -69,7 +69,7 @@ Mail avenger is a highly-configurable SMTP server. It allows you to reject
69 69
 <BR><HR>
70 70
 <ADDRESS>
71 71
 Tomasz Kojm
72
-2005-06-19
72
+2005-06-23
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -65,7 +65,7 @@ Mailnees is an open source mail content filter for Sendmail and Postfix.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -68,7 +68,7 @@ MailScanner scans all e-mail for viruses, spam and attacks against
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-19
71
+2005-06-23
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -66,7 +66,7 @@ Maverix is AOLserver module that implements SMTP protocol and acts as
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -65,7 +65,7 @@ This is an efficient mail scanner for Sendmail/milter.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -67,7 +67,7 @@ mxGuard is a spam filter for Ipswitch IMail mail server running on Windows
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -65,7 +65,7 @@ OdeiaVir is an e-mail filter for qmail or Exim.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -96,7 +96,7 @@ Supported platforms</A>
96 96
 <BR><HR>
97 97
 <ADDRESS>
98 98
 Tomasz Kojm
99
-2005-06-19
99
+2005-06-23
100 100
 </ADDRESS>
101 101
 </BODY>
102 102
 </HTML>
... ...
@@ -69,7 +69,7 @@ OpenProtect is a server side e-mail protection solution consisting of
69 69
 <BR><HR>
70 70
 <ADDRESS>
71 71
 Tomasz Kojm
72
-2005-06-19
72
+2005-06-23
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -68,7 +68,7 @@ Protea AntiVirus Tools for Lotus Domino scans and cleans automatically
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-19
71
+2005-06-23
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -65,7 +65,7 @@ PTSMail uses clamscan as part of the ptsfilter (a sendmail milter).
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -70,7 +70,7 @@ pymavis is an email parser, similar to the old amavis (or amavis-perl). The
70 70
 <BR><HR>
71 71
 <ADDRESS>
72 72
 Tomasz Kojm
73
-2005-06-19
73
+2005-06-23
74 74
 </ADDRESS>
75 75
 </BODY>
76 76
 </HTML>
... ...
@@ -66,7 +66,7 @@ Please increase the softlimit value if you are going to use it with
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -67,7 +67,7 @@ qpsmtpd is a flexible smtpd daemon written in Perl. Apart from the core
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -67,7 +67,7 @@ qscanq replaces qmail-queue. It initiates a scan (using clamscan or
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -67,7 +67,7 @@ The tool allows running anti-virus and content filtering software
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -67,7 +67,7 @@ The RevolSyS SMTP kit for Postfix provides an antispam and antivirus
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -68,7 +68,7 @@ This program is an email antivirus/antispam gateway. It is an interface
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-19
71
+2005-06-23
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -258,7 +258,7 @@ A standalone GUI version is also available. See ClamWin
258 258
 <!--End of Navigation Panel-->
259 259
 <ADDRESS>
260 260
 Tomasz Kojm
261
-2005-06-19
261
+2005-06-23
262 262
 </ADDRESS>
263 263
 </BODY>
264 264
 </HTML>
... ...
@@ -72,7 +72,7 @@ Scrubber is a server-side daemon for filtering mail content. It attempts
72 72
 <BR><HR>
73 73
 <ADDRESS>
74 74
 Tomasz Kojm
75
-2005-06-19
75
+2005-06-23
76 76
 </ADDRESS>
77 77
 </BODY>
78 78
 </HTML>
... ...
@@ -76,7 +76,7 @@ SMI! is a server side e-mail protection solution that combines firewall
76 76
 <BR><HR>
77 77
 <ADDRESS>
78 78
 Tomasz Kojm
79
-2005-06-19
79
+2005-06-23
80 80
 </ADDRESS>
81 81
 </BODY>
82 82
 </HTML>
... ...
@@ -67,7 +67,7 @@ Simscan is a mail filter for qmail, designed to block attachments during
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -66,7 +66,7 @@ SMFilter is a free plugin for SmarterMail Mail Server that provides
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -66,7 +66,7 @@ SmartSendmailFilter-clamd is a lightweight filter for Sendmail. It's
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -67,7 +67,7 @@ smtpfilter is a filter for an SMTP session which passes the session through
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -68,7 +68,7 @@ smtp-vilter is a high performance content filter for sendmail
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-19
71
+2005-06-23
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -65,7 +65,7 @@ Zabit is a content and attachment filter for Qmail.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -66,7 +66,7 @@ Zmscanner is an extensible modular content filter for Zmailer and Sendmail.
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -73,7 +73,7 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
73 73
 <BR><HR>
74 74
 <ADDRESS>
75 75
 Tomasz Kojm
76
-2005-06-19
76
+2005-06-23
77 77
 </ADDRESS>
78 78
 </BODY>
79 79
 </HTML>
... ...
@@ -80,7 +80,7 @@ Daily built snapshots</A>
80 80
 <BR><HR>
81 81
 <ADDRESS>
82 82
 Tomasz Kojm
83
-2005-06-19
83
+2005-06-23
84 84
 </ADDRESS>
85 85
 </BODY>
86 86
 </HTML>
... ...
@@ -65,7 +65,7 @@ ClamMail is an anti-virus POP3 proxy for Windows.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2005-06-19
68
+2005-06-23
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -70,7 +70,7 @@ This is a full-transparent proxy-server for POP3-clients. It runs on
70 70
 <BR><HR>
71 71
 <ADDRESS>
72 72
 Tomasz Kojm
73
-2005-06-19
73
+2005-06-23
74 74
 </ADDRESS>
75 75
 </BODY>
76 76
 </HTML>
... ...
@@ -71,7 +71,7 @@ pop3.proxy is a proxy server for the POP3 protocol. Usually it's used on
71 71
 <BR><HR>
72 72
 <ADDRESS>
73 73
 Tomasz Kojm
74
-2005-06-19
74
+2005-06-23
75 75
 </ADDRESS>
76 76
 </BODY>
77 77
 </HTML>
... ...
@@ -85,7 +85,7 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
85 85
 <BR><HR>
86 86
 <ADDRESS>
87 87
 Tomasz Kojm
88
-2005-06-19
88
+2005-06-23
89 89
 </ADDRESS>
90 90
 </BODY>
91 91
 </HTML>
... ...
@@ -67,7 +67,7 @@ DG AntiVirus Patch is a GPL addon that takes the virus scanning
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-19
70
+2005-06-23
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -69,7 +69,7 @@ Frox is a transparent FTP proxy which is released under the GPL. It
69 69
 <BR><HR>
70 70
 <ADDRESS>
71 71
 Tomasz Kojm
72
-2005-06-19
72
+2005-06-23
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -68,7 +68,7 @@ HAVP is a proxy with an antivirus filter. It does not cache or filter
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-19
71
+2005-06-23
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -63,7 +63,7 @@ Frox</A>
63 63
 <BR><HR>
64 64
 <ADDRESS>
65 65
 Tomasz Kojm
66
-2005-06-19
66
+2005-06-23
67 67
 </ADDRESS>
68 68
 </BODY>
69 69
 </HTML>
... ...
@@ -66,7 +66,7 @@ mod_clamav is an Apache virus scanning filter. It was written
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-19
69
+2005-06-23
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -75,7 +75,7 @@ SafeSquid is one of the most feature rich Content Filtering Internet
75 75
 <BR><HR>
76 76
 <ADDRESS>
77 77
 Tomasz Kojm
78
-2005-06-19
78
+2005-06-23
79 79
 </ADDRESS>
80 80
 </BODY>
81 81
 </HTML>
... ...
@@ -250,7 +250,9 @@ struct qtmd_stream *qtmd_init(struct mspack_system *system,
250 250
   if (!system) return NULL;
251 251
 
252 252
   /* Quantum supports window sizes of 2^10 (1Kb) through 2^21 (2Mb) */
253
-  if (window_bits < 10 || window_bits > 21) return NULL;
253
+
254
+  /* tk: temporary fix: only process 32KB+ window sizes */
255
+  if (window_bits < 15 || window_bits > 21) return NULL;
254 256
 
255 257
   input_buffer_size = (input_buffer_size + 1) & -2;
256 258
   if (input_buffer_size < 2) return NULL;