Browse code

merge backport fixes for 0.88.5

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

Sven Strickroth authored on 2007/02/18 23:47:48
Showing 178 changed files
... ...
@@ -1,3 +1,12 @@
1
+Sun Oct 15 20:10:31 CEST 2006
2
+-----------------------------
3
+  * Bugfixes:
4
+    - libclamav/rebuildpe.c: fix possible heap overflow [IDEF1597]
5
+    - libclamav/chmunpack.c: fix possible crash [IDEF1736]
6
+    - freshclam/manager.c: "Cache-Control: no-cache" is now disabled by default.
7
+      If you're behind a broken proxy you can recompile freshclam with
8
+      --enable-no-cache.
9
+
1 10
 Mon Aug  7 20:49:48 CEST 2006
2 11
 -----------------------------
3 12
   * Changes:
... ...
@@ -1,8 +1,8 @@
1
-0.88.3
1
+0.88.5
2 2
 ------
3 3
 
4
-This version fixes handling of large binhex files and multiple alternatives in
5
-virus signatures.
4
+This version fixes a crash in the CHM unpacker and a heap overflow in the
5
+function rebuilding PE files after unpacking.
6 6
 
7 7
 --
8 8
 The ClamAV team (http://www.clamav.net/team.html)
... ...
@@ -2,6 +2,16 @@ 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.88.5
6
+------
7
+
8
+This version fixes a crash in the CHM unpacker and a heap overflow in the
9
+function rebuilding PE files after unpacking.
10
+
11
+--
12
+The ClamAV team (http://www.clamav.net/team.html)
13
+
14
+
5 15
 0.88.4
6 16
 ------
7 17
 
... ...
@@ -84,6 +84,9 @@
84 84
 /* file i/o buffer size */
85 85
 #undef FILEBUFF
86 86
 
87
+/* use "Cache-Control: no-cache" in freshclam */
88
+#undef FRESHCLAM_NO_CACHE
89
+
87 90
 /* access rights in msghdr */
88 91
 #undef HAVE_ACCRIGHTS_IN_MSGHDR
89 92
 
... ...
@@ -113,6 +113,7 @@ void thrmgr_destroy(threadpool_t *threadpool)
113 113
 	pthread_mutex_destroy(&(threadpool->pool_mutex));
114 114
 	pthread_cond_destroy(&(threadpool->pool_cond));
115 115
 	pthread_attr_destroy(&(threadpool->pool_attr));
116
+	free(threadpool->queue);
116 117
 	free(threadpool);
117 118
 	return;
118 119
 }
... ...
@@ -1,6 +1,6 @@
1 1
 #! /bin/sh
2 2
 # Guess values for system-dependent variables and create Makefiles.
3
-# Generated by GNU Autoconf 2.59e.
3
+# Generated by GNU Autoconf 2.60a.
4 4
 #
5 5
 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
6 6
 # 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
... ...
@@ -230,8 +230,8 @@ IFS=$as_save_IFS
230 230
 
231 231
 
232 232
       for as_shell in $as_candidate_shells $SHELL; do
233
-	 # Try only shells which exist, to save several forks.
234
-	 if test -f "$as_shell" &&
233
+	 # Try only shells that exist, to save several forks.
234
+	 if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
235 235
 		{ ("$as_shell") 2> /dev/null <<\_ASEOF
236 236
 # Be Bourne compatible
237 237
 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
... ...
@@ -724,36 +724,36 @@ ac_unique_file="clamscan/clamscan.c"
724 724
 # Factoring default headers for most tests.
725 725
 ac_includes_default="\
726 726
 #include <stdio.h>
727
-#if HAVE_SYS_TYPES_H
727
+#ifdef HAVE_SYS_TYPES_H
728 728
 # include <sys/types.h>
729 729
 #endif
730
-#if HAVE_SYS_STAT_H
730
+#ifdef HAVE_SYS_STAT_H
731 731
 # include <sys/stat.h>
732 732
 #endif
733
-#if STDC_HEADERS
733
+#ifdef STDC_HEADERS
734 734
 # include <stdlib.h>
735 735
 # include <stddef.h>
736 736
 #else
737
-# if HAVE_STDLIB_H
737
+# ifdef HAVE_STDLIB_H
738 738
 #  include <stdlib.h>
739 739
 # endif
740 740
 #endif
741
-#if HAVE_STRING_H
742
-# if !STDC_HEADERS && HAVE_MEMORY_H
741
+#ifdef HAVE_STRING_H
742
+# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
743 743
 #  include <memory.h>
744 744
 # endif
745 745
 # include <string.h>
746 746
 #endif
747
-#if HAVE_STRINGS_H
747
+#ifdef HAVE_STRINGS_H
748 748
 # include <strings.h>
749 749
 #endif
750
-#if HAVE_INTTYPES_H
750
+#ifdef HAVE_INTTYPES_H
751 751
 # include <inttypes.h>
752 752
 #endif
753
-#if HAVE_STDINT_H
753
+#ifdef HAVE_STDINT_H
754 754
 # include <stdint.h>
755 755
 #endif
756
-#if HAVE_UNISTD_H
756
+#ifdef HAVE_UNISTD_H
757 757
 # include <unistd.h>
758 758
 #endif"
759 759
 
... ...
@@ -1480,6 +1480,7 @@ Optional Features:
1480 1480
   --enable-yp-check	  use ypmatch utility instead of /etc/passwd parsing
1481 1481
   --disable-clamav	  disable test for clamav user/group
1482 1482
   --enable-debug	  enable debug code
1483
+  --enable-no-cache	  use "Cache-Control: no-cache" in freshclam
1483 1484
   --enable-bigstack	  increase thread stack size
1484 1485
   --disable-gethostbyname_r	  disable support for gethostbyname_r
1485 1486
   --enable-readdir_r		    enable support for readdir_r
... ...
@@ -1573,7 +1574,7 @@ test -n "$ac_init_help" && exit $ac_status
1573 1573
 if $ac_init_version; then
1574 1574
   cat <<\_ACEOF
1575 1575
 configure
1576
-generated by GNU Autoconf 2.59e
1576
+generated by GNU Autoconf 2.60a
1577 1577
 
1578 1578
 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
1579 1579
 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
... ...
@@ -1587,7 +1588,7 @@ This file contains any messages produced by compilers while
1587 1587
 running configure, to aid debugging if configure makes a mistake.
1588 1588
 
1589 1589
 It was created by $as_me, which was
1590
-generated by GNU Autoconf 2.59e.  Invocation command line was
1590
+generated by GNU Autoconf 2.60a.  Invocation command line was
1591 1591
 
1592 1592
   $ $0 $@
1593 1593
 
... ...
@@ -2504,7 +2505,7 @@ done
2504 2504
 
2505 2505
 { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
2506 2506
 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; }
2507
-set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/^a-zA-Z0-9_/_/g'`
2507
+set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
2508 2508
 if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then
2509 2509
   echo $ECHO_N "(cached) $ECHO_C" >&6
2510 2510
 else
... ...
@@ -2561,7 +2562,7 @@ fi
2561 2561
 
2562 2562
 # Define the identity of the package.
2563 2563
  PACKAGE=clamav
2564
- VERSION="0.88.4"
2564
+ VERSION="0.88.5"
2565 2565
 
2566 2566
 
2567 2567
 cat >>confdefs.h <<_ACEOF
... ...
@@ -3161,7 +3162,7 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
3161 3161
 # in a Makefile.  We should not override ac_cv_exeext if it was cached,
3162 3162
 # so that the user can short-circuit this test for compilers unknown to
3163 3163
 # Autoconf.
3164
-for ac_file in $ac_files
3164
+for ac_file in $ac_files ''
3165 3165
 do
3166 3166
   test -f "$ac_file" || continue
3167 3167
   case $ac_file in
... ...
@@ -3189,6 +3190,12 @@ done
3189 3189
 test "$ac_cv_exeext" = no && ac_cv_exeext=
3190 3190
 
3191 3191
 else
3192
+  ac_file=''
3193
+fi
3194
+
3195
+{ echo "$as_me:$LINENO: result: $ac_file" >&5
3196
+echo "${ECHO_T}$ac_file" >&6; }
3197
+if test -z "$ac_file"; then
3192 3198
   echo "$as_me: failed program was:" >&5
3193 3199
 sed 's/^/| /' conftest.$ac_ext >&5
3194 3200
 
... ...
@@ -3200,8 +3207,6 @@ See \`config.log' for more details." >&2;}
3200 3200
 fi
3201 3201
 
3202 3202
 ac_exeext=$ac_cv_exeext
3203
-{ echo "$as_me:$LINENO: result: $ac_file" >&5
3204
-echo "${ECHO_T}$ac_file" >&6; }
3205 3203
 
3206 3204
 # Check that the compiler produces executables we can run.  If not, either
3207 3205
 # the compiler is broken, or we cross compile.
... ...
@@ -3408,7 +3413,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
3408 3408
 	ac_compiler_gnu=no
3409 3409
 fi
3410 3410
 
3411
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
3411
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3412 3412
 ac_cv_c_compiler_gnu=$ac_compiler_gnu
3413 3413
 
3414 3414
 fi
... ...
@@ -3594,13 +3599,13 @@ sed 's/^/| /' conftest.$ac_ext >&5
3594 3594
 
3595 3595
 fi
3596 3596
 
3597
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
3597
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3598 3598
 fi
3599 3599
 
3600
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
3600
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3601 3601
 fi
3602 3602
 
3603
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
3603
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3604 3604
    ac_c_werror_flag=$ac_save_c_werror_flag
3605 3605
 fi
3606 3606
 { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
... ...
@@ -3665,6 +3670,11 @@ static char *f (char * (*g) (char **, int), char **p, ...)
3665 3665
    that's true only with -std.  */
3666 3666
 int osf4_cc_array ['\x00' == 0 ? 1 : -1];
3667 3667
 
3668
+/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
3669
+   inside strings and character constants.  */
3670
+#define FOO(x) 'x'
3671
+int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
3672
+
3668 3673
 int test (int i, double x);
3669 3674
 struct s1 {int (*f) (int a);};
3670 3675
 struct s2 {int (*f) (double a);};
... ...
@@ -3725,7 +3735,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
3725 3725
 
3726 3726
 fi
3727 3727
 
3728
-rm -f conftest.err conftest.$ac_objext
3728
+rm -f core conftest.err conftest.$ac_objext
3729 3729
   test "x$ac_cv_prog_cc_c89" != "xno" && break
3730 3730
 done
3731 3731
 rm -f conftest.$ac_ext
... ...
@@ -4020,7 +4030,7 @@ fi
4020 4020
 
4021 4021
 { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
4022 4022
 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; }
4023
-set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/^a-zA-Z0-9_/_/g'`
4023
+set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
4024 4024
 if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then
4025 4025
   echo $ECHO_N "(cached) $ECHO_C" >&6
4026 4026
 else
... ...
@@ -5148,7 +5158,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
5148 5148
 	ac_cv_header_stdc=no
5149 5149
 fi
5150 5150
 
5151
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5151
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5152 5152
 
5153 5153
 if test $ac_cv_header_stdc = yes; then
5154 5154
   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
... ...
@@ -5344,7 +5354,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
5344 5344
 	eval "$as_ac_Header=no"
5345 5345
 fi
5346 5346
 
5347
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5347
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5348 5348
 fi
5349 5349
 ac_res=`eval echo '${'$as_ac_Header'}'`
5350 5350
 	       { echo "$as_me:$LINENO: result: $ac_res" >&5
... ...
@@ -5427,7 +5437,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
5427 5427
 	ac_header_compiler=no
5428 5428
 fi
5429 5429
 
5430
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
5430
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5431 5431
 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
5432 5432
 echo "${ECHO_T}$ac_header_compiler" >&6; }
5433 5433
 
... ...
@@ -5874,7 +5884,7 @@ test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
5874 5874
 case $host in
5875 5875
 *-*-irix6*)
5876 5876
   # Find out which ABI we are using.
5877
-  echo '#line 5877 "configure"' > conftest.$ac_ext
5877
+  echo '#line 5887 "configure"' > conftest.$ac_ext
5878 5878
   if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5879 5879
   (eval $ac_compile) 2>&5
5880 5880
   ac_status=$?
... ...
@@ -5986,7 +5996,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
5986 5986
 	lt_cv_cc_needs_belf=no
5987 5987
 fi
5988 5988
 
5989
-rm -f conftest.err conftest.$ac_objext \
5989
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
5990 5990
       conftest$ac_exeext conftest.$ac_ext
5991 5991
      ac_ext=c
5992 5992
 ac_cpp='$CPP $CPPFLAGS'
... ...
@@ -6364,7 +6374,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
6364 6364
 
6365 6365
 fi
6366 6366
 
6367
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6367
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6368 6368
     CFLAGS="$save_CFLAGS"
6369 6369
 
6370 6370
 fi
... ...
@@ -6462,7 +6472,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
6462 6462
 
6463 6463
 fi
6464 6464
 
6465
-rm -f conftest.err conftest.$ac_objext \
6465
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
6466 6466
       conftest$ac_exeext conftest.$ac_ext
6467 6467
   LDFLAGS="$save_LDFLAGS"
6468 6468
 
... ...
@@ -6507,7 +6517,7 @@ chmod -w .
6507 6507
 save_CFLAGS="$CFLAGS"
6508 6508
 CFLAGS="$CFLAGS -o out/conftest2.$ac_objext"
6509 6509
 compiler_c_o=no
6510
-if { (eval echo configure:6510: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then
6510
+if { (eval echo configure:6520: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then
6511 6511
   # The compiler can only warn and ignore the option if not recognized
6512 6512
   # So say no if there are warnings
6513 6513
   if test -s out/conftest.err; then
... ...
@@ -6611,7 +6621,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
6611 6611
 
6612 6612
 fi
6613 6613
 
6614
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6614
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6615 6615
   ac_objext="$save_objext"
6616 6616
   CFLAGS="$save_CFLAGS"
6617 6617
 
... ...
@@ -6727,7 +6737,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
6727 6727
 
6728 6728
 fi
6729 6729
 
6730
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
6730
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6731 6731
   CFLAGS="$save_CFLAGS"
6732 6732
   { echo "$as_me:$LINENO: result: $compiler_rtti_exceptions" >&5
6733 6733
 echo "${ECHO_T}$compiler_rtti_exceptions" >&6; }
... ...
@@ -8068,7 +8078,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
8068 8068
 	ac_cv_func_shl_load=no
8069 8069
 fi
8070 8070
 
8071
-rm -f conftest.err conftest.$ac_objext \
8071
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
8072 8072
       conftest$ac_exeext conftest.$ac_ext
8073 8073
 fi
8074 8074
 { echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
... ...
@@ -8147,7 +8157,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
8147 8147
 	ac_cv_lib_dld_shl_load=no
8148 8148
 fi
8149 8149
 
8150
-rm -f conftest.err conftest.$ac_objext \
8150
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
8151 8151
       conftest$ac_exeext conftest.$ac_ext
8152 8152
 LIBS=$ac_check_lib_save_LIBS
8153 8153
 fi
... ...
@@ -8248,7 +8258,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
8248 8248
 	ac_cv_func_dlopen=no
8249 8249
 fi
8250 8250
 
8251
-rm -f conftest.err conftest.$ac_objext \
8251
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
8252 8252
       conftest$ac_exeext conftest.$ac_ext
8253 8253
 fi
8254 8254
 { echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5
... ...
@@ -8327,7 +8337,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
8327 8327
 	ac_cv_lib_dl_dlopen=no
8328 8328
 fi
8329 8329
 
8330
-rm -f conftest.err conftest.$ac_objext \
8330
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
8331 8331
       conftest$ac_exeext conftest.$ac_ext
8332 8332
 LIBS=$ac_check_lib_save_LIBS
8333 8333
 fi
... ...
@@ -8407,7 +8417,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
8407 8407
 	ac_cv_lib_svld_dlopen=no
8408 8408
 fi
8409 8409
 
8410
-rm -f conftest.err conftest.$ac_objext \
8410
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
8411 8411
       conftest$ac_exeext conftest.$ac_ext
8412 8412
 LIBS=$ac_check_lib_save_LIBS
8413 8413
 fi
... ...
@@ -8487,7 +8497,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
8487 8487
 	ac_cv_lib_dld_dld_link=no
8488 8488
 fi
8489 8489
 
8490
-rm -f conftest.err conftest.$ac_objext \
8490
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
8491 8491
       conftest$ac_exeext conftest.$ac_ext
8492 8492
 LIBS=$ac_check_lib_save_LIBS
8493 8493
 fi
... ...
@@ -8543,7 +8553,7 @@ else
8543 8543
     lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
8544 8544
   lt_status=$lt_dlunknown
8545 8545
   cat > conftest.$ac_ext <<EOF
8546
-#line 8546 "configure"
8546
+#line 8556 "configure"
8547 8547
 #include "confdefs.h"
8548 8548
 
8549 8549
 #if HAVE_DLFCN_H
... ...
@@ -8641,7 +8651,7 @@ else
8641 8641
     lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
8642 8642
   lt_status=$lt_dlunknown
8643 8643
   cat > conftest.$ac_ext <<EOF
8644
-#line 8644 "configure"
8644
+#line 8654 "configure"
8645 8645
 #include "confdefs.h"
8646 8646
 
8647 8647
 #if HAVE_DLFCN_H
... ...
@@ -9454,7 +9464,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
9454 9454
 	ac_cv_header_stdc=no
9455 9455
 fi
9456 9456
 
9457
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
9457
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
9458 9458
 
9459 9459
 if test $ac_cv_header_stdc = yes; then
9460 9460
   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
... ...
@@ -9667,7 +9677,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
9667 9667
 	ac_header_compiler=no
9668 9668
 fi
9669 9669
 
9670
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
9670
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
9671 9671
 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
9672 9672
 echo "${ECHO_T}$ac_header_compiler" >&6; }
9673 9673
 
... ...
@@ -9826,7 +9836,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
9826 9826
 	ac_header_compiler=no
9827 9827
 fi
9828 9828
 
9829
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
9829
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
9830 9830
 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
9831 9831
 echo "${ECHO_T}$ac_header_compiler" >&6; }
9832 9832
 
... ...
@@ -9988,7 +9998,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
9988 9988
 	ac_cv_type_off_t=no
9989 9989
 fi
9990 9990
 
9991
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
9991
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
9992 9992
 fi
9993 9993
 { echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5
9994 9994
 echo "${ECHO_T}$ac_cv_type_off_t" >&6; }
... ...
@@ -10068,7 +10078,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
10068 10068
 
10069 10069
 fi
10070 10070
 
10071
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
10071
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
10072 10072
   if test x$ac_cv_sizeof_short != x ; then break; fi
10073 10073
 done
10074 10074
 
... ...
@@ -10153,7 +10163,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
10153 10153
 
10154 10154
 fi
10155 10155
 
10156
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
10156
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
10157 10157
   if test x$ac_cv_sizeof_int != x ; then break; fi
10158 10158
 done
10159 10159
 
... ...
@@ -10238,7 +10248,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
10238 10238
 
10239 10239
 fi
10240 10240
 
10241
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
10241
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
10242 10242
   if test x$ac_cv_sizeof_long != x ; then break; fi
10243 10243
 done
10244 10244
 
... ...
@@ -10323,7 +10333,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
10323 10323
 
10324 10324
 fi
10325 10325
 
10326
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
10326
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
10327 10327
   if test x$ac_cv_sizeof_long_long != x ; then break; fi
10328 10328
 done
10329 10329
 
... ...
@@ -10414,7 +10424,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
10414 10414
 	ac_cv_lib_socket_bind=no
10415 10415
 fi
10416 10416
 
10417
-rm -f conftest.err conftest.$ac_objext \
10417
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10418 10418
       conftest$ac_exeext conftest.$ac_ext
10419 10419
 LIBS=$ac_check_lib_save_LIBS
10420 10420
 fi
... ...
@@ -10495,7 +10505,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
10495 10495
 	ac_cv_lib_nsl_gethostent=no
10496 10496
 fi
10497 10497
 
10498
-rm -f conftest.err conftest.$ac_objext \
10498
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10499 10499
       conftest$ac_exeext conftest.$ac_ext
10500 10500
 LIBS=$ac_check_lib_save_LIBS
10501 10501
 fi
... ...
@@ -10613,7 +10623,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
10613 10613
 	eval "$as_ac_var=no"
10614 10614
 fi
10615 10615
 
10616
-rm -f conftest.err conftest.$ac_objext \
10616
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10617 10617
       conftest$ac_exeext conftest.$ac_ext
10618 10618
 fi
10619 10619
 ac_res=`eval echo '${'$as_ac_var'}'`
... ...
@@ -10696,7 +10706,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
10696 10696
 	ac_header_compiler=no
10697 10697
 fi
10698 10698
 
10699
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
10699
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
10700 10700
 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
10701 10701
 echo "${ECHO_T}$ac_header_compiler" >&6; }
10702 10702
 
... ...
@@ -10888,7 +10898,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
10888 10888
 	eval "$as_ac_var=no"
10889 10889
 fi
10890 10890
 
10891
-rm -f conftest.err conftest.$ac_objext \
10891
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
10892 10892
       conftest$ac_exeext conftest.$ac_ext
10893 10893
 fi
10894 10894
 ac_res=`eval echo '${'$as_ac_var'}'`
... ...
@@ -10945,21 +10955,21 @@ $ac_includes_default
10945 10945
 #include <fcntl.h>
10946 10946
 #include <sys/mman.h>
10947 10947
 
10948
-#if !STDC_HEADERS && !HAVE_STDLIB_H
10948
+#if !defined STDC_HEADERS && !defined HAVE_STDLIB_H
10949 10949
 char *malloc ();
10950 10950
 #endif
10951 10951
 
10952 10952
 /* This mess was copied from the GNU getpagesize.h.  */
10953
-#if !HAVE_GETPAGESIZE
10953
+#ifndef HAVE_GETPAGESIZE
10954 10954
 /* Assume that all systems that can run configure have sys/param.h.  */
10955
-# if !HAVE_SYS_PARAM_H
10955
+# ifndef HAVE_SYS_PARAM_H
10956 10956
 #  define HAVE_SYS_PARAM_H 1
10957 10957
 # endif
10958 10958
 
10959 10959
 # ifdef _SC_PAGESIZE
10960 10960
 #  define getpagesize() sysconf(_SC_PAGESIZE)
10961 10961
 # else /* no _SC_PAGESIZE */
10962
-#  if HAVE_SYS_PARAM_H
10962
+#  ifdef HAVE_SYS_PARAM_H
10963 10963
 #   include <sys/param.h>
10964 10964
 #   ifdef EXEC_PAGESIZE
10965 10965
 #    define getpagesize() EXEC_PAGESIZE
... ...
@@ -11152,7 +11162,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
11152 11152
 
11153 11153
 fi
11154 11154
 
11155
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
11155
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
11156 11156
   cat >conftest.$ac_ext <<_ACEOF
11157 11157
 /* confdefs.h.  */
11158 11158
 _ACEOF
... ...
@@ -11211,7 +11221,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
11211 11211
 
11212 11212
 fi
11213 11213
 
11214
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
11214
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
11215 11215
   break
11216 11216
 done
11217 11217
 fi
... ...
@@ -11291,7 +11301,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
11291 11291
 	ac_cv_func_fseeko=no
11292 11292
 fi
11293 11293
 
11294
-rm -f conftest.err conftest.$ac_objext \
11294
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
11295 11295
       conftest$ac_exeext conftest.$ac_ext
11296 11296
 fi
11297 11297
 { echo "$as_me:$LINENO: result: $ac_cv_func_fseeko" >&5
... ...
@@ -11437,7 +11447,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
11437 11437
 	ac_header_compiler=no
11438 11438
 fi
11439 11439
 
11440
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
11440
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
11441 11441
 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
11442 11442
 echo "${ECHO_T}$ac_header_compiler" >&6; }
11443 11443
 
... ...
@@ -11687,7 +11697,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
11687 11687
 	ac_cv_lib_z_inflateEnd=no
11688 11688
 fi
11689 11689
 
11690
-rm -f conftest.err conftest.$ac_objext \
11690
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
11691 11691
       conftest$ac_exeext conftest.$ac_ext
11692 11692
 LIBS=$ac_check_lib_save_LIBS
11693 11693
 fi
... ...
@@ -11777,7 +11787,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
11777 11777
 	ac_cv_lib_z_inflateEnd=no
11778 11778
 fi
11779 11779
 
11780
-rm -f conftest.err conftest.$ac_objext \
11780
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
11781 11781
       conftest$ac_exeext conftest.$ac_ext
11782 11782
 LIBS=$ac_check_lib_save_LIBS
11783 11783
 fi
... ...
@@ -11879,7 +11889,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
11879 11879
 	ac_cv_lib_bz2_bzReadOpen=no
11880 11880
 fi
11881 11881
 
11882
-rm -f conftest.err conftest.$ac_objext \
11882
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
11883 11883
       conftest$ac_exeext conftest.$ac_ext
11884 11884
 LIBS=$ac_check_lib_save_LIBS
11885 11885
 fi
... ...
@@ -11956,7 +11966,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
11956 11956
 	ac_header_compiler=no
11957 11957
 fi
11958 11958
 
11959
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
11959
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
11960 11960
 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
11961 11961
 echo "${ECHO_T}$ac_header_compiler" >&6; }
11962 11962
 
... ...
@@ -12136,7 +12146,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
12136 12136
 	ac_cv_lib_resolv___dn_expand=no
12137 12137
 fi
12138 12138
 
12139
-rm -f conftest.err conftest.$ac_objext \
12139
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
12140 12140
       conftest$ac_exeext conftest.$ac_ext
12141 12141
 LIBS=$ac_check_lib_save_LIBS
12142 12142
 fi
... ...
@@ -12218,7 +12228,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
12218 12218
 	ac_cv_lib_resolv_dn_expand=no
12219 12219
 fi
12220 12220
 
12221
-rm -f conftest.err conftest.$ac_objext \
12221
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
12222 12222
       conftest$ac_exeext conftest.$ac_ext
12223 12223
 LIBS=$ac_check_lib_save_LIBS
12224 12224
 fi
... ...
@@ -12292,7 +12302,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
12292 12292
 	ac_header_compiler=no
12293 12293
 fi
12294 12294
 
12295
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
12295
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
12296 12296
 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
12297 12297
 echo "${ECHO_T}$ac_header_compiler" >&6; }
12298 12298
 
... ...
@@ -12649,7 +12659,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
12649 12649
 	ac_cv_lib_gmp___gmpz_init=no
12650 12650
 fi
12651 12651
 
12652
-rm -f conftest.err conftest.$ac_objext \
12652
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
12653 12653
       conftest$ac_exeext conftest.$ac_ext
12654 12654
 LIBS=$ac_check_lib_save_LIBS
12655 12655
 fi
... ...
@@ -12733,7 +12743,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
12733 12733
 	ac_cv_lib_gmp_mpz_init=no
12734 12734
 fi
12735 12735
 
12736
-rm -f conftest.err conftest.$ac_objext \
12736
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
12737 12737
       conftest$ac_exeext conftest.$ac_ext
12738 12738
 LIBS=$ac_check_lib_save_LIBS
12739 12739
 fi
... ...
@@ -12892,6 +12902,22 @@ _ACEOF
12892 12892
 
12893 12893
 fi
12894 12894
 
12895
+# Check whether --enable-no-cache was given.
12896
+if test "${enable_no_cache+set}" = set; then
12897
+  enableval=$enable_no_cache; enable_nocache=$enableval
12898
+else
12899
+  enable_nocache="no"
12900
+fi
12901
+
12902
+
12903
+if test "$enable_nocache" = "yes"; then
12904
+
12905
+cat >>confdefs.h <<\_ACEOF
12906
+#define FRESHCLAM_NO_CACHE 1
12907
+_ACEOF
12908
+
12909
+fi
12910
+
12895 12911
 # Check whether --enable-bigstack was given.
12896 12912
 if test "${enable_bigstack+set}" = set; then
12897 12913
   enableval=$enable_bigstack; enable_bigstack=$enableval
... ...
@@ -13638,7 +13664,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
13638 13638
 	ac_cv_lib_milter_mi_stop=no
13639 13639
 fi
13640 13640
 
13641
-rm -f conftest.err conftest.$ac_objext \
13641
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
13642 13642
       conftest$ac_exeext conftest.$ac_ext
13643 13643
 LIBS=$ac_check_lib_save_LIBS
13644 13644
 fi
... ...
@@ -13725,7 +13751,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
13725 13725
 
13726 13726
 fi
13727 13727
 
13728
-rm -f conftest.err conftest.$ac_objext \
13728
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
13729 13729
       conftest$ac_exeext
13730 13730
   if test "${ac_cv_search_strlcpy+set}" = set; then
13731 13731
   break
... ...
@@ -13820,7 +13846,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
13820 13820
 	ac_cv_lib_milter_mi_stop=no
13821 13821
 fi
13822 13822
 
13823
-rm -f conftest.err conftest.$ac_objext \
13823
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
13824 13824
       conftest$ac_exeext conftest.$ac_ext
13825 13825
 LIBS=$ac_check_lib_save_LIBS
13826 13826
 fi
... ...
@@ -13908,7 +13934,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
13908 13908
 	ac_header_compiler=no
13909 13909
 fi
13910 13910
 
13911
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
13911
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
13912 13912
 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
13913 13913
 echo "${ECHO_T}$ac_header_compiler" >&6; }
13914 13914
 
... ...
@@ -14139,7 +14165,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
14139 14139
 	eval "$as_ac_var=no"
14140 14140
 fi
14141 14141
 
14142
-rm -f conftest.err conftest.$ac_objext \
14142
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
14143 14143
       conftest$ac_exeext conftest.$ac_ext
14144 14144
 fi
14145 14145
 ac_res=`eval echo '${'$as_ac_var'}'`
... ...
@@ -14394,7 +14420,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
14394 14394
 	ac_header_compiler=no
14395 14395
 fi
14396 14396
 
14397
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
14397
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14398 14398
 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
14399 14399
 echo "${ECHO_T}$ac_header_compiler" >&6; }
14400 14400
 
... ...
@@ -14630,11 +14656,11 @@ echo "${ECHO_T}no" >&6; }
14630 14630
                 LIBS=$save_LIBS
14631 14631
 fi
14632 14632
 
14633
-rm -f conftest.err conftest.$ac_objext \
14633
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
14634 14634
       conftest$ac_exeext conftest.$ac_ext
14635 14635
 fi
14636 14636
 
14637
-rm -f conftest.err conftest.$ac_objext \
14637
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
14638 14638
       conftest$ac_exeext conftest.$ac_ext
14639 14639
 else
14640 14640
   have_wrappers=no
... ...
@@ -14729,7 +14755,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
14729 14729
 
14730 14730
 fi
14731 14731
 
14732
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
14732
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14733 14733
 fi
14734 14734
 if test -z "$ac_cv_gethostbyname_args"; then
14735 14735
 cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -14798,7 +14824,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
14798 14798
 
14799 14799
 fi
14800 14800
 
14801
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
14801
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14802 14802
 fi
14803 14803
 if test -z "$ac_cv_gethostbyname_args"; then
14804 14804
 cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -14870,7 +14896,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
14870 14870
 
14871 14871
 fi
14872 14872
 
14873
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
14873
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14874 14874
 fi
14875 14875
 
14876 14876
 # Check whether --enable-gethostbyname_r was given.
... ...
@@ -14977,7 +15003,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
14977 14977
 
14978 14978
 fi
14979 14979
 
14980
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
14980
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14981 14981
 fi
14982 14982
 if test -z "$ac_cv_readdir_args"; then
14983 14983
     cat >conftest.$ac_ext <<_ACEOF
... ...
@@ -15045,7 +15071,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
15045 15045
 
15046 15046
 fi
15047 15047
 
15048
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
15048
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
15049 15049
 fi
15050 15050
 
15051 15051
 # Check whether --enable-readdir_r was given.
... ...
@@ -15160,7 +15186,7 @@ _ACEOF
15160 15160
 
15161 15161
 fi
15162 15162
 
15163
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
15163
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
15164 15164
 
15165 15165
     { echo "$as_me:$LINENO: result: yes, and it takes $ac_cv_ctime_args arguments" >&5
15166 15166
 echo "${ECHO_T}yes, and it takes $ac_cv_ctime_args arguments" >&6; }
... ...
@@ -15282,10 +15308,10 @@ main ()
15282 15282
 #ifndef __cplusplus
15283 15283
   /* Ultrix mips cc rejects this.  */
15284 15284
   typedef int charset[2];
15285
-  const charset x;
15285
+  const charset cs;
15286 15286
   /* SunOS 4.1.1 cc rejects this.  */
15287
-  char const *const *ccp;
15288
-  char **p;
15287
+  char const *const *pcpcc;
15288
+  char **ppc;
15289 15289
   /* NEC SVR4.0.2 mips cc rejects this.  */
15290 15290
   struct point {int x, y;};
15291 15291
   static struct point const zero = {0,0};
... ...
@@ -15294,11 +15320,11 @@ main ()
15294 15294
      an arm of an if-expression whose if-part is not a constant
15295 15295
      expression */
15296 15296
   const char *g = "string";
15297
-  ccp = &g + (g ? g-g : 0);
15297
+  pcpcc = &g + (g ? g-g : 0);
15298 15298
   /* HPUX 7.0 cc rejects these. */
15299
-  ++ccp;
15300
-  p = (char**) ccp;
15301
-  ccp = (char const *const *) p;
15299
+  ++pcpcc;
15300
+  ppc = (char**) pcpcc;
15301
+  pcpcc = (char const *const *) ppc;
15302 15302
   { /* SCO 3.2v4 cc rejects this.  */
15303 15303
     char *t;
15304 15304
     char const *s = 0 ? (char *) 0 : (char const *) 0;
... ...
@@ -15325,7 +15351,7 @@ main ()
15325 15325
     const int foo = 10;
15326 15326
     if (!foo) return 0;
15327 15327
   }
15328
-  return !x[0] && !zero.x;
15328
+  return !cs[0] && !zero.x;
15329 15329
 #endif
15330 15330
 
15331 15331
   ;
... ...
@@ -15374,7 +15400,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
15374 15374
 	ac_cv_c_const=no
15375 15375
 fi
15376 15376
 
15377
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
15377
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
15378 15378
 fi
15379 15379
 { echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5
15380 15380
 echo "${ECHO_T}$ac_cv_c_const" >&6; }
... ...
@@ -15448,7 +15474,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
15448 15448
 
15449 15449
 fi
15450 15450
 
15451
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
15451
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
15452 15452
   test "$ac_cv_c_inline" != no && break
15453 15453
 done
15454 15454
 
... ...
@@ -15490,7 +15516,8 @@ cat >>conftest.$ac_ext <<_ACEOF
15490 15490
 int
15491 15491
 main ()
15492 15492
 {
15493
-#if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN
15493
+#if  ! (defined BYTE_ORDER && defined BIG_ENDIAN && defined LITTLE_ENDIAN \
15494
+	&& BYTE_ORDER && BIG_ENDIAN && LITTLE_ENDIAN)
15494 15495
  bogus endian macros
15495 15496
 #endif
15496 15497
 
... ...
@@ -15595,7 +15622,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
15595 15595
 	ac_cv_c_bigendian=no
15596 15596
 fi
15597 15597
 
15598
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
15598
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
15599 15599
 else
15600 15600
   echo "$as_me: failed program was:" >&5
15601 15601
 sed 's/^/| /' conftest.$ac_ext >&5
... ...
@@ -15676,7 +15703,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
15676 15676
 
15677 15677
 fi
15678 15678
 
15679
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
15679
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
15680 15680
 else
15681 15681
   cat >conftest.$ac_ext <<_ACEOF
15682 15682
 /* confdefs.h.  */
... ...
@@ -15737,7 +15764,7 @@ fi
15737 15737
 
15738 15738
 fi
15739 15739
 
15740
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
15740
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
15741 15741
 fi
15742 15742
 { echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&5
15743 15743
 echo "${ECHO_T}$ac_cv_c_bigendian" >&6; }
... ...
@@ -15835,7 +15862,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
15835 15835
 	have_attrib_packed=no
15836 15836
 fi
15837 15837
 
15838
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
15838
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
15839 15839
 
15840 15840
 fi
15841 15841
 
... ...
@@ -15975,7 +16002,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
15975 15975
 	have_attrib_aligned=no
15976 15976
 fi
15977 15977
 
15978
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
15978
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
15979 15979
 
15980 15980
 fi
15981 15981
 
... ...
@@ -16061,7 +16088,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
16061 16061
 	have_fd_set=no
16062 16062
 fi
16063 16063
 
16064
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
16064
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
16065 16065
 if test $have_fd_set = yes; then
16066 16066
     { echo "$as_me:$LINENO: result: yes, found in sys/types.h" >&5
16067 16067
 echo "${ECHO_T}yes, found in sys/types.h" >&6; }
... ...
@@ -16234,7 +16261,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
16234 16234
 	have_socklen_t=no
16235 16235
 fi
16236 16236
 
16237
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
16237
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
16238 16238
 
16239 16239
 fi
16240 16240
 
... ...
@@ -16670,7 +16697,7 @@ exec 6>&1
16670 16670
 # values after options handling.
16671 16671
 ac_log="
16672 16672
 This file was extended by $as_me, which was
16673
-generated by GNU Autoconf 2.59e.  Invocation command line was
16673
+generated by GNU Autoconf 2.60a.  Invocation command line was
16674 16674
 
16675 16675
   CONFIG_FILES    = $CONFIG_FILES
16676 16676
   CONFIG_HEADERS  = $CONFIG_HEADERS
... ...
@@ -16699,7 +16726,7 @@ current configuration.
16699 16699
 Usage: $0 [OPTIONS] [FILE]...
16700 16700
 
16701 16701
   -h, --help       print this help, then exit
16702
-  -V, --version    print version number, then exit
16702
+  -V, --version    print version number and configuration settings, then exit
16703 16703
   -q, --quiet      do not print progress messages
16704 16704
   -d, --debug      don't remove temporary files
16705 16705
       --recheck    update $as_me by reconfiguring in the same conditions
... ...
@@ -16723,7 +16750,7 @@ _ACEOF
16723 16723
 cat >>$CONFIG_STATUS <<_ACEOF
16724 16724
 ac_cs_version="\\
16725 16725
 config.status
16726
-configured by $0, generated by GNU Autoconf 2.59e,
16726
+configured by $0, generated by GNU Autoconf 2.60a,
16727 16727
   with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
16728 16728
 
16729 16729
 Copyright (C) 2006 Free Software Foundation, Inc.
... ...
@@ -17359,6 +17386,7 @@ $ac_datarootdir_hack
17359 17359
 
17360 17360
 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
17361 17361
   { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
17362
+  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
17362 17363
   { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
17363 17364
 which seems to be undefined.  Please make sure it is defined." >&5
17364 17365
 echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
... ...
@@ -18,7 +18,7 @@ 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.88.4")
21
+AM_INIT_AUTOMAKE(clamav, "0.88.5")
22 22
 AM_CONFIG_HEADER(clamav-config.h)
23 23
 
24 24
 LC_CURRENT=1
... ...
@@ -277,6 +277,14 @@ if test "$enable_debug" = "yes"; then
277 277
   AC_DEFINE(CL_DEBUG,1,[enable debugging])
278 278
 fi
279 279
 
280
+AC_ARG_ENABLE(no-cache,
281
+[  --enable-no-cache	  use "Cache-Control: no-cache" in freshclam],
282
+enable_nocache=$enableval, enable_nocache="no")
283
+
284
+if test "$enable_nocache" = "yes"; then
285
+  AC_DEFINE(FRESHCLAM_NO_CACHE,1,[use "Cache-Control: no-cache" in freshclam])
286
+fi
287
+
280 288
 AC_ARG_ENABLE(bigstack,
281 289
 [  --enable-bigstack	  increase thread stack size],
282 290
 enable_bigstack=$enableval, enable_bigstack="no")
283 291
Binary files a/docs/clamdoc.pdf and b/docs/clamdoc.pdf differ
... ...
@@ -24,18 +24,18 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
24 24
 
25 25
 <BODY >
26 26
 <!--Navigation Panel-->
27
-<A NAME="tex2html359"
27
+<A NAME="tex2html376"
28 28
   HREF="node1.html">
29 29
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
30 30
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up_g.png"> 
31 31
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev_g.png"> 
32
-<A NAME="tex2html357"
32
+<A NAME="tex2html374"
33 33
   HREF="node1.html">
34 34
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
35 35
 <BR>
36
-<B> Next:</B> <A NAME="tex2html360"
36
+<B> Next:</B> <A NAME="tex2html377"
37 37
   HREF="node1.html">Contents</A>
38
- &nbsp <B>  <A NAME="tex2html358"
38
+ &nbsp <B>  <A NAME="tex2html375"
39 39
   HREF="node1.html">Contents</A></B> 
40 40
 <BR>
41 41
 <BR>
... ...
@@ -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.88.2
62
+<BR>	<FONT SIZE="+3">Clam AntiVirus 0.88.5
63 63
 <BR>	<FONT SIZE="+3"><I>User Manual</I>
64 64
 <BR>    
65 65
 </FONT></FONT></DIV>
... ...
@@ -71,378 +71,378 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
71 71
 <A NAME="CHILD_LINKS"></A>
72 72
 
73 73
 <UL>
74
-<LI><A NAME="tex2html361"
74
+<LI><A NAME="tex2html378"
75 75
   HREF="node1.html">Contents</A>
76
-<LI><A NAME="tex2html362"
76
+<LI><A NAME="tex2html379"
77 77
   HREF="node2.html">Introduction</A>
78 78
 <UL>
79
-<LI><A NAME="tex2html363"
79
+<LI><A NAME="tex2html380"
80 80
   HREF="node3.html">Features</A>
81
-<LI><A NAME="tex2html364"
81
+<LI><A NAME="tex2html381"
82 82
   HREF="node4.html">Mailing lists</A>
83
-<LI><A NAME="tex2html365"
83
+<LI><A NAME="tex2html382"
84 84
   HREF="node5.html">Virus submitting</A>
85 85
 </UL>
86
-<LI><A NAME="tex2html366"
86
+<LI><A NAME="tex2html383"
87 87
   HREF="node6.html">Base package</A>
88 88
 <UL>
89
-<LI><A NAME="tex2html367"
89
+<LI><A NAME="tex2html384"
90 90
   HREF="node7.html">Supported platforms</A>
91
-<LI><A NAME="tex2html368"
91
+<LI><A NAME="tex2html385"
92 92
   HREF="node8.html">Binary packages</A>
93
-<LI><A NAME="tex2html369"
93
+<LI><A NAME="tex2html386"
94 94
   HREF="node9.html">Daily built snapshots</A>
95 95
 </UL>
96
-<LI><A NAME="tex2html370"
96
+<LI><A NAME="tex2html387"
97 97
   HREF="node10.html">Installation</A>
98 98
 <UL>
99
-<LI><A NAME="tex2html371"
99
+<LI><A NAME="tex2html388"
100 100
   HREF="node11.html">Requirements</A>
101
-<LI><A NAME="tex2html372"
101
+<LI><A NAME="tex2html389"
102 102
   HREF="node12.html">Installing on a shell account</A>
103
-<LI><A NAME="tex2html373"
103
+<LI><A NAME="tex2html390"
104 104
   HREF="node13.html">Adding new system user and group</A>
105
-<LI><A NAME="tex2html374"
105
+<LI><A NAME="tex2html391"
106 106
   HREF="node14.html">Compilation of base package</A>
107
-<LI><A NAME="tex2html375"
107
+<LI><A NAME="tex2html392"
108 108
   HREF="node15.html">Compilation with clamav-milter enabled</A>
109 109
 </UL>
110
-<LI><A NAME="tex2html376"
110
+<LI><A NAME="tex2html393"
111 111
   HREF="node16.html">Configuration</A>
112 112
 <UL>
113
-<LI><A NAME="tex2html377"
113
+<LI><A NAME="tex2html394"
114 114
   HREF="node17.html">clamd</A>
115 115
 <UL>
116
-<LI><A NAME="tex2html378"
116
+<LI><A NAME="tex2html395"
117 117
   HREF="node18.html">On-access scanning</A>
118 118
 </UL>
119
-<LI><A NAME="tex2html379"
119
+<LI><A NAME="tex2html396"
120 120
   HREF="node19.html">clamav-milter</A>
121
-<LI><A NAME="tex2html380"
121
+<LI><A NAME="tex2html397"
122 122
   HREF="node20.html">Testing</A>
123
-<LI><A NAME="tex2html381"
123
+<LI><A NAME="tex2html398"
124 124
   HREF="node21.html">Setting up auto-updating</A>
125
-<LI><A NAME="tex2html382"
125
+<LI><A NAME="tex2html399"
126 126
   HREF="node22.html">Closest mirrors</A>
127 127
 </UL>
128
-<LI><A NAME="tex2html383"
128
+<LI><A NAME="tex2html400"
129 129
   HREF="node23.html">Usage</A>
130 130
 <UL>
131
-<LI><A NAME="tex2html384"
131
+<LI><A NAME="tex2html401"
132 132
   HREF="node24.html">Clam daemon</A>
133
-<LI><A NAME="tex2html385"
133
+<LI><A NAME="tex2html402"
134 134
   HREF="node25.html">Clam<B>d</B>scan</A>
135
-<LI><A NAME="tex2html386"
135
+<LI><A NAME="tex2html403"
136 136
   HREF="node26.html">Clamuko</A>
137
-<LI><A NAME="tex2html387"
137
+<LI><A NAME="tex2html404"
138 138
   HREF="node27.html">Output format</A>
139 139
 <UL>
140
-<LI><A NAME="tex2html388"
140
+<LI><A NAME="tex2html405"
141 141
   HREF="node28.html">clamscan</A>
142
-<LI><A NAME="tex2html389"
142
+<LI><A NAME="tex2html406"
143 143
   HREF="node29.html">clamd</A>
144 144
 </UL>
145 145
 </UL>
146
-<LI><A NAME="tex2html390"
146
+<LI><A NAME="tex2html407"
147 147
   HREF="node30.html">LibClamAV</A>
148 148
 <UL>
149
-<LI><A NAME="tex2html391"
149
+<LI><A NAME="tex2html408"
150 150
   HREF="node31.html">Licence</A>
151
-<LI><A NAME="tex2html392"
151
+<LI><A NAME="tex2html409"
152 152
   HREF="node32.html">Features</A>
153 153
 <UL>
154
-<LI><A NAME="tex2html393"
154
+<LI><A NAME="tex2html410"
155 155
   HREF="node33.html">Archives and compressed files</A>
156
-<LI><A NAME="tex2html394"
156
+<LI><A NAME="tex2html411"
157 157
   HREF="node34.html">Mail files</A>
158 158
 </UL>
159
-<LI><A NAME="tex2html395"
159
+<LI><A NAME="tex2html412"
160 160
   HREF="node35.html">API</A>
161 161
 <UL>
162
-<LI><A NAME="tex2html396"
162
+<LI><A NAME="tex2html413"
163 163
   HREF="node36.html">Header file</A>
164
-<LI><A NAME="tex2html397"
164
+<LI><A NAME="tex2html414"
165 165
   HREF="node37.html">Database loading</A>
166
-<LI><A NAME="tex2html398"
166
+<LI><A NAME="tex2html415"
167 167
   HREF="node38.html">Error handling</A>
168
-<LI><A NAME="tex2html399"
168
+<LI><A NAME="tex2html416"
169 169
   HREF="node39.html">Database structure</A>
170 170
 </UL>
171
-<LI><A NAME="tex2html400"
171
+<LI><A NAME="tex2html417"
172 172
   HREF="node40.html">Database reloading</A>
173 173
 <UL>
174
-<LI><A NAME="tex2html401"
174
+<LI><A NAME="tex2html418"
175 175
   HREF="node41.html">Data scan functions</A>
176
-<LI><A NAME="tex2html402"
176
+<LI><A NAME="tex2html419"
177 177
   HREF="node42.html">Memory</A>
178
-<LI><A NAME="tex2html403"
178
+<LI><A NAME="tex2html420"
179 179
   HREF="node43.html">clamav-config</A>
180
-<LI><A NAME="tex2html404"
180
+<LI><A NAME="tex2html421"
181 181
   HREF="node44.html">Example</A>
182 182
 </UL>
183
-<LI><A NAME="tex2html405"
183
+<LI><A NAME="tex2html422"
184 184
   HREF="node45.html">CVD format</A>
185 185
 </UL>
186
-<LI><A NAME="tex2html406"
186
+<LI><A NAME="tex2html423"
187 187
   HREF="node46.html">Frequently Asked Questions</A>
188
-<LI><A NAME="tex2html407"
188
+<LI><A NAME="tex2html424"
189 189
   HREF="node47.html">Third party software</A>
190 190
 <UL>
191
-<LI><A NAME="tex2html408"
191
+<LI><A NAME="tex2html425"
192 192
   HREF="node48.html"><I>MTA + ClamAV</I></A>
193 193
 <UL>
194
-<LI><A NAME="tex2html409"
194
+<LI><A NAME="tex2html426"
195 195
   HREF="node49.html">amavisd-new</A>
196
-<LI><A NAME="tex2html410"
196
+<LI><A NAME="tex2html427"
197 197
   HREF="node50.html">AMaViS - "Next Generation"</A>
198
-<LI><A NAME="tex2html411"
198
+<LI><A NAME="tex2html428"
199 199
   HREF="node51.html">ClamdMail</A>
200
-<LI><A NAME="tex2html412"
200
+<LI><A NAME="tex2html429"
201 201
   HREF="node52.html">Clement</A>
202
-<LI><A NAME="tex2html413"
202
+<LI><A NAME="tex2html430"
203 203
   HREF="node53.html">cgpav</A>
204
-<LI><A NAME="tex2html414"
204
+<LI><A NAME="tex2html431"
205 205
   HREF="node54.html">ClamCour</A>
206
-<LI><A NAME="tex2html415"
206
+<LI><A NAME="tex2html432"
207 207
   HREF="node55.html">clamfilter</A>
208
-<LI><A NAME="tex2html416"
208
+<LI><A NAME="tex2html433"
209 209
   HREF="node56.html">ClamSMTP</A>
210
-<LI><A NAME="tex2html417"
210
+<LI><A NAME="tex2html434"
211 211
   HREF="node57.html">clapf</A>
212
-<LI><A NAME="tex2html418"
212
+<LI><A NAME="tex2html435"
213 213
   HREF="node58.html">DSpamPD</A>
214
-<LI><A NAME="tex2html419"
214
+<LI><A NAME="tex2html436"
215 215
   HREF="node59.html">exiscan</A>
216
-<LI><A NAME="tex2html420"
216
+<LI><A NAME="tex2html437"
217 217
   HREF="node60.html">Gadoyanvirus</A>
218
-<LI><A NAME="tex2html421"
218
+<LI><A NAME="tex2html438"
219 219
   HREF="node61.html">hMailServer</A>
220
-<LI><A NAME="tex2html422"
220
+<LI><A NAME="tex2html439"
221 221
   HREF="node62.html">IVS Milter</A>
222
-<LI><A NAME="tex2html423"
222
+<LI><A NAME="tex2html440"
223 223
   HREF="node63.html">j-chkmail</A>
224
-<LI><A NAME="tex2html424"
224
+<LI><A NAME="tex2html441"
225 225
   HREF="node64.html">Mail Avenger</A>
226
-<LI><A NAME="tex2html425"
226
+<LI><A NAME="tex2html442"
227 227
   HREF="node65.html">Mailnees</A>
228
-<LI><A NAME="tex2html426"
228
+<LI><A NAME="tex2html443"
229 229
   HREF="node66.html">MailScanner</A>
230
-<LI><A NAME="tex2html427"
230
+<LI><A NAME="tex2html444"
231 231
   HREF="node67.html">Maverix</A>
232
-<LI><A NAME="tex2html428"
232
+<LI><A NAME="tex2html445"
233 233
   HREF="node68.html">MIMEDefang</A>
234
-<LI><A NAME="tex2html429"
234
+<LI><A NAME="tex2html446"
235 235
   HREF="node69.html">mxGuard for IMail</A>
236
-<LI><A NAME="tex2html430"
236
+<LI><A NAME="tex2html447"
237 237
   HREF="node70.html">OdeiaVir</A>
238
-<LI><A NAME="tex2html431"
238
+<LI><A NAME="tex2html448"
239 239
   HREF="node71.html">OpenProtect</A>
240
-<LI><A NAME="tex2html432"
240
+<LI><A NAME="tex2html449"
241 241
   HREF="node72.html">Protea AntiVirus Tools</A>
242
-<LI><A NAME="tex2html433"
242
+<LI><A NAME="tex2html450"
243 243
   HREF="node73.html">PSCM</A>
244
-<LI><A NAME="tex2html434"
244
+<LI><A NAME="tex2html451"
245 245
   HREF="node74.html">PTSMail Utilities</A>
246
-<LI><A NAME="tex2html435"
246
+<LI><A NAME="tex2html452"
247 247
   HREF="node75.html">pymavis</A>
248
-<LI><A NAME="tex2html436"
248
+<LI><A NAME="tex2html453"
249 249
   HREF="node76.html">Qmail-Scanner</A>
250
-<LI><A NAME="tex2html437"
250
+<LI><A NAME="tex2html454"
251 251
   HREF="node77.html">qpsmtp</A>
252
-<LI><A NAME="tex2html438"
252
+<LI><A NAME="tex2html455"
253 253
   HREF="node78.html">qscanq</A>
254
-<LI><A NAME="tex2html439"
254
+<LI><A NAME="tex2html456"
255 255
   HREF="node79.html">qSheff</A>
256
-<LI><A NAME="tex2html440"
256
+<LI><A NAME="tex2html457"
257 257
   HREF="node80.html">RevolSys SMTP kit for Postfix</A>
258
-<LI><A NAME="tex2html441"
258
+<LI><A NAME="tex2html458"
259 259
   HREF="node81.html">Sagator</A>
260
-<LI><A NAME="tex2html442"
260
+<LI><A NAME="tex2html459"
261 261
   HREF="node82.html">Scrubber</A>
262
-<LI><A NAME="tex2html443"
262
+<LI><A NAME="tex2html460"
263 263
   HREF="node83.html">Secure Mail Intelligence!</A>
264
-<LI><A NAME="tex2html444"
264
+<LI><A NAME="tex2html461"
265 265
   HREF="node84.html">simscan</A>
266
-<LI><A NAME="tex2html445"
266
+<LI><A NAME="tex2html462"
267 267
   HREF="node85.html">SmarterMail Filter</A>
268
-<LI><A NAME="tex2html446"
268
+<LI><A NAME="tex2html463"
269 269
   HREF="node86.html">smf-clamd</A>
270
-<LI><A NAME="tex2html447"
270
+<LI><A NAME="tex2html464"
271 271
   HREF="node87.html">smtpfilter</A>
272
-<LI><A NAME="tex2html448"
272
+<LI><A NAME="tex2html465"
273 273
   HREF="node88.html">smtp-gated</A>
274
-<LI><A NAME="tex2html449"
274
+<LI><A NAME="tex2html466"
275 275
   HREF="node89.html">smtp-vilter</A>
276
-<LI><A NAME="tex2html450"
276
+<LI><A NAME="tex2html467"
277 277
   HREF="node90.html">Zabit</A>
278
-<LI><A NAME="tex2html451"
278
+<LI><A NAME="tex2html468"
279 279
   HREF="node91.html">zmscanner</A>
280 280
 </UL>
281
-<LI><A NAME="tex2html452"
281
+<LI><A NAME="tex2html469"
282 282
   HREF="node92.html"><I>MTA + POP3 Proxy + ClamAV</I></A>
283 283
 <UL>
284
-<LI><A NAME="tex2html453"
284
+<LI><A NAME="tex2html470"
285 285
   HREF="node93.html">ClamMail</A>
286
-<LI><A NAME="tex2html454"
286
+<LI><A NAME="tex2html471"
287 287
   HREF="node94.html">POP3 Virus Scanner Daemon</A>
288
-<LI><A NAME="tex2html455"
288
+<LI><A NAME="tex2html472"
289 289
   HREF="node95.html">pop3.proxy</A>
290 290
 </UL>
291
-<LI><A NAME="tex2html456"
291
+<LI><A NAME="tex2html473"
292 292
   HREF="node96.html"><I>Web/FTP Proxy + ClamAV</I></A>
293 293
 <UL>
294
-<LI><A NAME="tex2html457"
294
+<LI><A NAME="tex2html474"
295 295
   HREF="node97.html">DansGuardian Anti-Virus Patch</A>
296
-<LI><A NAME="tex2html458"
296
+<LI><A NAME="tex2html475"
297 297
   HREF="node98.html">Frox</A>
298
-<LI><A NAME="tex2html459"
298
+<LI><A NAME="tex2html476"
299 299
   HREF="node99.html">HTTP Anti Virus Proxy</A>
300
-<LI><A NAME="tex2html460"
300
+<LI><A NAME="tex2html477"
301 301
   HREF="node100.html">mod_clamav</A>
302
-<LI><A NAME="tex2html461"
302
+<LI><A NAME="tex2html478"
303 303
   HREF="node101.html">ClamAV module for ProFTPD</A>
304
-<LI><A NAME="tex2html462"
304
+<LI><A NAME="tex2html479"
305 305
   HREF="node102.html">SafeSquid</A>
306
-<LI><A NAME="tex2html463"
306
+<LI><A NAME="tex2html480"
307 307
   HREF="node103.html">SquidClamAV Redirector</A>
308
-<LI><A NAME="tex2html464"
308
+<LI><A NAME="tex2html481"
309 309
   HREF="node104.html">Squidclam</A>
310
-<LI><A NAME="tex2html465"
310
+<LI><A NAME="tex2html482"
311 311
   HREF="node105.html">Viralator</A>
312 312
 </UL>
313
-<LI><A NAME="tex2html466"
313
+<LI><A NAME="tex2html483"
314 314
   HREF="node106.html"><I>Filesystem + ClamAV</I></A>
315 315
 <UL>
316
-<LI><A NAME="tex2html467"
316
+<LI><A NAME="tex2html484"
317 317
   HREF="node107.html">Dazuko</A>
318
-<LI><A NAME="tex2html468"
318
+<LI><A NAME="tex2html485"
319 319
   HREF="node108.html">Famuko</A>
320
-<LI><A NAME="tex2html469"
320
+<LI><A NAME="tex2html486"
321 321
   HREF="node109.html">OpenAntiVirus samba-vscan</A>
322 322
 </UL>
323
-<LI><A NAME="tex2html470"
323
+<LI><A NAME="tex2html487"
324 324
   HREF="node110.html"><I>Mail User Agent + ClamAV</I></A>
325 325
 <UL>
326
-<LI><A NAME="tex2html471"
326
+<LI><A NAME="tex2html488"
327 327
   HREF="node111.html">clamailfilter</A>
328
-<LI><A NAME="tex2html472"
328
+<LI><A NAME="tex2html489"
329 329
   HREF="node112.html">ClamAssassin</A>
330
-<LI><A NAME="tex2html473"
330
+<LI><A NAME="tex2html490"
331 331
   HREF="node113.html">clamscan-procfilter</A>
332
-<LI><A NAME="tex2html474"
332
+<LI><A NAME="tex2html491"
333 333
   HREF="node114.html">KMail</A>
334
-<LI><A NAME="tex2html475"
334
+<LI><A NAME="tex2html492"
335 335
   HREF="node115.html">MyClamMailFilter</A>
336
-<LI><A NAME="tex2html476"
336
+<LI><A NAME="tex2html493"
337 337
   HREF="node116.html">OpenWebMail</A>
338
-<LI><A NAME="tex2html477"
338
+<LI><A NAME="tex2html494"
339 339
   HREF="node117.html">QClam</A>
340
-<LI><A NAME="tex2html478"
340
+<LI><A NAME="tex2html495"
341 341
   HREF="node118.html">QMVC - Qmail Mail and Virus Control</A>
342
-<LI><A NAME="tex2html479"
342
+<LI><A NAME="tex2html496"
343 343
   HREF="node119.html">Sylpheed-Claws</A>
344
-<LI><A NAME="tex2html480"
344
+<LI><A NAME="tex2html497"
345 345
   HREF="node120.html">SoftlabsAV</A>
346 346
 </UL>
347
-<LI><A NAME="tex2html481"
347
+<LI><A NAME="tex2html498"
348 348
   HREF="node121.html"><I>Graphical User Interface + ClamAV</I></A>
349 349
 <UL>
350
-<LI><A NAME="tex2html482"
350
+<LI><A NAME="tex2html499"
351 351
   HREF="node122.html">AVScan</A>
352
-<LI><A NAME="tex2html483"
352
+<LI><A NAME="tex2html500"
353 353
   HREF="node123.html">BeClam</A>
354
-<LI><A NAME="tex2html484"
354
+<LI><A NAME="tex2html501"
355 355
   HREF="node124.html">Clamaktion</A>
356
-<LI><A NAME="tex2html485"
356
+<LI><A NAME="tex2html502"
357 357
   HREF="node125.html">ClamShell</A>
358
-<LI><A NAME="tex2html486"
358
+<LI><A NAME="tex2html503"
359 359
   HREF="node126.html">ClamTk</A>
360
-<LI><A NAME="tex2html487"
360
+<LI><A NAME="tex2html504"
361 361
   HREF="node127.html">clamXav</A>
362
-<LI><A NAME="tex2html488"
362
+<LI><A NAME="tex2html505"
363 363
   HREF="node128.html">ClamWin</A>
364
-<LI><A NAME="tex2html489"
364
+<LI><A NAME="tex2html506"
365 365
   HREF="node129.html">FETCAV</A>
366
-<LI><A NAME="tex2html490"
366
+<LI><A NAME="tex2html507"
367 367
   HREF="node130.html">KlamAV</A>
368
-<LI><A NAME="tex2html491"
368
+<LI><A NAME="tex2html508"
369 369
   HREF="node131.html">QtClamAVclient</A>
370
-<LI><A NAME="tex2html492"
370
+<LI><A NAME="tex2html509"
371 371
   HREF="node132.html">wbmclamav</A>
372 372
 </UL>
373
-<LI><A NAME="tex2html493"
373
+<LI><A NAME="tex2html510"
374 374
   HREF="node133.html"><I>Library + ClamAV</I></A>
375 375
 <UL>
376
-<LI><A NAME="tex2html494"
376
+<LI><A NAME="tex2html511"
377 377
   HREF="node134.html">ClamAV-Sharp</A>
378
-<LI><A NAME="tex2html495"
378
+<LI><A NAME="tex2html512"
379 379
   HREF="node135.html">ClamAVPlugin</A>
380
-<LI><A NAME="tex2html496"
380
+<LI><A NAME="tex2html513"
381 381
   HREF="node136.html">clamavr</A>
382
-<LI><A NAME="tex2html497"
382
+<LI><A NAME="tex2html514"
383 383
   HREF="node137.html">D bindings for ClamAV</A>
384
-<LI><A NAME="tex2html498"
384
+<LI><A NAME="tex2html515"
385 385
   HREF="node138.html">File::Scan::ClamAV</A>
386
-<LI><A NAME="tex2html499"
386
+<LI><A NAME="tex2html516"
387 387
   HREF="node139.html">Mail::ClamAV</A>
388
-<LI><A NAME="tex2html500"
388
+<LI><A NAME="tex2html517"
389 389
   HREF="node140.html">PHP ClamAV Lib</A>
390
-<LI><A NAME="tex2html501"
390
+<LI><A NAME="tex2html518"
391 391
   HREF="node141.html">pyclamav</A>
392
-<LI><A NAME="tex2html502"
392
+<LI><A NAME="tex2html519"
393 393
   HREF="node142.html">WRAVLib</A>
394 394
 </UL>
395
-<LI><A NAME="tex2html503"
395
+<LI><A NAME="tex2html520"
396 396
   HREF="node143.html"><I>Miscellaneous + ClamAV</I></A>
397 397
 <UL>
398
-<LI><A NAME="tex2html504"
398
+<LI><A NAME="tex2html521"
399 399
   HREF="node144.html">INSERT</A>
400
-<LI><A NAME="tex2html505"
400
+<LI><A NAME="tex2html522"
401 401
   HREF="node145.html">Local Area Security</A>
402
-<LI><A NAME="tex2html506"
402
+<LI><A NAME="tex2html523"
403 403
   HREF="node146.html">mailgraph</A>
404
-<LI><A NAME="tex2html507"
404
+<LI><A NAME="tex2html524"
405 405
   HREF="node147.html">mailman-clamav</A>
406
-<LI><A NAME="tex2html508"
406
+<LI><A NAME="tex2html525"
407 407
   HREF="node148.html">Moodle</A>
408
-<LI><A NAME="tex2html509"
408
+<LI><A NAME="tex2html526"
409 409
   HREF="node149.html">nclamd</A>
410
-<LI><A NAME="tex2html510"
410
+<LI><A NAME="tex2html527"
411 411
   HREF="node150.html">qmailmrtg7</A>
412
-<LI><A NAME="tex2html511"
412
+<LI><A NAME="tex2html528"
413 413
   HREF="node151.html">redWall Firewall</A>
414
-<LI><A NAME="tex2html512"
414
+<LI><A NAME="tex2html529"
415 415
   HREF="node152.html">Scan Log Analyzer</A>
416
-<LI><A NAME="tex2html513"
416
+<LI><A NAME="tex2html530"
417 417
   HREF="node153.html">snort-inline</A>
418
-<LI><A NAME="tex2html514"
418
+<LI><A NAME="tex2html531"
419 419
   HREF="node154.html">Snort-ClamAV</A>
420 420
 </UL>
421 421
 </UL>
422
-<LI><A NAME="tex2html515"
422
+<LI><A NAME="tex2html532"
423 423
   HREF="node155.html">Credits</A>
424 424
 <UL>
425
-<LI><A NAME="tex2html516"
425
+<LI><A NAME="tex2html533"
426 426
   HREF="node156.html">Database mirrors</A>
427
-<LI><A NAME="tex2html517"
427
+<LI><A NAME="tex2html534"
428 428
   HREF="node157.html">Contributors</A>
429
-<LI><A NAME="tex2html518"
429
+<LI><A NAME="tex2html535"
430 430
   HREF="node158.html">Donors</A>
431
-<LI><A NAME="tex2html519"
431
+<LI><A NAME="tex2html536"
432 432
   HREF="node159.html">Graphics</A>
433
-<LI><A NAME="tex2html520"
433
+<LI><A NAME="tex2html537"
434 434
   HREF="node160.html">OpenAntiVirus</A>
435 435
 </UL>
436
-<LI><A NAME="tex2html521"
436
+<LI><A NAME="tex2html538"
437 437
   HREF="node161.html">Authors</A>
438
-<LI><A NAME="tex2html522"
438
+<LI><A NAME="tex2html539"
439 439
   HREF="node162.html">About this document ...</A>
440 440
 </UL>
441 441
 <!--End of Table of Child-Links-->
442 442
 <BR><HR>
443 443
 <ADDRESS>
444 444
 Tomasz Kojm
445
-2006-04-29
445
+2006-10-15
446 446
 </ADDRESS>
447 447
 </BODY>
448 448
 </HTML>
... ...
@@ -24,18 +24,18 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
24 24
 
25 25
 <BODY >
26 26
 <!--Navigation Panel-->
27
-<A NAME="tex2html364"
27
+<A NAME="tex2html376"
28 28
   HREF="node1.html">
29 29
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
30 30
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up_g.png"> 
31 31
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev_g.png"> 
32
-<A NAME="tex2html362"
32
+<A NAME="tex2html374"
33 33
   HREF="node1.html">
34 34
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
35 35
 <BR>
36
-<B> Next:</B> <A NAME="tex2html365"
36
+<B> Next:</B> <A NAME="tex2html377"
37 37
   HREF="node1.html">Contents</A>
38
- &nbsp <B>  <A NAME="tex2html363"
38
+ &nbsp <B>  <A NAME="tex2html375"
39 39
   HREF="node1.html">Contents</A></B> 
40 40
 <BR>
41 41
 <BR>
... ...
@@ -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.88.3
62
+<BR>	<FONT SIZE="+3">Clam AntiVirus 0.88.5
63 63
 <BR>	<FONT SIZE="+3"><I>User Manual</I>
64 64
 <BR>    
65 65
 </FONT></FONT></DIV>
... ...
@@ -71,378 +71,378 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
71 71
 <A NAME="CHILD_LINKS"></A>
72 72
 
73 73
 <UL>
74
-<LI><A NAME="tex2html366"
74
+<LI><A NAME="tex2html378"
75 75
   HREF="node1.html">Contents</A>
76
-<LI><A NAME="tex2html367"
76
+<LI><A NAME="tex2html379"
77 77
   HREF="node2.html">Introduction</A>
78 78
 <UL>
79
-<LI><A NAME="tex2html368"
79
+<LI><A NAME="tex2html380"
80 80
   HREF="node3.html">Features</A>
81
-<LI><A NAME="tex2html369"
81
+<LI><A NAME="tex2html381"
82 82
   HREF="node4.html">Mailing lists</A>
83
-<LI><A NAME="tex2html370"
83
+<LI><A NAME="tex2html382"
84 84
   HREF="node5.html">Virus submitting</A>
85 85
 </UL>
86
-<LI><A NAME="tex2html371"
86
+<LI><A NAME="tex2html383"
87 87
   HREF="node6.html">Base package</A>
88 88
 <UL>
89
-<LI><A NAME="tex2html372"
89
+<LI><A NAME="tex2html384"
90 90
   HREF="node7.html">Supported platforms</A>
91
-<LI><A NAME="tex2html373"
91
+<LI><A NAME="tex2html385"
92 92
   HREF="node8.html">Binary packages</A>
93
-<LI><A NAME="tex2html374"
93
+<LI><A NAME="tex2html386"
94 94
   HREF="node9.html">Daily built snapshots</A>
95 95
 </UL>
96
-<LI><A NAME="tex2html375"
96
+<LI><A NAME="tex2html387"
97 97
   HREF="node10.html">Installation</A>
98 98
 <UL>
99
-<LI><A NAME="tex2html376"
99
+<LI><A NAME="tex2html388"
100 100
   HREF="node11.html">Requirements</A>
101
-<LI><A NAME="tex2html377"
101
+<LI><A NAME="tex2html389"
102 102
   HREF="node12.html">Installing on a shell account</A>
103
-<LI><A NAME="tex2html378"
103
+<LI><A NAME="tex2html390"
104 104
   HREF="node13.html">Adding new system user and group</A>
105
-<LI><A NAME="tex2html379"
105
+<LI><A NAME="tex2html391"
106 106
   HREF="node14.html">Compilation of base package</A>
107
-<LI><A NAME="tex2html380"
107
+<LI><A NAME="tex2html392"
108 108
   HREF="node15.html">Compilation with clamav-milter enabled</A>
109 109
 </UL>
110
-<LI><A NAME="tex2html381"
110
+<LI><A NAME="tex2html393"
111 111
   HREF="node16.html">Configuration</A>
112 112
 <UL>
113
-<LI><A NAME="tex2html382"
113
+<LI><A NAME="tex2html394"
114 114
   HREF="node17.html">clamd</A>
115 115
 <UL>
116
-<LI><A NAME="tex2html383"
116
+<LI><A NAME="tex2html395"
117 117
   HREF="node18.html">On-access scanning</A>
118 118
 </UL>
119
-<LI><A NAME="tex2html384"
119
+<LI><A NAME="tex2html396"
120 120
   HREF="node19.html">clamav-milter</A>
121
-<LI><A NAME="tex2html385"
121
+<LI><A NAME="tex2html397"
122 122
   HREF="node20.html">Testing</A>
123
-<LI><A NAME="tex2html386"
123
+<LI><A NAME="tex2html398"
124 124
   HREF="node21.html">Setting up auto-updating</A>
125
-<LI><A NAME="tex2html387"
125
+<LI><A NAME="tex2html399"
126 126
   HREF="node22.html">Closest mirrors</A>
127 127
 </UL>
128
-<LI><A NAME="tex2html388"
128
+<LI><A NAME="tex2html400"
129 129
   HREF="node23.html">Usage</A>
130 130
 <UL>
131
-<LI><A NAME="tex2html389"
131
+<LI><A NAME="tex2html401"
132 132
   HREF="node24.html">Clam daemon</A>
133
-<LI><A NAME="tex2html390"
133
+<LI><A NAME="tex2html402"
134 134
   HREF="node25.html">Clam<B>d</B>scan</A>
135
-<LI><A NAME="tex2html391"
135
+<LI><A NAME="tex2html403"
136 136
   HREF="node26.html">Clamuko</A>
137
-<LI><A NAME="tex2html392"
137
+<LI><A NAME="tex2html404"
138 138
   HREF="node27.html">Output format</A>
139 139
 <UL>
140
-<LI><A NAME="tex2html393"
140
+<LI><A NAME="tex2html405"
141 141
   HREF="node28.html">clamscan</A>
142
-<LI><A NAME="tex2html394"
142
+<LI><A NAME="tex2html406"
143 143
   HREF="node29.html">clamd</A>
144 144
 </UL>
145 145
 </UL>
146
-<LI><A NAME="tex2html395"
146
+<LI><A NAME="tex2html407"
147 147
   HREF="node30.html">LibClamAV</A>
148 148
 <UL>
149
-<LI><A NAME="tex2html396"
149
+<LI><A NAME="tex2html408"
150 150
   HREF="node31.html">Licence</A>
151
-<LI><A NAME="tex2html397"
151
+<LI><A NAME="tex2html409"
152 152
   HREF="node32.html">Features</A>
153 153
 <UL>
154
-<LI><A NAME="tex2html398"
154
+<LI><A NAME="tex2html410"
155 155
   HREF="node33.html">Archives and compressed files</A>
156
-<LI><A NAME="tex2html399"
156
+<LI><A NAME="tex2html411"
157 157
   HREF="node34.html">Mail files</A>
158 158
 </UL>
159
-<LI><A NAME="tex2html400"
159
+<LI><A NAME="tex2html412"
160 160
   HREF="node35.html">API</A>
161 161
 <UL>
162
-<LI><A NAME="tex2html401"
162
+<LI><A NAME="tex2html413"
163 163
   HREF="node36.html">Header file</A>
164
-<LI><A NAME="tex2html402"
164
+<LI><A NAME="tex2html414"
165 165
   HREF="node37.html">Database loading</A>
166
-<LI><A NAME="tex2html403"
166
+<LI><A NAME="tex2html415"
167 167
   HREF="node38.html">Error handling</A>
168
-<LI><A NAME="tex2html404"
168
+<LI><A NAME="tex2html416"
169 169
   HREF="node39.html">Database structure</A>
170 170
 </UL>
171
-<LI><A NAME="tex2html405"
171
+<LI><A NAME="tex2html417"
172 172
   HREF="node40.html">Database reloading</A>
173 173
 <UL>
174
-<LI><A NAME="tex2html406"
174
+<LI><A NAME="tex2html418"
175 175
   HREF="node41.html">Data scan functions</A>
176
-<LI><A NAME="tex2html407"
176
+<LI><A NAME="tex2html419"
177 177
   HREF="node42.html">Memory</A>
178
-<LI><A NAME="tex2html408"
178
+<LI><A NAME="tex2html420"
179 179
   HREF="node43.html">clamav-config</A>
180
-<LI><A NAME="tex2html409"
180
+<LI><A NAME="tex2html421"
181 181
   HREF="node44.html">Example</A>
182 182
 </UL>
183
-<LI><A NAME="tex2html410"
183
+<LI><A NAME="tex2html422"
184 184
   HREF="node45.html">CVD format</A>
185 185
 </UL>
186
-<LI><A NAME="tex2html411"
186
+<LI><A NAME="tex2html423"
187 187
   HREF="node46.html">Frequently Asked Questions</A>
188
-<LI><A NAME="tex2html412"
188
+<LI><A NAME="tex2html424"
189 189
   HREF="node47.html">Third party software</A>
190 190
 <UL>
191
-<LI><A NAME="tex2html413"
191
+<LI><A NAME="tex2html425"
192 192
   HREF="node48.html"><I>MTA + ClamAV</I></A>
193 193
 <UL>
194
-<LI><A NAME="tex2html414"
194
+<LI><A NAME="tex2html426"
195 195
   HREF="node49.html">amavisd-new</A>
196
-<LI><A NAME="tex2html415"
196
+<LI><A NAME="tex2html427"
197 197
   HREF="node50.html">AMaViS - "Next Generation"</A>
198
-<LI><A NAME="tex2html416"
198
+<LI><A NAME="tex2html428"
199 199
   HREF="node51.html">ClamdMail</A>
200
-<LI><A NAME="tex2html417"
200
+<LI><A NAME="tex2html429"
201 201
   HREF="node52.html">Clement</A>
202
-<LI><A NAME="tex2html418"
202
+<LI><A NAME="tex2html430"
203 203
   HREF="node53.html">cgpav</A>
204
-<LI><A NAME="tex2html419"
204
+<LI><A NAME="tex2html431"
205 205
   HREF="node54.html">ClamCour</A>
206
-<LI><A NAME="tex2html420"
206
+<LI><A NAME="tex2html432"
207 207
   HREF="node55.html">clamfilter</A>
208
-<LI><A NAME="tex2html421"
208
+<LI><A NAME="tex2html433"
209 209
   HREF="node56.html">ClamSMTP</A>
210
-<LI><A NAME="tex2html422"
210
+<LI><A NAME="tex2html434"
211 211
   HREF="node57.html">clapf</A>
212
-<LI><A NAME="tex2html423"
212
+<LI><A NAME="tex2html435"
213 213
   HREF="node58.html">DSpamPD</A>
214
-<LI><A NAME="tex2html424"
214
+<LI><A NAME="tex2html436"
215 215
   HREF="node59.html">exiscan</A>
216
-<LI><A NAME="tex2html425"
216
+<LI><A NAME="tex2html437"
217 217
   HREF="node60.html">Gadoyanvirus</A>
218
-<LI><A NAME="tex2html426"
218
+<LI><A NAME="tex2html438"
219 219
   HREF="node61.html">hMailServer</A>
220
-<LI><A NAME="tex2html427"
220
+<LI><A NAME="tex2html439"
221 221
   HREF="node62.html">IVS Milter</A>
222
-<LI><A NAME="tex2html428"
222
+<LI><A NAME="tex2html440"
223 223
   HREF="node63.html">j-chkmail</A>
224
-<LI><A NAME="tex2html429"
224
+<LI><A NAME="tex2html441"
225 225
   HREF="node64.html">Mail Avenger</A>
226
-<LI><A NAME="tex2html430"
226
+<LI><A NAME="tex2html442"
227 227
   HREF="node65.html">Mailnees</A>
228
-<LI><A NAME="tex2html431"
228
+<LI><A NAME="tex2html443"
229 229
   HREF="node66.html">MailScanner</A>
230
-<LI><A NAME="tex2html432"
230
+<LI><A NAME="tex2html444"
231 231
   HREF="node67.html">Maverix</A>
232
-<LI><A NAME="tex2html433"
232
+<LI><A NAME="tex2html445"
233 233
   HREF="node68.html">MIMEDefang</A>
234
-<LI><A NAME="tex2html434"
234
+<LI><A NAME="tex2html446"
235 235
   HREF="node69.html">mxGuard for IMail</A>
236
-<LI><A NAME="tex2html435"
236
+<LI><A NAME="tex2html447"
237 237
   HREF="node70.html">OdeiaVir</A>
238
-<LI><A NAME="tex2html436"
238
+<LI><A NAME="tex2html448"
239 239
   HREF="node71.html">OpenProtect</A>
240
-<LI><A NAME="tex2html437"
240
+<LI><A NAME="tex2html449"
241 241
   HREF="node72.html">Protea AntiVirus Tools</A>
242
-<LI><A NAME="tex2html438"
242
+<LI><A NAME="tex2html450"
243 243
   HREF="node73.html">PSCM</A>
244
-<LI><A NAME="tex2html439"
244
+<LI><A NAME="tex2html451"
245 245
   HREF="node74.html">PTSMail Utilities</A>
246
-<LI><A NAME="tex2html440"
246
+<LI><A NAME="tex2html452"
247 247
   HREF="node75.html">pymavis</A>
248
-<LI><A NAME="tex2html441"
248
+<LI><A NAME="tex2html453"
249 249
   HREF="node76.html">Qmail-Scanner</A>
250
-<LI><A NAME="tex2html442"
250
+<LI><A NAME="tex2html454"
251 251
   HREF="node77.html">qpsmtp</A>
252
-<LI><A NAME="tex2html443"
252
+<LI><A NAME="tex2html455"
253 253
   HREF="node78.html">qscanq</A>
254
-<LI><A NAME="tex2html444"
254
+<LI><A NAME="tex2html456"
255 255
   HREF="node79.html">qSheff</A>
256
-<LI><A NAME="tex2html445"
256
+<LI><A NAME="tex2html457"
257 257
   HREF="node80.html">RevolSys SMTP kit for Postfix</A>
258
-<LI><A NAME="tex2html446"
258
+<LI><A NAME="tex2html458"
259 259
   HREF="node81.html">Sagator</A>
260
-<LI><A NAME="tex2html447"
260
+<LI><A NAME="tex2html459"
261 261
   HREF="node82.html">Scrubber</A>
262
-<LI><A NAME="tex2html448"
262
+<LI><A NAME="tex2html460"
263 263
   HREF="node83.html">Secure Mail Intelligence!</A>
264
-<LI><A NAME="tex2html449"
264
+<LI><A NAME="tex2html461"
265 265
   HREF="node84.html">simscan</A>
266
-<LI><A NAME="tex2html450"
266
+<LI><A NAME="tex2html462"
267 267
   HREF="node85.html">SmarterMail Filter</A>
268
-<LI><A NAME="tex2html451"
268
+<LI><A NAME="tex2html463"
269 269
   HREF="node86.html">smf-clamd</A>
270
-<LI><A NAME="tex2html452"
270
+<LI><A NAME="tex2html464"
271 271
   HREF="node87.html">smtpfilter</A>
272
-<LI><A NAME="tex2html453"
272
+<LI><A NAME="tex2html465"
273 273
   HREF="node88.html">smtp-gated</A>
274
-<LI><A NAME="tex2html454"
274
+<LI><A NAME="tex2html466"
275 275
   HREF="node89.html">smtp-vilter</A>
276
-<LI><A NAME="tex2html455"
276
+<LI><A NAME="tex2html467"
277 277
   HREF="node90.html">Zabit</A>
278
-<LI><A NAME="tex2html456"
278
+<LI><A NAME="tex2html468"
279 279
   HREF="node91.html">zmscanner</A>
280 280
 </UL>
281
-<LI><A NAME="tex2html457"
281
+<LI><A NAME="tex2html469"
282 282
   HREF="node92.html"><I>MTA + POP3 Proxy + ClamAV</I></A>
283 283
 <UL>
284
-<LI><A NAME="tex2html458"
284
+<LI><A NAME="tex2html470"
285 285
   HREF="node93.html">ClamMail</A>
286
-<LI><A NAME="tex2html459"
286
+<LI><A NAME="tex2html471"
287 287
   HREF="node94.html">POP3 Virus Scanner Daemon</A>
288
-<LI><A NAME="tex2html460"
288
+<LI><A NAME="tex2html472"
289 289
   HREF="node95.html">pop3.proxy</A>
290 290
 </UL>
291
-<LI><A NAME="tex2html461"
291
+<LI><A NAME="tex2html473"
292 292
   HREF="node96.html"><I>Web/FTP Proxy + ClamAV</I></A>
293 293
 <UL>
294
-<LI><A NAME="tex2html462"
294
+<LI><A NAME="tex2html474"
295 295
   HREF="node97.html">DansGuardian Anti-Virus Patch</A>
296
-<LI><A NAME="tex2html463"
296
+<LI><A NAME="tex2html475"
297 297
   HREF="node98.html">Frox</A>
298
-<LI><A NAME="tex2html464"
298
+<LI><A NAME="tex2html476"
299 299
   HREF="node99.html">HTTP Anti Virus Proxy</A>
300
-<LI><A NAME="tex2html465"
300
+<LI><A NAME="tex2html477"
301 301
   HREF="node100.html">mod_clamav</A>
302
-<LI><A NAME="tex2html466"
302
+<LI><A NAME="tex2html478"
303 303
   HREF="node101.html">ClamAV module for ProFTPD</A>
304
-<LI><A NAME="tex2html467"
304
+<LI><A NAME="tex2html479"
305 305
   HREF="node102.html">SafeSquid</A>
306
-<LI><A NAME="tex2html468"
306
+<LI><A NAME="tex2html480"
307 307
   HREF="node103.html">SquidClamAV Redirector</A>
308
-<LI><A NAME="tex2html469"
308
+<LI><A NAME="tex2html481"
309 309
   HREF="node104.html">Squidclam</A>
310
-<LI><A NAME="tex2html470"
310
+<LI><A NAME="tex2html482"
311 311
   HREF="node105.html">Viralator</A>
312 312
 </UL>
313
-<LI><A NAME="tex2html471"
313
+<LI><A NAME="tex2html483"
314 314
   HREF="node106.html"><I>Filesystem + ClamAV</I></A>
315 315
 <UL>
316
-<LI><A NAME="tex2html472"
316
+<LI><A NAME="tex2html484"
317 317
   HREF="node107.html">Dazuko</A>
318
-<LI><A NAME="tex2html473"
318
+<LI><A NAME="tex2html485"
319 319
   HREF="node108.html">Famuko</A>
320
-<LI><A NAME="tex2html474"
320
+<LI><A NAME="tex2html486"
321 321
   HREF="node109.html">OpenAntiVirus samba-vscan</A>
322 322
 </UL>
323
-<LI><A NAME="tex2html475"
323
+<LI><A NAME="tex2html487"
324 324
   HREF="node110.html"><I>Mail User Agent + ClamAV</I></A>
325 325
 <UL>
326
-<LI><A NAME="tex2html476"
326
+<LI><A NAME="tex2html488"
327 327
   HREF="node111.html">clamailfilter</A>
328
-<LI><A NAME="tex2html477"
328
+<LI><A NAME="tex2html489"
329 329
   HREF="node112.html">ClamAssassin</A>
330
-<LI><A NAME="tex2html478"
330
+<LI><A NAME="tex2html490"
331 331
   HREF="node113.html">clamscan-procfilter</A>
332
-<LI><A NAME="tex2html479"
332
+<LI><A NAME="tex2html491"
333 333
   HREF="node114.html">KMail</A>
334
-<LI><A NAME="tex2html480"
334
+<LI><A NAME="tex2html492"
335 335
   HREF="node115.html">MyClamMailFilter</A>
336
-<LI><A NAME="tex2html481"
336
+<LI><A NAME="tex2html493"
337 337
   HREF="node116.html">OpenWebMail</A>
338
-<LI><A NAME="tex2html482"
338
+<LI><A NAME="tex2html494"
339 339
   HREF="node117.html">QClam</A>
340
-<LI><A NAME="tex2html483"
340
+<LI><A NAME="tex2html495"
341 341
   HREF="node118.html">QMVC - Qmail Mail and Virus Control</A>
342
-<LI><A NAME="tex2html484"
342
+<LI><A NAME="tex2html496"
343 343
   HREF="node119.html">Sylpheed-Claws</A>
344
-<LI><A NAME="tex2html485"
344
+<LI><A NAME="tex2html497"
345 345
   HREF="node120.html">SoftlabsAV</A>
346 346
 </UL>
347
-<LI><A NAME="tex2html486"
347
+<LI><A NAME="tex2html498"
348 348
   HREF="node121.html"><I>Graphical User Interface + ClamAV</I></A>
349 349
 <UL>
350
-<LI><A NAME="tex2html487"
350
+<LI><A NAME="tex2html499"
351 351
   HREF="node122.html">AVScan</A>
352
-<LI><A NAME="tex2html488"
352
+<LI><A NAME="tex2html500"
353 353
   HREF="node123.html">BeClam</A>
354
-<LI><A NAME="tex2html489"
354
+<LI><A NAME="tex2html501"
355 355
   HREF="node124.html">Clamaktion</A>
356
-<LI><A NAME="tex2html490"
356
+<LI><A NAME="tex2html502"
357 357
   HREF="node125.html">ClamShell</A>
358
-<LI><A NAME="tex2html491"
358
+<LI><A NAME="tex2html503"
359 359
   HREF="node126.html">ClamTk</A>
360
-<LI><A NAME="tex2html492"
360
+<LI><A NAME="tex2html504"
361 361
   HREF="node127.html">clamXav</A>
362
-<LI><A NAME="tex2html493"
362
+<LI><A NAME="tex2html505"
363 363
   HREF="node128.html">ClamWin</A>
364
-<LI><A NAME="tex2html494"
364
+<LI><A NAME="tex2html506"
365 365
   HREF="node129.html">FETCAV</A>
366
-<LI><A NAME="tex2html495"
366
+<LI><A NAME="tex2html507"
367 367
   HREF="node130.html">KlamAV</A>
368
-<LI><A NAME="tex2html496"
368
+<LI><A NAME="tex2html508"
369 369
   HREF="node131.html">QtClamAVclient</A>
370
-<LI><A NAME="tex2html497"
370
+<LI><A NAME="tex2html509"
371 371
   HREF="node132.html">wbmclamav</A>
372 372
 </UL>
373
-<LI><A NAME="tex2html498"
373
+<LI><A NAME="tex2html510"
374 374
   HREF="node133.html"><I>Library + ClamAV</I></A>
375 375
 <UL>
376
-<LI><A NAME="tex2html499"
376
+<LI><A NAME="tex2html511"
377 377
   HREF="node134.html">ClamAV-Sharp</A>
378
-<LI><A NAME="tex2html500"
378
+<LI><A NAME="tex2html512"
379 379
   HREF="node135.html">ClamAVPlugin</A>
380
-<LI><A NAME="tex2html501"
380
+<LI><A NAME="tex2html513"
381 381
   HREF="node136.html">clamavr</A>
382
-<LI><A NAME="tex2html502"
382
+<LI><A NAME="tex2html514"
383 383
   HREF="node137.html">D bindings for ClamAV</A>
384
-<LI><A NAME="tex2html503"
384
+<LI><A NAME="tex2html515"
385 385
   HREF="node138.html">File::Scan::ClamAV</A>
386
-<LI><A NAME="tex2html504"
386
+<LI><A NAME="tex2html516"
387 387
   HREF="node139.html">Mail::ClamAV</A>
388
-<LI><A NAME="tex2html505"
388
+<LI><A NAME="tex2html517"
389 389
   HREF="node140.html">PHP ClamAV Lib</A>
390
-<LI><A NAME="tex2html506"
390
+<LI><A NAME="tex2html518"
391 391
   HREF="node141.html">pyclamav</A>
392
-<LI><A NAME="tex2html507"
392
+<LI><A NAME="tex2html519"
393 393
   HREF="node142.html">WRAVLib</A>
394 394
 </UL>
395
-<LI><A NAME="tex2html508"
395
+<LI><A NAME="tex2html520"
396 396
   HREF="node143.html"><I>Miscellaneous + ClamAV</I></A>
397 397
 <UL>
398
-<LI><A NAME="tex2html509"
398
+<LI><A NAME="tex2html521"
399 399
   HREF="node144.html">INSERT</A>
400
-<LI><A NAME="tex2html510"
400
+<LI><A NAME="tex2html522"
401 401
   HREF="node145.html">Local Area Security</A>
402
-<LI><A NAME="tex2html511"
402
+<LI><A NAME="tex2html523"
403 403
   HREF="node146.html">mailgraph</A>
404
-<LI><A NAME="tex2html512"
404
+<LI><A NAME="tex2html524"
405 405
   HREF="node147.html">mailman-clamav</A>
406
-<LI><A NAME="tex2html513"
406
+<LI><A NAME="tex2html525"
407 407
   HREF="node148.html">Moodle</A>
408
-<LI><A NAME="tex2html514"
408
+<LI><A NAME="tex2html526"
409 409
   HREF="node149.html">nclamd</A>
410
-<LI><A NAME="tex2html515"
410
+<LI><A NAME="tex2html527"
411 411
   HREF="node150.html">qmailmrtg7</A>
412
-<LI><A NAME="tex2html516"
412
+<LI><A NAME="tex2html528"
413 413
   HREF="node151.html">redWall Firewall</A>
414
-<LI><A NAME="tex2html517"
414
+<LI><A NAME="tex2html529"
415 415
   HREF="node152.html">Scan Log Analyzer</A>
416
-<LI><A NAME="tex2html518"
416
+<LI><A NAME="tex2html530"
417 417
   HREF="node153.html">snort-inline</A>
418
-<LI><A NAME="tex2html519"
418
+<LI><A NAME="tex2html531"
419 419
   HREF="node154.html">Snort-ClamAV</A>
420 420
 </UL>
421 421
 </UL>
422
-<LI><A NAME="tex2html520"
422
+<LI><A NAME="tex2html532"
423 423
   HREF="node155.html">Credits</A>
424 424
 <UL>
425
-<LI><A NAME="tex2html521"
425
+<LI><A NAME="tex2html533"
426 426
   HREF="node156.html">Database mirrors</A>
427
-<LI><A NAME="tex2html522"
427
+<LI><A NAME="tex2html534"
428 428
   HREF="node157.html">Contributors</A>
429
-<LI><A NAME="tex2html523"
429
+<LI><A NAME="tex2html535"
430 430
   HREF="node158.html">Donors</A>
431
-<LI><A NAME="tex2html524"
431
+<LI><A NAME="tex2html536"
432 432
   HREF="node159.html">Graphics</A>
433
-<LI><A NAME="tex2html525"
433
+<LI><A NAME="tex2html537"
434 434
   HREF="node160.html">OpenAntiVirus</A>
435 435
 </UL>
436
-<LI><A NAME="tex2html526"
436
+<LI><A NAME="tex2html538"
437 437
   HREF="node161.html">Authors</A>
438
-<LI><A NAME="tex2html527"
438
+<LI><A NAME="tex2html539"
439 439
   HREF="node162.html">About this document ...</A>
440 440
 </UL>
441 441
 <!--End of Table of Child-Links-->
442 442
 <BR><HR>
443 443
 <ADDRESS>
444 444
 Tomasz Kojm
445
-2006-07-01
445
+2006-10-15
446 446
 </ADDRESS>
447 447
 </BODY>
448 448
 </HTML>
... ...
@@ -27,21 +27,21 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html536"
30
+<A NAME="tex2html548"
31 31
   HREF="node2.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html534"
33
+<A NAME="tex2html546"
34 34
   HREF="clamdoc.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html528"
36
+<A NAME="tex2html540"
37 37
   HREF="clamdoc.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A>   
39 39
 <BR>
40
-<B> Next:</B> <A NAME="tex2html537"
40
+<B> Next:</B> <A NAME="tex2html549"
41 41
   HREF="node2.html">Introduction</A>
42
-<B> Up:</B> <A NAME="tex2html535"
42
+<B> Up:</B> <A NAME="tex2html547"
43 43
   HREF="clamdoc.html">clamdoc</A>
44
-<B> Previous:</B> <A NAME="tex2html529"
44
+<B> Previous:</B> <A NAME="tex2html541"
45 45
   HREF="clamdoc.html">clamdoc</A>
46 46
 <BR>
47 47
 <BR>
... ...
@@ -54,119 +54,119 @@ Contents</A>
54 54
 <!--Table of Contents-->
55 55
 
56 56
 <UL>
57
-<LI><A NAME="tex2html538"
57
+<LI><A NAME="tex2html550"
58 58
   HREF="node2.html">Introduction</A>
59 59
 <UL>
60
-<LI><A NAME="tex2html539"
60
+<LI><A NAME="tex2html551"
61 61
   HREF="node3.html">Features</A>
62
-<LI><A NAME="tex2html540"
62
+<LI><A NAME="tex2html552"
63 63
   HREF="node4.html">Mailing lists</A>
64
-<LI><A NAME="tex2html541"
64
+<LI><A NAME="tex2html553"
65 65
   HREF="node5.html">Virus submitting</A>
66 66
 </UL>
67
-<LI><A NAME="tex2html542"
67
+<LI><A NAME="tex2html554"
68 68
   HREF="node6.html">Base package</A>
69 69
 <UL>
70
-<LI><A NAME="tex2html543"
70
+<LI><A NAME="tex2html555"
71 71
   HREF="node7.html">Supported platforms</A>
72
-<LI><A NAME="tex2html544"
72
+<LI><A NAME="tex2html556"
73 73
   HREF="node8.html">Binary packages</A>
74
-<LI><A NAME="tex2html545"
74
+<LI><A NAME="tex2html557"
75 75
   HREF="node9.html">Daily built snapshots</A>
76 76
 </UL>
77
-<LI><A NAME="tex2html546"
77
+<LI><A NAME="tex2html558"
78 78
   HREF="node10.html">Installation</A>
79 79
 <UL>
80
-<LI><A NAME="tex2html547"
80
+<LI><A NAME="tex2html559"
81 81
   HREF="node11.html">Requirements</A>
82
-<LI><A NAME="tex2html548"
82
+<LI><A NAME="tex2html560"
83 83
   HREF="node12.html">Installing on a shell account</A>
84
-<LI><A NAME="tex2html549"
84
+<LI><A NAME="tex2html561"
85 85
   HREF="node13.html">Adding new system user and group</A>
86
-<LI><A NAME="tex2html550"
86
+<LI><A NAME="tex2html562"
87 87
   HREF="node14.html">Compilation of base package</A>
88
-<LI><A NAME="tex2html551"
88
+<LI><A NAME="tex2html563"
89 89
   HREF="node15.html">Compilation with clamav-milter enabled</A>
90 90
 </UL>
91
-<LI><A NAME="tex2html552"
91
+<LI><A NAME="tex2html564"
92 92
   HREF="node16.html">Configuration</A>
93 93
 <UL>
94
-<LI><A NAME="tex2html553"
94
+<LI><A NAME="tex2html565"
95 95
   HREF="node17.html">clamd</A>
96
-<LI><A NAME="tex2html554"
96
+<LI><A NAME="tex2html566"
97 97
   HREF="node19.html">clamav-milter</A>
98
-<LI><A NAME="tex2html555"
98
+<LI><A NAME="tex2html567"
99 99
   HREF="node20.html">Testing</A>
100
-<LI><A NAME="tex2html556"
100
+<LI><A NAME="tex2html568"
101 101
   HREF="node21.html">Setting up auto-updating</A>
102
-<LI><A NAME="tex2html557"
102
+<LI><A NAME="tex2html569"
103 103
   HREF="node22.html">Closest mirrors</A>
104 104
 </UL>
105
-<LI><A NAME="tex2html558"
105
+<LI><A NAME="tex2html570"
106 106
   HREF="node23.html">Usage</A>
107 107
 <UL>
108
-<LI><A NAME="tex2html559"
108
+<LI><A NAME="tex2html571"
109 109
   HREF="node24.html">Clam daemon</A>
110
-<LI><A NAME="tex2html560"
110
+<LI><A NAME="tex2html572"
111 111
   HREF="node25.html">Clam<B>d</B>scan</A>
112
-<LI><A NAME="tex2html561"
112
+<LI><A NAME="tex2html573"
113 113
   HREF="node26.html">Clamuko</A>
114
-<LI><A NAME="tex2html562"
114
+<LI><A NAME="tex2html574"
115 115
   HREF="node27.html">Output format</A>
116 116
 </UL>
117
-<LI><A NAME="tex2html563"
117
+<LI><A NAME="tex2html575"
118 118
   HREF="node30.html">LibClamAV</A>
119 119
 <UL>
120
-<LI><A NAME="tex2html564"
120
+<LI><A NAME="tex2html576"
121 121
   HREF="node31.html">Licence</A>
122
-<LI><A NAME="tex2html565"
122
+<LI><A NAME="tex2html577"
123 123
   HREF="node32.html">Features</A>
124
-<LI><A NAME="tex2html566"
124
+<LI><A NAME="tex2html578"
125 125
   HREF="node35.html">API</A>
126
-<LI><A NAME="tex2html567"
126
+<LI><A NAME="tex2html579"
127 127
   HREF="node40.html">Database reloading</A>
128
-<LI><A NAME="tex2html568"
128
+<LI><A NAME="tex2html580"
129 129
   HREF="node45.html">CVD format</A>
130 130
 </UL>
131
-<LI><A NAME="tex2html569"
131
+<LI><A NAME="tex2html581"
132 132
   HREF="node46.html">Frequently Asked Questions</A>
133
-<LI><A NAME="tex2html570"
133
+<LI><A NAME="tex2html582"
134 134
   HREF="node47.html">Third party software</A>
135 135
 <UL>
136
-<LI><A NAME="tex2html571"
136
+<LI><A NAME="tex2html583"
137 137
   HREF="node48.html"><I>MTA + ClamAV</I></A>
138
-<LI><A NAME="tex2html572"
138
+<LI><A NAME="tex2html584"
139 139
   HREF="node92.html"><I>MTA + POP3 Proxy + ClamAV</I></A>
140
-<LI><A NAME="tex2html573"
140
+<LI><A NAME="tex2html585"
141 141
   HREF="node96.html"><I>Web/FTP Proxy + ClamAV</I></A>
142
-<LI><A NAME="tex2html574"
142
+<LI><A NAME="tex2html586"
143 143
   HREF="node106.html"><I>Filesystem + ClamAV</I></A>
144
-<LI><A NAME="tex2html575"
144
+<LI><A NAME="tex2html587"
145 145
   HREF="node110.html"><I>Mail User Agent + ClamAV</I></A>
146
-<LI><A NAME="tex2html576"
146
+<LI><A NAME="tex2html588"
147 147
   HREF="node121.html"><I>Graphical User Interface + ClamAV</I></A>
148
-<LI><A NAME="tex2html577"
148
+<LI><A NAME="tex2html589"
149 149
   HREF="node133.html"><I>Library + ClamAV</I></A>
150
-<LI><A NAME="tex2html578"
150
+<LI><A NAME="tex2html590"
151 151
   HREF="node143.html"><I>Miscellaneous + ClamAV</I></A>
152 152
 </UL>
153
-<LI><A NAME="tex2html579"
153
+<LI><A NAME="tex2html591"
154 154
   HREF="node155.html">Credits</A>
155 155
 <UL>
156
-<LI><A NAME="tex2html580"
156
+<LI><A NAME="tex2html592"
157 157
   HREF="node156.html">Database mirrors</A>
158
-<LI><A NAME="tex2html581"
158
+<LI><A NAME="tex2html593"
159 159
   HREF="node157.html">Contributors</A>
160
-<LI><A NAME="tex2html582"
160
+<LI><A NAME="tex2html594"
161 161
   HREF="node158.html">Donors</A>
162
-<LI><A NAME="tex2html583"
162
+<LI><A NAME="tex2html595"
163 163
   HREF="node159.html">Graphics</A>
164
-<LI><A NAME="tex2html584"
164
+<LI><A NAME="tex2html596"
165 165
   HREF="node160.html">OpenAntiVirus</A>
166 166
 </UL>
167
-<LI><A NAME="tex2html585"
167
+<LI><A NAME="tex2html597"
168 168
   HREF="node161.html">Authors</A>
169
-<LI><A NAME="tex2html586"
169
+<LI><A NAME="tex2html598"
170 170
   HREF="node162.html">About this document ...</A>
171 171
 </UL>
172 172
 <!--End of Table of Contents-->    <BR>
... ...
@@ -230,7 +230,7 @@ MA 02110-1301, USA.
230 230
 <BR><HR>
231 231
 <ADDRESS>
232 232
 Tomasz Kojm
233
-2006-07-01
233
+2006-10-15
234 234
 </ADDRESS>
235 235
 </BODY>
236 236
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html695"
30
+<A NAME="tex2html707"
31 31
   HREF="node11.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html691"
33
+<A NAME="tex2html703"
34 34
   HREF="clamdoc.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html685"
36
+<A NAME="tex2html697"
37 37
   HREF="node9.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html693"
39
+<A NAME="tex2html705"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html696"
43
+<B> Next:</B> <A NAME="tex2html708"
44 44
   HREF="node11.html">Requirements</A>
45
-<B> Up:</B> <A NAME="tex2html692"
45
+<B> Up:</B> <A NAME="tex2html704"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html686"
47
+<B> Previous:</B> <A NAME="tex2html698"
48 48
   HREF="node9.html">Daily built snapshots</A>
49
- &nbsp <B>  <A NAME="tex2html694"
49
+ &nbsp <B>  <A NAME="tex2html706"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,22 +62,22 @@ Installation</A>
62 62
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
63 63
 
64 64
 <UL>
65
-<LI><A NAME="tex2html697"
65
+<LI><A NAME="tex2html709"
66 66
   HREF="node11.html">Requirements</A>
67
-<LI><A NAME="tex2html698"
67
+<LI><A NAME="tex2html710"
68 68
   HREF="node12.html">Installing on a shell account</A>
69
-<LI><A NAME="tex2html699"
69
+<LI><A NAME="tex2html711"
70 70
   HREF="node13.html">Adding new system user and group</A>
71
-<LI><A NAME="tex2html700"
71
+<LI><A NAME="tex2html712"
72 72
   HREF="node14.html">Compilation of base package</A>
73
-<LI><A NAME="tex2html701"
73
+<LI><A NAME="tex2html713"
74 74
   HREF="node15.html">Compilation with clamav-milter enabled</A>
75 75
 </UL>
76 76
 <!--End of Table of Child-Links-->
77 77
 <BR><HR>
78 78
 <ADDRESS>
79 79
 Tomasz Kojm
80
-2006-07-01
80
+2006-10-15
81 81
 </ADDRESS>
82 82
 </BODY>
83 83
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1960"
30
+<A NAME="tex2html1972"
31 31
   HREF="node101.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1956"
33
+<A NAME="tex2html1968"
34 34
   HREF="node96.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1950"
36
+<A NAME="tex2html1962"
37 37
   HREF="node99.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1958"
39
+<A NAME="tex2html1970"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1961"
43
+<B> Next:</B> <A NAME="tex2html1973"
44 44
   HREF="node101.html">ClamAV module for ProFTPD</A>
45
-<B> Up:</B> <A NAME="tex2html1957"
45
+<B> Up:</B> <A NAME="tex2html1969"
46 46
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1951"
47
+<B> Previous:</B> <A NAME="tex2html1963"
48 48
   HREF="node99.html">HTTP Anti Virus Proxy</A>
49
- &nbsp <B>  <A NAME="tex2html1959"
49
+ &nbsp <B>  <A NAME="tex2html1971"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1972"
30
+<A NAME="tex2html1984"
31 31
   HREF="node102.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1968"
33
+<A NAME="tex2html1980"
34 34
   HREF="node96.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1962"
36
+<A NAME="tex2html1974"
37 37
   HREF="node100.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1970"
39
+<A NAME="tex2html1982"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1973"
43
+<B> Next:</B> <A NAME="tex2html1985"
44 44
   HREF="node102.html">SafeSquid</A>
45
-<B> Up:</B> <A NAME="tex2html1969"
45
+<B> Up:</B> <A NAME="tex2html1981"
46 46
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1963"
47
+<B> Previous:</B> <A NAME="tex2html1975"
48 48
   HREF="node100.html">mod_clamav</A>
49
- &nbsp <B>  <A NAME="tex2html1971"
49
+ &nbsp <B>  <A NAME="tex2html1983"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -68,7 +68,7 @@ This is an add on module for ProFTPD that enables the FTP server to scan
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1984"
30
+<A NAME="tex2html1996"
31 31
   HREF="node103.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1980"
33
+<A NAME="tex2html1992"
34 34
   HREF="node96.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1974"
36
+<A NAME="tex2html1986"
37 37
   HREF="node101.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1982"
39
+<A NAME="tex2html1994"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1985"
43
+<B> Next:</B> <A NAME="tex2html1997"
44 44
   HREF="node103.html">SquidClamAV Redirector</A>
45
-<B> Up:</B> <A NAME="tex2html1981"
45
+<B> Up:</B> <A NAME="tex2html1993"
46 46
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1975"
47
+<B> Previous:</B> <A NAME="tex2html1987"
48 48
   HREF="node101.html">ClamAV module for ProFTPD</A>
49
- &nbsp <B>  <A NAME="tex2html1983"
49
+ &nbsp <B>  <A NAME="tex2html1995"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
78
+2006-10-15
79 79
 </ADDRESS>
80 80
 </BODY>
81 81
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1996"
30
+<A NAME="tex2html2008"
31 31
   HREF="node104.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1992"
33
+<A NAME="tex2html2004"
34 34
   HREF="node96.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1986"
36
+<A NAME="tex2html1998"
37 37
   HREF="node102.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1994"
39
+<A NAME="tex2html2006"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1997"
43
+<B> Next:</B> <A NAME="tex2html2009"
44 44
   HREF="node104.html">Squidclam</A>
45
-<B> Up:</B> <A NAME="tex2html1993"
45
+<B> Up:</B> <A NAME="tex2html2005"
46 46
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1987"
47
+<B> Previous:</B> <A NAME="tex2html1999"
48 48
   HREF="node102.html">SafeSquid</A>
49
- &nbsp <B>  <A NAME="tex2html1995"
49
+ &nbsp <B>  <A NAME="tex2html2007"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
73
+2006-10-15
74 74
 </ADDRESS>
75 75
 </BODY>
76 76
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2008"
30
+<A NAME="tex2html2020"
31 31
   HREF="node105.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2004"
33
+<A NAME="tex2html2016"
34 34
   HREF="node96.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1998"
36
+<A NAME="tex2html2010"
37 37
   HREF="node103.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2006"
39
+<A NAME="tex2html2018"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2009"
43
+<B> Next:</B> <A NAME="tex2html2021"
44 44
   HREF="node105.html">Viralator</A>
45
-<B> Up:</B> <A NAME="tex2html2005"
45
+<B> Up:</B> <A NAME="tex2html2017"
46 46
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1999"
47
+<B> Previous:</B> <A NAME="tex2html2011"
48 48
   HREF="node103.html">SquidClamAV Redirector</A>
49
- &nbsp <B>  <A NAME="tex2html2007"
49
+ &nbsp <B>  <A NAME="tex2html2019"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html2018"
29
+<A NAME="tex2html2030"
30 30
   HREF="node106.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html2014"
32
+<A NAME="tex2html2026"
33 33
   HREF="node96.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html2010"
35
+<A NAME="tex2html2022"
36 36
   HREF="node104.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html2016"
38
+<A NAME="tex2html2028"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html2019"
42
+<B> Next:</B> <A NAME="tex2html2031"
43 43
   HREF="node106.html">Filesystem + ClamAV</A>
44
-<B> Up:</B> <A NAME="tex2html2015"
44
+<B> Up:</B> <A NAME="tex2html2027"
45 45
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html2011"
46
+<B> Previous:</B> <A NAME="tex2html2023"
47 47
   HREF="node104.html">Squidclam</A>
48
- &nbsp <B>  <A NAME="tex2html2017"
48
+ &nbsp <B>  <A NAME="tex2html2029"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -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
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2030"
30
+<A NAME="tex2html2042"
31 31
   HREF="node107.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2026"
33
+<A NAME="tex2html2038"
34 34
   HREF="node47.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2020"
36
+<A NAME="tex2html2032"
37 37
   HREF="node105.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2028"
39
+<A NAME="tex2html2040"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2031"
43
+<B> Next:</B> <A NAME="tex2html2043"
44 44
   HREF="node107.html">Dazuko</A>
45
-<B> Up:</B> <A NAME="tex2html2027"
45
+<B> Up:</B> <A NAME="tex2html2039"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html2021"
47
+<B> Previous:</B> <A NAME="tex2html2033"
48 48
   HREF="node105.html">Viralator</A>
49
- &nbsp <B>  <A NAME="tex2html2029"
49
+ &nbsp <B>  <A NAME="tex2html2041"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,18 +62,18 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
62 62
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
63 63
 
64 64
 <UL>
65
-<LI><A NAME="tex2html2032"
65
+<LI><A NAME="tex2html2044"
66 66
   HREF="node107.html">Dazuko</A>
67
-<LI><A NAME="tex2html2033"
67
+<LI><A NAME="tex2html2045"
68 68
   HREF="node108.html">Famuko</A>
69
-<LI><A NAME="tex2html2034"
69
+<LI><A NAME="tex2html2046"
70 70
   HREF="node109.html">OpenAntiVirus samba-vscan</A>
71 71
 </UL>
72 72
 <!--End of Table of Child-Links-->
73 73
 <BR><HR>
74 74
 <ADDRESS>
75 75
 Tomasz Kojm
76
-2006-07-01
76
+2006-10-15
77 77
 </ADDRESS>
78 78
 </BODY>
79 79
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2045"
30
+<A NAME="tex2html2057"
31 31
   HREF="node108.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2041"
33
+<A NAME="tex2html2053"
34 34
   HREF="node106.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2035"
36
+<A NAME="tex2html2047"
37 37
   HREF="node106.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2043"
39
+<A NAME="tex2html2055"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2046"
43
+<B> Next:</B> <A NAME="tex2html2058"
44 44
   HREF="node108.html">Famuko</A>
45
-<B> Up:</B> <A NAME="tex2html2042"
45
+<B> Up:</B> <A NAME="tex2html2054"
46 46
   HREF="node106.html">Filesystem + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2036"
47
+<B> Previous:</B> <A NAME="tex2html2048"
48 48
   HREF="node106.html">Filesystem + ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2044"
49
+ &nbsp <B>  <A NAME="tex2html2056"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
76
+2006-10-15
77 77
 </ADDRESS>
78 78
 </BODY>
79 79
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2057"
30
+<A NAME="tex2html2069"
31 31
   HREF="node109.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2053"
33
+<A NAME="tex2html2065"
34 34
   HREF="node106.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2047"
36
+<A NAME="tex2html2059"
37 37
   HREF="node107.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2055"
39
+<A NAME="tex2html2067"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2058"
43
+<B> Next:</B> <A NAME="tex2html2070"
44 44
   HREF="node109.html">OpenAntiVirus samba-vscan</A>
45
-<B> Up:</B> <A NAME="tex2html2054"
45
+<B> Up:</B> <A NAME="tex2html2066"
46 46
   HREF="node106.html">Filesystem + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2048"
47
+<B> Previous:</B> <A NAME="tex2html2060"
48 48
   HREF="node107.html">Dazuko</A>
49
- &nbsp <B>  <A NAME="tex2html2056"
49
+ &nbsp <B>  <A NAME="tex2html2068"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html2067"
29
+<A NAME="tex2html2079"
30 30
   HREF="node110.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html2063"
32
+<A NAME="tex2html2075"
33 33
   HREF="node106.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html2059"
35
+<A NAME="tex2html2071"
36 36
   HREF="node108.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html2065"
38
+<A NAME="tex2html2077"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html2068"
42
+<B> Next:</B> <A NAME="tex2html2080"
43 43
   HREF="node110.html">Mail User Agent +</A>
44
-<B> Up:</B> <A NAME="tex2html2064"
44
+<B> Up:</B> <A NAME="tex2html2076"
45 45
   HREF="node106.html">Filesystem + ClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html2060"
46
+<B> Previous:</B> <A NAME="tex2html2072"
47 47
   HREF="node108.html">Famuko</A>
48
- &nbsp <B>  <A NAME="tex2html2066"
48
+ &nbsp <B>  <A NAME="tex2html2078"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html712"
30
+<A NAME="tex2html724"
31 31
   HREF="node12.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html708"
33
+<A NAME="tex2html720"
34 34
   HREF="node10.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html702"
36
+<A NAME="tex2html714"
37 37
   HREF="node10.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html710"
39
+<A NAME="tex2html722"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html713"
43
+<B> Next:</B> <A NAME="tex2html725"
44 44
   HREF="node12.html">Installing on a shell</A>
45
-<B> Up:</B> <A NAME="tex2html709"
45
+<B> Up:</B> <A NAME="tex2html721"
46 46
   HREF="node10.html">Installation</A>
47
-<B> Previous:</B> <A NAME="tex2html703"
47
+<B> Previous:</B> <A NAME="tex2html715"
48 48
   HREF="node10.html">Installation</A>
49
- &nbsp <B>  <A NAME="tex2html711"
49
+ &nbsp <B>  <A NAME="tex2html723"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
92
+2006-10-15
93 93
 </ADDRESS>
94 94
 </BODY>
95 95
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2079"
30
+<A NAME="tex2html2091"
31 31
   HREF="node111.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2075"
33
+<A NAME="tex2html2087"
34 34
   HREF="node47.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2069"
36
+<A NAME="tex2html2081"
37 37
   HREF="node109.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2077"
39
+<A NAME="tex2html2089"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2080"
43
+<B> Next:</B> <A NAME="tex2html2092"
44 44
   HREF="node111.html">clamailfilter</A>
45
-<B> Up:</B> <A NAME="tex2html2076"
45
+<B> Up:</B> <A NAME="tex2html2088"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html2070"
47
+<B> Previous:</B> <A NAME="tex2html2082"
48 48
   HREF="node109.html">OpenAntiVirus samba-vscan</A>
49
- &nbsp <B>  <A NAME="tex2html2078"
49
+ &nbsp <B>  <A NAME="tex2html2090"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,32 +62,32 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
62 62
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
63 63
 
64 64
 <UL>
65
-<LI><A NAME="tex2html2081"
65
+<LI><A NAME="tex2html2093"
66 66
   HREF="node111.html">clamailfilter</A>
67
-<LI><A NAME="tex2html2082"
67
+<LI><A NAME="tex2html2094"
68 68
   HREF="node112.html">ClamAssassin</A>
69
-<LI><A NAME="tex2html2083"
69
+<LI><A NAME="tex2html2095"
70 70
   HREF="node113.html">clamscan-procfilter</A>
71
-<LI><A NAME="tex2html2084"
71
+<LI><A NAME="tex2html2096"
72 72
   HREF="node114.html">KMail</A>
73
-<LI><A NAME="tex2html2085"
73
+<LI><A NAME="tex2html2097"
74 74
   HREF="node115.html">MyClamMailFilter</A>
75
-<LI><A NAME="tex2html2086"
75
+<LI><A NAME="tex2html2098"
76 76
   HREF="node116.html">OpenWebMail</A>
77
-<LI><A NAME="tex2html2087"
77
+<LI><A NAME="tex2html2099"
78 78
   HREF="node117.html">QClam</A>
79
-<LI><A NAME="tex2html2088"
79
+<LI><A NAME="tex2html2100"
80 80
   HREF="node118.html">QMVC - Qmail Mail and Virus Control</A>
81
-<LI><A NAME="tex2html2089"
81
+<LI><A NAME="tex2html2101"
82 82
   HREF="node119.html">Sylpheed-Claws</A>
83
-<LI><A NAME="tex2html2090"
83
+<LI><A NAME="tex2html2102"
84 84
   HREF="node120.html">SoftlabsAV</A>
85 85
 </UL>
86 86
 <!--End of Table of Child-Links-->
87 87
 <BR><HR>
88 88
 <ADDRESS>
89 89
 Tomasz Kojm
90
-2006-07-01
90
+2006-10-15
91 91
 </ADDRESS>
92 92
 </BODY>
93 93
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2101"
30
+<A NAME="tex2html2113"
31 31
   HREF="node112.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2097"
33
+<A NAME="tex2html2109"
34 34
   HREF="node110.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2091"
36
+<A NAME="tex2html2103"
37 37
   HREF="node110.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2099"
39
+<A NAME="tex2html2111"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2102"
43
+<B> Next:</B> <A NAME="tex2html2114"
44 44
   HREF="node112.html">ClamAssassin</A>
45
-<B> Up:</B> <A NAME="tex2html2098"
45
+<B> Up:</B> <A NAME="tex2html2110"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2092"
47
+<B> Previous:</B> <A NAME="tex2html2104"
48 48
   HREF="node110.html">Mail User Agent +</A>
49
- &nbsp <B>  <A NAME="tex2html2100"
49
+ &nbsp <B>  <A NAME="tex2html2112"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2113"
30
+<A NAME="tex2html2125"
31 31
   HREF="node113.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2109"
33
+<A NAME="tex2html2121"
34 34
   HREF="node110.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2103"
36
+<A NAME="tex2html2115"
37 37
   HREF="node111.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2111"
39
+<A NAME="tex2html2123"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2114"
43
+<B> Next:</B> <A NAME="tex2html2126"
44 44
   HREF="node113.html">clamscan-procfilter</A>
45
-<B> Up:</B> <A NAME="tex2html2110"
45
+<B> Up:</B> <A NAME="tex2html2122"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2104"
47
+<B> Previous:</B> <A NAME="tex2html2116"
48 48
   HREF="node111.html">clamailfilter</A>
49
- &nbsp <B>  <A NAME="tex2html2112"
49
+ &nbsp <B>  <A NAME="tex2html2124"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2125"
30
+<A NAME="tex2html2137"
31 31
   HREF="node114.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2121"
33
+<A NAME="tex2html2133"
34 34
   HREF="node110.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2115"
36
+<A NAME="tex2html2127"
37 37
   HREF="node112.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2123"
39
+<A NAME="tex2html2135"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2126"
43
+<B> Next:</B> <A NAME="tex2html2138"
44 44
   HREF="node114.html">KMail</A>
45
-<B> Up:</B> <A NAME="tex2html2122"
45
+<B> Up:</B> <A NAME="tex2html2134"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2116"
47
+<B> Previous:</B> <A NAME="tex2html2128"
48 48
   HREF="node112.html">ClamAssassin</A>
49
- &nbsp <B>  <A NAME="tex2html2124"
49
+ &nbsp <B>  <A NAME="tex2html2136"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2137"
30
+<A NAME="tex2html2149"
31 31
   HREF="node115.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2133"
33
+<A NAME="tex2html2145"
34 34
   HREF="node110.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2127"
36
+<A NAME="tex2html2139"
37 37
   HREF="node113.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2135"
39
+<A NAME="tex2html2147"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2138"
43
+<B> Next:</B> <A NAME="tex2html2150"
44 44
   HREF="node115.html">MyClamMailFilter</A>
45
-<B> Up:</B> <A NAME="tex2html2134"
45
+<B> Up:</B> <A NAME="tex2html2146"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2128"
47
+<B> Previous:</B> <A NAME="tex2html2140"
48 48
   HREF="node113.html">clamscan-procfilter</A>
49
- &nbsp <B>  <A NAME="tex2html2136"
49
+ &nbsp <B>  <A NAME="tex2html2148"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2149"
30
+<A NAME="tex2html2161"
31 31
   HREF="node116.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2145"
33
+<A NAME="tex2html2157"
34 34
   HREF="node110.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2139"
36
+<A NAME="tex2html2151"
37 37
   HREF="node114.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2147"
39
+<A NAME="tex2html2159"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2150"
43
+<B> Next:</B> <A NAME="tex2html2162"
44 44
   HREF="node116.html">OpenWebMail</A>
45
-<B> Up:</B> <A NAME="tex2html2146"
45
+<B> Up:</B> <A NAME="tex2html2158"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2140"
47
+<B> Previous:</B> <A NAME="tex2html2152"
48 48
   HREF="node114.html">KMail</A>
49
- &nbsp <B>  <A NAME="tex2html2148"
49
+ &nbsp <B>  <A NAME="tex2html2160"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2161"
30
+<A NAME="tex2html2173"
31 31
   HREF="node117.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2157"
33
+<A NAME="tex2html2169"
34 34
   HREF="node110.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2151"
36
+<A NAME="tex2html2163"
37 37
   HREF="node115.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2159"
39
+<A NAME="tex2html2171"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2162"
43
+<B> Next:</B> <A NAME="tex2html2174"
44 44
   HREF="node117.html">QClam</A>
45
-<B> Up:</B> <A NAME="tex2html2158"
45
+<B> Up:</B> <A NAME="tex2html2170"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2152"
47
+<B> Previous:</B> <A NAME="tex2html2164"
48 48
   HREF="node115.html">MyClamMailFilter</A>
49
- &nbsp <B>  <A NAME="tex2html2160"
49
+ &nbsp <B>  <A NAME="tex2html2172"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2173"
30
+<A NAME="tex2html2185"
31 31
   HREF="node118.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2169"
33
+<A NAME="tex2html2181"
34 34
   HREF="node110.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2163"
36
+<A NAME="tex2html2175"
37 37
   HREF="node116.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2171"
39
+<A NAME="tex2html2183"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2174"
43
+<B> Next:</B> <A NAME="tex2html2186"
44 44
   HREF="node118.html">QMVC - Qmail Mail</A>
45
-<B> Up:</B> <A NAME="tex2html2170"
45
+<B> Up:</B> <A NAME="tex2html2182"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2164"
47
+<B> Previous:</B> <A NAME="tex2html2176"
48 48
   HREF="node116.html">OpenWebMail</A>
49
- &nbsp <B>  <A NAME="tex2html2172"
49
+ &nbsp <B>  <A NAME="tex2html2184"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
72
+2006-10-15
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2185"
30
+<A NAME="tex2html2197"
31 31
   HREF="node119.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2181"
33
+<A NAME="tex2html2193"
34 34
   HREF="node110.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2175"
36
+<A NAME="tex2html2187"
37 37
   HREF="node117.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2183"
39
+<A NAME="tex2html2195"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2186"
43
+<B> Next:</B> <A NAME="tex2html2198"
44 44
   HREF="node119.html">Sylpheed-Claws</A>
45
-<B> Up:</B> <A NAME="tex2html2182"
45
+<B> Up:</B> <A NAME="tex2html2194"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2176"
47
+<B> Previous:</B> <A NAME="tex2html2188"
48 48
   HREF="node117.html">QClam</A>
49
- &nbsp <B>  <A NAME="tex2html2184"
49
+ &nbsp <B>  <A NAME="tex2html2196"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2197"
30
+<A NAME="tex2html2209"
31 31
   HREF="node120.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2193"
33
+<A NAME="tex2html2205"
34 34
   HREF="node110.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2187"
36
+<A NAME="tex2html2199"
37 37
   HREF="node118.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2195"
39
+<A NAME="tex2html2207"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2198"
43
+<B> Next:</B> <A NAME="tex2html2210"
44 44
   HREF="node120.html">SoftlabsAV</A>
45
-<B> Up:</B> <A NAME="tex2html2194"
45
+<B> Up:</B> <A NAME="tex2html2206"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2188"
47
+<B> Previous:</B> <A NAME="tex2html2200"
48 48
   HREF="node118.html">QMVC - Qmail Mail</A>
49
- &nbsp <B>  <A NAME="tex2html2196"
49
+ &nbsp <B>  <A NAME="tex2html2208"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -68,7 +68,7 @@ Sylpheed-Claws is the extended branch of Sylpheed, a lightweight mail user
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html724"
30
+<A NAME="tex2html736"
31 31
   HREF="node13.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html720"
33
+<A NAME="tex2html732"
34 34
   HREF="node10.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html714"
36
+<A NAME="tex2html726"
37 37
   HREF="node11.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html722"
39
+<A NAME="tex2html734"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html725"
43
+<B> Next:</B> <A NAME="tex2html737"
44 44
   HREF="node13.html">Adding new system user</A>
45
-<B> Up:</B> <A NAME="tex2html721"
45
+<B> Up:</B> <A NAME="tex2html733"
46 46
   HREF="node10.html">Installation</A>
47
-<B> Previous:</B> <A NAME="tex2html715"
47
+<B> Previous:</B> <A NAME="tex2html727"
48 48
   HREF="node11.html">Requirements</A>
49
- &nbsp <B>  <A NAME="tex2html723"
49
+ &nbsp <B>  <A NAME="tex2html735"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -75,7 +75,7 @@ Installing on a shell account</A>
75 75
 <BR><HR>
76 76
 <ADDRESS>
77 77
 Tomasz Kojm
78
-2006-07-01
78
+2006-10-15
79 79
 </ADDRESS>
80 80
 </BODY>
81 81
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html2207"
29
+<A NAME="tex2html2219"
30 30
   HREF="node121.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html2203"
32
+<A NAME="tex2html2215"
33 33
   HREF="node110.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html2199"
35
+<A NAME="tex2html2211"
36 36
   HREF="node119.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html2205"
38
+<A NAME="tex2html2217"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html2208"
42
+<B> Next:</B> <A NAME="tex2html2220"
43 43
   HREF="node121.html">Graphical User Interface +</A>
44
-<B> Up:</B> <A NAME="tex2html2204"
44
+<B> Up:</B> <A NAME="tex2html2216"
45 45
   HREF="node110.html">Mail User Agent +</A>
46
-<B> Previous:</B> <A NAME="tex2html2200"
46
+<B> Previous:</B> <A NAME="tex2html2212"
47 47
   HREF="node119.html">Sylpheed-Claws</A>
48
- &nbsp <B>  <A NAME="tex2html2206"
48
+ &nbsp <B>  <A NAME="tex2html2218"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2219"
30
+<A NAME="tex2html2231"
31 31
   HREF="node122.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2215"
33
+<A NAME="tex2html2227"
34 34
   HREF="node47.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2209"
36
+<A NAME="tex2html2221"
37 37
   HREF="node120.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2217"
39
+<A NAME="tex2html2229"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2220"
43
+<B> Next:</B> <A NAME="tex2html2232"
44 44
   HREF="node122.html">AVScan</A>
45
-<B> Up:</B> <A NAME="tex2html2216"
45
+<B> Up:</B> <A NAME="tex2html2228"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html2210"
47
+<B> Previous:</B> <A NAME="tex2html2222"
48 48
   HREF="node120.html">SoftlabsAV</A>
49
- &nbsp <B>  <A NAME="tex2html2218"
49
+ &nbsp <B>  <A NAME="tex2html2230"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,34 +62,34 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
62 62
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
63 63
 
64 64
 <UL>
65
-<LI><A NAME="tex2html2221"
65
+<LI><A NAME="tex2html2233"
66 66
   HREF="node122.html">AVScan</A>
67
-<LI><A NAME="tex2html2222"
67
+<LI><A NAME="tex2html2234"
68 68
   HREF="node123.html">BeClam</A>
69
-<LI><A NAME="tex2html2223"
69
+<LI><A NAME="tex2html2235"
70 70
   HREF="node124.html">Clamaktion</A>
71
-<LI><A NAME="tex2html2224"
71
+<LI><A NAME="tex2html2236"
72 72
   HREF="node125.html">ClamShell</A>
73
-<LI><A NAME="tex2html2225"
73
+<LI><A NAME="tex2html2237"
74 74
   HREF="node126.html">ClamTk</A>
75
-<LI><A NAME="tex2html2226"
75
+<LI><A NAME="tex2html2238"
76 76
   HREF="node127.html">clamXav</A>
77
-<LI><A NAME="tex2html2227"
77
+<LI><A NAME="tex2html2239"
78 78
   HREF="node128.html">ClamWin</A>
79
-<LI><A NAME="tex2html2228"
79
+<LI><A NAME="tex2html2240"
80 80
   HREF="node129.html">FETCAV</A>
81
-<LI><A NAME="tex2html2229"
81
+<LI><A NAME="tex2html2241"
82 82
   HREF="node130.html">KlamAV</A>
83
-<LI><A NAME="tex2html2230"
83
+<LI><A NAME="tex2html2242"
84 84
   HREF="node131.html">QtClamAVclient</A>
85
-<LI><A NAME="tex2html2231"
85
+<LI><A NAME="tex2html2243"
86 86
   HREF="node132.html">wbmclamav</A>
87 87
 </UL>
88 88
 <!--End of Table of Child-Links-->
89 89
 <BR><HR>
90 90
 <ADDRESS>
91 91
 Tomasz Kojm
92
-2006-07-01
92
+2006-10-15
93 93
 </ADDRESS>
94 94
 </BODY>
95 95
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2242"
30
+<A NAME="tex2html2254"
31 31
   HREF="node123.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2238"
33
+<A NAME="tex2html2250"
34 34
   HREF="node121.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2232"
36
+<A NAME="tex2html2244"
37 37
   HREF="node121.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2240"
39
+<A NAME="tex2html2252"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2243"
43
+<B> Next:</B> <A NAME="tex2html2255"
44 44
   HREF="node123.html">BeClam</A>
45
-<B> Up:</B> <A NAME="tex2html2239"
45
+<B> Up:</B> <A NAME="tex2html2251"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2233"
47
+<B> Previous:</B> <A NAME="tex2html2245"
48 48
   HREF="node121.html">Graphical User Interface +</A>
49
- &nbsp <B>  <A NAME="tex2html2241"
49
+ &nbsp <B>  <A NAME="tex2html2253"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2254"
30
+<A NAME="tex2html2266"
31 31
   HREF="node124.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2250"
33
+<A NAME="tex2html2262"
34 34
   HREF="node121.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2244"
36
+<A NAME="tex2html2256"
37 37
   HREF="node122.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2252"
39
+<A NAME="tex2html2264"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2255"
43
+<B> Next:</B> <A NAME="tex2html2267"
44 44
   HREF="node124.html">Clamaktion</A>
45
-<B> Up:</B> <A NAME="tex2html2251"
45
+<B> Up:</B> <A NAME="tex2html2263"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2245"
47
+<B> Previous:</B> <A NAME="tex2html2257"
48 48
   HREF="node122.html">AVScan</A>
49
- &nbsp <B>  <A NAME="tex2html2253"
49
+ &nbsp <B>  <A NAME="tex2html2265"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2266"
30
+<A NAME="tex2html2278"
31 31
   HREF="node125.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2262"
33
+<A NAME="tex2html2274"
34 34
   HREF="node121.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2256"
36
+<A NAME="tex2html2268"
37 37
   HREF="node123.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2264"
39
+<A NAME="tex2html2276"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2267"
43
+<B> Next:</B> <A NAME="tex2html2279"
44 44
   HREF="node125.html">ClamShell</A>
45
-<B> Up:</B> <A NAME="tex2html2263"
45
+<B> Up:</B> <A NAME="tex2html2275"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2257"
47
+<B> Previous:</B> <A NAME="tex2html2269"
48 48
   HREF="node123.html">BeClam</A>
49
- &nbsp <B>  <A NAME="tex2html2265"
49
+ &nbsp <B>  <A NAME="tex2html2277"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2278"
30
+<A NAME="tex2html2290"
31 31
   HREF="node126.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2274"
33
+<A NAME="tex2html2286"
34 34
   HREF="node121.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2268"
36
+<A NAME="tex2html2280"
37 37
   HREF="node124.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2276"
39
+<A NAME="tex2html2288"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2279"
43
+<B> Next:</B> <A NAME="tex2html2291"
44 44
   HREF="node126.html">ClamTk</A>
45
-<B> Up:</B> <A NAME="tex2html2275"
45
+<B> Up:</B> <A NAME="tex2html2287"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2269"
47
+<B> Previous:</B> <A NAME="tex2html2281"
48 48
   HREF="node124.html">Clamaktion</A>
49
- &nbsp <B>  <A NAME="tex2html2277"
49
+ &nbsp <B>  <A NAME="tex2html2289"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2290"
30
+<A NAME="tex2html2302"
31 31
   HREF="node127.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2286"
33
+<A NAME="tex2html2298"
34 34
   HREF="node121.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2280"
36
+<A NAME="tex2html2292"
37 37
   HREF="node125.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2288"
39
+<A NAME="tex2html2300"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2291"
43
+<B> Next:</B> <A NAME="tex2html2303"
44 44
   HREF="node127.html">clamXav</A>
45
-<B> Up:</B> <A NAME="tex2html2287"
45
+<B> Up:</B> <A NAME="tex2html2299"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2281"
47
+<B> Previous:</B> <A NAME="tex2html2293"
48 48
   HREF="node125.html">ClamShell</A>
49
- &nbsp <B>  <A NAME="tex2html2289"
49
+ &nbsp <B>  <A NAME="tex2html2301"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -65,7 +65,7 @@ ClamTk is a perl-tk GUI for ClamAV.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2302"
30
+<A NAME="tex2html2314"
31 31
   HREF="node128.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2298"
33
+<A NAME="tex2html2310"
34 34
   HREF="node121.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2292"
36
+<A NAME="tex2html2304"
37 37
   HREF="node126.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2300"
39
+<A NAME="tex2html2312"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2303"
43
+<B> Next:</B> <A NAME="tex2html2315"
44 44
   HREF="node128.html">ClamWin</A>
45
-<B> Up:</B> <A NAME="tex2html2299"
45
+<B> Up:</B> <A NAME="tex2html2311"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2293"
47
+<B> Previous:</B> <A NAME="tex2html2305"
48 48
   HREF="node126.html">ClamTk</A>
49
- &nbsp <B>  <A NAME="tex2html2301"
49
+ &nbsp <B>  <A NAME="tex2html2313"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2314"
30
+<A NAME="tex2html2326"
31 31
   HREF="node129.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2310"
33
+<A NAME="tex2html2322"
34 34
   HREF="node121.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2304"
36
+<A NAME="tex2html2316"
37 37
   HREF="node127.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2312"
39
+<A NAME="tex2html2324"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2315"
43
+<B> Next:</B> <A NAME="tex2html2327"
44 44
   HREF="node129.html">FETCAV</A>
45
-<B> Up:</B> <A NAME="tex2html2311"
45
+<B> Up:</B> <A NAME="tex2html2323"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2305"
47
+<B> Previous:</B> <A NAME="tex2html2317"
48 48
   HREF="node127.html">clamXav</A>
49
- &nbsp <B>  <A NAME="tex2html2313"
49
+ &nbsp <B>  <A NAME="tex2html2325"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
75
+2006-10-15
76 76
 </ADDRESS>
77 77
 </BODY>
78 78
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2326"
30
+<A NAME="tex2html2338"
31 31
   HREF="node130.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2322"
33
+<A NAME="tex2html2334"
34 34
   HREF="node121.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2316"
36
+<A NAME="tex2html2328"
37 37
   HREF="node128.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2324"
39
+<A NAME="tex2html2336"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2327"
43
+<B> Next:</B> <A NAME="tex2html2339"
44 44
   HREF="node130.html">KlamAV</A>
45
-<B> Up:</B> <A NAME="tex2html2323"
45
+<B> Up:</B> <A NAME="tex2html2335"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2317"
47
+<B> Previous:</B> <A NAME="tex2html2329"
48 48
   HREF="node128.html">ClamWin</A>
49
- &nbsp <B>  <A NAME="tex2html2325"
49
+ &nbsp <B>  <A NAME="tex2html2337"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html736"
30
+<A NAME="tex2html748"
31 31
   HREF="node14.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html732"
33
+<A NAME="tex2html744"
34 34
   HREF="node10.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html726"
36
+<A NAME="tex2html738"
37 37
   HREF="node12.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html734"
39
+<A NAME="tex2html746"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html737"
43
+<B> Next:</B> <A NAME="tex2html749"
44 44
   HREF="node14.html">Compilation of base package</A>
45
-<B> Up:</B> <A NAME="tex2html733"
45
+<B> Up:</B> <A NAME="tex2html745"
46 46
   HREF="node10.html">Installation</A>
47
-<B> Previous:</B> <A NAME="tex2html727"
47
+<B> Previous:</B> <A NAME="tex2html739"
48 48
   HREF="node12.html">Installing on a shell</A>
49
- &nbsp <B>  <A NAME="tex2html735"
49
+ &nbsp <B>  <A NAME="tex2html747"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -69,7 +69,7 @@ Adding new system user and group</A>
69 69
 <BR><HR>
70 70
 <ADDRESS>
71 71
 Tomasz Kojm
72
-2006-07-01
72
+2006-10-15
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2338"
30
+<A NAME="tex2html2350"
31 31
   HREF="node131.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2334"
33
+<A NAME="tex2html2346"
34 34
   HREF="node121.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2328"
36
+<A NAME="tex2html2340"
37 37
   HREF="node129.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2336"
39
+<A NAME="tex2html2348"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2339"
43
+<B> Next:</B> <A NAME="tex2html2351"
44 44
   HREF="node131.html">QtClamAVclient</A>
45
-<B> Up:</B> <A NAME="tex2html2335"
45
+<B> Up:</B> <A NAME="tex2html2347"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2329"
47
+<B> Previous:</B> <A NAME="tex2html2341"
48 48
   HREF="node129.html">FETCAV</A>
49
- &nbsp <B>  <A NAME="tex2html2337"
49
+ &nbsp <B>  <A NAME="tex2html2349"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2350"
30
+<A NAME="tex2html2362"
31 31
   HREF="node132.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2346"
33
+<A NAME="tex2html2358"
34 34
   HREF="node121.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2340"
36
+<A NAME="tex2html2352"
37 37
   HREF="node130.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2348"
39
+<A NAME="tex2html2360"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2351"
43
+<B> Next:</B> <A NAME="tex2html2363"
44 44
   HREF="node132.html">wbmclamav</A>
45
-<B> Up:</B> <A NAME="tex2html2347"
45
+<B> Up:</B> <A NAME="tex2html2359"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2341"
47
+<B> Previous:</B> <A NAME="tex2html2353"
48 48
   HREF="node130.html">KlamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2349"
49
+ &nbsp <B>  <A NAME="tex2html2361"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html2360"
29
+<A NAME="tex2html2372"
30 30
   HREF="node133.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html2356"
32
+<A NAME="tex2html2368"
33 33
   HREF="node121.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html2352"
35
+<A NAME="tex2html2364"
36 36
   HREF="node131.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html2358"
38
+<A NAME="tex2html2370"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html2361"
42
+<B> Next:</B> <A NAME="tex2html2373"
43 43
   HREF="node133.html">Library + ClamAV</A>
44
-<B> Up:</B> <A NAME="tex2html2357"
44
+<B> Up:</B> <A NAME="tex2html2369"
45 45
   HREF="node121.html">Graphical User Interface +</A>
46
-<B> Previous:</B> <A NAME="tex2html2353"
46
+<B> Previous:</B> <A NAME="tex2html2365"
47 47
   HREF="node131.html">QtClamAVclient</A>
48
- &nbsp <B>  <A NAME="tex2html2359"
48
+ &nbsp <B>  <A NAME="tex2html2371"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -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
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2372"
30
+<A NAME="tex2html2384"
31 31
   HREF="node134.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2368"
33
+<A NAME="tex2html2380"
34 34
   HREF="node47.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2362"
36
+<A NAME="tex2html2374"
37 37
   HREF="node132.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2370"
39
+<A NAME="tex2html2382"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2373"
43
+<B> Next:</B> <A NAME="tex2html2385"
44 44
   HREF="node134.html">ClamAV-Sharp</A>
45
-<B> Up:</B> <A NAME="tex2html2369"
45
+<B> Up:</B> <A NAME="tex2html2381"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html2363"
47
+<B> Previous:</B> <A NAME="tex2html2375"
48 48
   HREF="node132.html">wbmclamav</A>
49
- &nbsp <B>  <A NAME="tex2html2371"
49
+ &nbsp <B>  <A NAME="tex2html2383"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,30 +62,30 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
62 62
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
63 63
 
64 64
 <UL>
65
-<LI><A NAME="tex2html2374"
65
+<LI><A NAME="tex2html2386"
66 66
   HREF="node134.html">ClamAV-Sharp</A>
67
-<LI><A NAME="tex2html2375"
67
+<LI><A NAME="tex2html2387"
68 68
   HREF="node135.html">ClamAVPlugin</A>
69
-<LI><A NAME="tex2html2376"
69
+<LI><A NAME="tex2html2388"
70 70
   HREF="node136.html">clamavr</A>
71
-<LI><A NAME="tex2html2377"
71
+<LI><A NAME="tex2html2389"
72 72
   HREF="node137.html">D bindings for ClamAV</A>
73
-<LI><A NAME="tex2html2378"
73
+<LI><A NAME="tex2html2390"
74 74
   HREF="node138.html">File::Scan::ClamAV</A>
75
-<LI><A NAME="tex2html2379"
75
+<LI><A NAME="tex2html2391"
76 76
   HREF="node139.html">Mail::ClamAV</A>
77
-<LI><A NAME="tex2html2380"
77
+<LI><A NAME="tex2html2392"
78 78
   HREF="node140.html">PHP ClamAV Lib</A>
79
-<LI><A NAME="tex2html2381"
79
+<LI><A NAME="tex2html2393"
80 80
   HREF="node141.html">pyclamav</A>
81
-<LI><A NAME="tex2html2382"
81
+<LI><A NAME="tex2html2394"
82 82
   HREF="node142.html">WRAVLib</A>
83 83
 </UL>
84 84
 <!--End of Table of Child-Links-->
85 85
 <BR><HR>
86 86
 <ADDRESS>
87 87
 Tomasz Kojm
88
-2006-07-01
88
+2006-10-15
89 89
 </ADDRESS>
90 90
 </BODY>
91 91
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2393"
30
+<A NAME="tex2html2405"
31 31
   HREF="node135.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2389"
33
+<A NAME="tex2html2401"
34 34
   HREF="node133.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2383"
36
+<A NAME="tex2html2395"
37 37
   HREF="node133.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2391"
39
+<A NAME="tex2html2403"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2394"
43
+<B> Next:</B> <A NAME="tex2html2406"
44 44
   HREF="node135.html">ClamAVPlugin</A>
45
-<B> Up:</B> <A NAME="tex2html2390"
45
+<B> Up:</B> <A NAME="tex2html2402"
46 46
   HREF="node133.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2384"
47
+<B> Previous:</B> <A NAME="tex2html2396"
48 48
   HREF="node133.html">Library + ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2392"
49
+ &nbsp <B>  <A NAME="tex2html2404"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -65,7 +65,7 @@ Mono binding for ClamAV.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2405"
30
+<A NAME="tex2html2417"
31 31
   HREF="node136.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2401"
33
+<A NAME="tex2html2413"
34 34
   HREF="node133.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2395"
36
+<A NAME="tex2html2407"
37 37
   HREF="node134.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2403"
39
+<A NAME="tex2html2415"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2406"
43
+<B> Next:</B> <A NAME="tex2html2418"
44 44
   HREF="node136.html">clamavr</A>
45
-<B> Up:</B> <A NAME="tex2html2402"
45
+<B> Up:</B> <A NAME="tex2html2414"
46 46
   HREF="node133.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2396"
47
+<B> Previous:</B> <A NAME="tex2html2408"
48 48
   HREF="node134.html">ClamAV-Sharp</A>
49
- &nbsp <B>  <A NAME="tex2html2404"
49
+ &nbsp <B>  <A NAME="tex2html2416"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -65,7 +65,7 @@ A ClamAV plugin for SpamAssassin 3.x.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2417"
30
+<A NAME="tex2html2429"
31 31
   HREF="node137.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2413"
33
+<A NAME="tex2html2425"
34 34
   HREF="node133.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2407"
36
+<A NAME="tex2html2419"
37 37
   HREF="node135.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2415"
39
+<A NAME="tex2html2427"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2418"
43
+<B> Next:</B> <A NAME="tex2html2430"
44 44
   HREF="node137.html">D bindings for ClamAV</A>
45
-<B> Up:</B> <A NAME="tex2html2414"
45
+<B> Up:</B> <A NAME="tex2html2426"
46 46
   HREF="node133.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2408"
47
+<B> Previous:</B> <A NAME="tex2html2420"
48 48
   HREF="node135.html">ClamAVPlugin</A>
49
- &nbsp <B>  <A NAME="tex2html2416"
49
+ &nbsp <B>  <A NAME="tex2html2428"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -65,7 +65,7 @@ Ruby binding for ClamAV.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2429"
30
+<A NAME="tex2html2441"
31 31
   HREF="node138.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2425"
33
+<A NAME="tex2html2437"
34 34
   HREF="node133.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2419"
36
+<A NAME="tex2html2431"
37 37
   HREF="node136.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2427"
39
+<A NAME="tex2html2439"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2430"
43
+<B> Next:</B> <A NAME="tex2html2442"
44 44
   HREF="node138.html">File::Scan::ClamAV</A>
45
-<B> Up:</B> <A NAME="tex2html2426"
45
+<B> Up:</B> <A NAME="tex2html2438"
46 46
   HREF="node133.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2420"
47
+<B> Previous:</B> <A NAME="tex2html2432"
48 48
   HREF="node136.html">clamavr</A>
49
- &nbsp <B>  <A NAME="tex2html2428"
49
+ &nbsp <B>  <A NAME="tex2html2440"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -67,7 +67,7 @@ ClamAV bindings for the D programming language
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2441"
30
+<A NAME="tex2html2453"
31 31
   HREF="node139.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2437"
33
+<A NAME="tex2html2449"
34 34
   HREF="node133.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2431"
36
+<A NAME="tex2html2443"
37 37
   HREF="node137.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2439"
39
+<A NAME="tex2html2451"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2442"
43
+<B> Next:</B> <A NAME="tex2html2454"
44 44
   HREF="node139.html">Mail::ClamAV</A>
45
-<B> Up:</B> <A NAME="tex2html2438"
45
+<B> Up:</B> <A NAME="tex2html2450"
46 46
   HREF="node133.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2432"
47
+<B> Previous:</B> <A NAME="tex2html2444"
48 48
   HREF="node137.html">D bindings for ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2440"
49
+ &nbsp <B>  <A NAME="tex2html2452"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -65,7 +65,7 @@ Scan files and control clamd directly from Perl.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2453"
30
+<A NAME="tex2html2465"
31 31
   HREF="node140.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2449"
33
+<A NAME="tex2html2461"
34 34
   HREF="node133.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2443"
36
+<A NAME="tex2html2455"
37 37
   HREF="node138.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2451"
39
+<A NAME="tex2html2463"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2454"
43
+<B> Next:</B> <A NAME="tex2html2466"
44 44
   HREF="node140.html">PHP ClamAV Lib</A>
45
-<B> Up:</B> <A NAME="tex2html2450"
45
+<B> Up:</B> <A NAME="tex2html2462"
46 46
   HREF="node133.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2444"
47
+<B> Previous:</B> <A NAME="tex2html2456"
48 48
   HREF="node138.html">File::Scan::ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2452"
49
+ &nbsp <B>  <A NAME="tex2html2464"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -65,7 +65,7 @@ Perl binding for ClamAV.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html748"
30
+<A NAME="tex2html760"
31 31
   HREF="node15.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html744"
33
+<A NAME="tex2html756"
34 34
   HREF="node10.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html738"
36
+<A NAME="tex2html750"
37 37
   HREF="node13.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html746"
39
+<A NAME="tex2html758"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html749"
43
+<B> Next:</B> <A NAME="tex2html761"
44 44
   HREF="node15.html">Compilation with clamav-milter enabled</A>
45
-<B> Up:</B> <A NAME="tex2html745"
45
+<B> Up:</B> <A NAME="tex2html757"
46 46
   HREF="node10.html">Installation</A>
47
-<B> Previous:</B> <A NAME="tex2html739"
47
+<B> Previous:</B> <A NAME="tex2html751"
48 48
   HREF="node13.html">Adding new system user</A>
49
- &nbsp <B>  <A NAME="tex2html747"
49
+ &nbsp <B>  <A NAME="tex2html759"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -78,7 +78,7 @@ Compilation of base package</A>
78 78
 <BR><HR>
79 79
 <ADDRESS>
80 80
 Tomasz Kojm
81
-2006-07-01
81
+2006-10-15
82 82
 </ADDRESS>
83 83
 </BODY>
84 84
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2465"
30
+<A NAME="tex2html2477"
31 31
   HREF="node141.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2461"
33
+<A NAME="tex2html2473"
34 34
   HREF="node133.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2455"
36
+<A NAME="tex2html2467"
37 37
   HREF="node139.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2463"
39
+<A NAME="tex2html2475"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2466"
43
+<B> Next:</B> <A NAME="tex2html2478"
44 44
   HREF="node141.html">pyclamav</A>
45
-<B> Up:</B> <A NAME="tex2html2462"
45
+<B> Up:</B> <A NAME="tex2html2474"
46 46
   HREF="node133.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2456"
47
+<B> Previous:</B> <A NAME="tex2html2468"
48 48
   HREF="node139.html">Mail::ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2464"
49
+ &nbsp <B>  <A NAME="tex2html2476"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -66,7 +66,7 @@ PHP ClamAV Lib is a PHP extension that allows to incorporate virus
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2477"
30
+<A NAME="tex2html2489"
31 31
   HREF="node142.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2473"
33
+<A NAME="tex2html2485"
34 34
   HREF="node133.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2467"
36
+<A NAME="tex2html2479"
37 37
   HREF="node140.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2475"
39
+<A NAME="tex2html2487"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2478"
43
+<B> Next:</B> <A NAME="tex2html2490"
44 44
   HREF="node142.html">WRAVLib</A>
45
-<B> Up:</B> <A NAME="tex2html2474"
45
+<B> Up:</B> <A NAME="tex2html2486"
46 46
   HREF="node133.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2468"
47
+<B> Previous:</B> <A NAME="tex2html2480"
48 48
   HREF="node140.html">PHP ClamAV Lib</A>
49
- &nbsp <B>  <A NAME="tex2html2476"
49
+ &nbsp <B>  <A NAME="tex2html2488"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -65,7 +65,7 @@ Python binding for ClamAV.
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html2487"
29
+<A NAME="tex2html2499"
30 30
   HREF="node143.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html2483"
32
+<A NAME="tex2html2495"
33 33
   HREF="node133.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html2479"
35
+<A NAME="tex2html2491"
36 36
   HREF="node141.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html2485"
38
+<A NAME="tex2html2497"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html2488"
42
+<B> Next:</B> <A NAME="tex2html2500"
43 43
   HREF="node143.html">Miscellaneous + ClamAV</A>
44
-<B> Up:</B> <A NAME="tex2html2484"
44
+<B> Up:</B> <A NAME="tex2html2496"
45 45
   HREF="node133.html">Library + ClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html2480"
46
+<B> Previous:</B> <A NAME="tex2html2492"
47 47
   HREF="node141.html">pyclamav</A>
48
- &nbsp <B>  <A NAME="tex2html2486"
48
+ &nbsp <B>  <A NAME="tex2html2498"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html2497"
29
+<A NAME="tex2html2509"
30 30
   HREF="node144.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html2493"
32
+<A NAME="tex2html2505"
33 33
   HREF="node47.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html2489"
35
+<A NAME="tex2html2501"
36 36
   HREF="node142.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html2495"
38
+<A NAME="tex2html2507"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html2498"
42
+<B> Next:</B> <A NAME="tex2html2510"
43 43
   HREF="node144.html">INSERT</A>
44
-<B> Up:</B> <A NAME="tex2html2494"
44
+<B> Up:</B> <A NAME="tex2html2506"
45 45
   HREF="node47.html">Third party software</A>
46
-<B> Previous:</B> <A NAME="tex2html2490"
46
+<B> Previous:</B> <A NAME="tex2html2502"
47 47
   HREF="node142.html">WRAVLib</A>
48
- &nbsp <B>  <A NAME="tex2html2496"
48
+ &nbsp <B>  <A NAME="tex2html2508"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -61,34 +61,34 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
61 61
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
62 62
 
63 63
 <UL>
64
-<LI><A NAME="tex2html2499"
64
+<LI><A NAME="tex2html2511"
65 65
   HREF="node144.html">INSERT</A>
66
-<LI><A NAME="tex2html2500"
66
+<LI><A NAME="tex2html2512"
67 67
   HREF="node145.html">Local Area Security</A>
68
-<LI><A NAME="tex2html2501"
68
+<LI><A NAME="tex2html2513"
69 69
   HREF="node146.html">mailgraph</A>
70
-<LI><A NAME="tex2html2502"
70
+<LI><A NAME="tex2html2514"
71 71
   HREF="node147.html">mailman-clamav</A>
72
-<LI><A NAME="tex2html2503"
72
+<LI><A NAME="tex2html2515"
73 73
   HREF="node148.html">Moodle</A>
74
-<LI><A NAME="tex2html2504"
74
+<LI><A NAME="tex2html2516"
75 75
   HREF="node149.html">nclamd</A>
76
-<LI><A NAME="tex2html2505"
76
+<LI><A NAME="tex2html2517"
77 77
   HREF="node150.html">qmailmrtg7</A>
78
-<LI><A NAME="tex2html2506"
78
+<LI><A NAME="tex2html2518"
79 79
   HREF="node151.html">redWall Firewall</A>
80
-<LI><A NAME="tex2html2507"
80
+<LI><A NAME="tex2html2519"
81 81
   HREF="node152.html">Scan Log Analyzer</A>
82
-<LI><A NAME="tex2html2508"
82
+<LI><A NAME="tex2html2520"
83 83
   HREF="node153.html">snort-inline</A>
84
-<LI><A NAME="tex2html2509"
84
+<LI><A NAME="tex2html2521"
85 85
   HREF="node154.html">Snort-ClamAV</A>
86 86
 </UL>
87 87
 <!--End of Table of Child-Links-->
88 88
 <BR><HR>
89 89
 <ADDRESS>
90 90
 Tomasz Kojm
91
-2006-07-01
91
+2006-10-15
92 92
 </ADDRESS>
93 93
 </BODY>
94 94
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2520"
30
+<A NAME="tex2html2532"
31 31
   HREF="node145.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2516"
33
+<A NAME="tex2html2528"
34 34
   HREF="node143.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2510"
36
+<A NAME="tex2html2522"
37 37
   HREF="node143.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2518"
39
+<A NAME="tex2html2530"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2521"
43
+<B> Next:</B> <A NAME="tex2html2533"
44 44
   HREF="node145.html">Local Area Security</A>
45
-<B> Up:</B> <A NAME="tex2html2517"
45
+<B> Up:</B> <A NAME="tex2html2529"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2511"
47
+<B> Previous:</B> <A NAME="tex2html2523"
48 48
   HREF="node143.html">Miscellaneous + ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2519"
49
+ &nbsp <B>  <A NAME="tex2html2531"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
74
+2006-10-15
75 75
 </ADDRESS>
76 76
 </BODY>
77 77
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2532"
30
+<A NAME="tex2html2544"
31 31
   HREF="node146.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2528"
33
+<A NAME="tex2html2540"
34 34
   HREF="node143.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2522"
36
+<A NAME="tex2html2534"
37 37
   HREF="node144.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2530"
39
+<A NAME="tex2html2542"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2533"
43
+<B> Next:</B> <A NAME="tex2html2545"
44 44
   HREF="node146.html">mailgraph</A>
45
-<B> Up:</B> <A NAME="tex2html2529"
45
+<B> Up:</B> <A NAME="tex2html2541"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2523"
47
+<B> Previous:</B> <A NAME="tex2html2535"
48 48
   HREF="node144.html">INSERT</A>
49
- &nbsp <B>  <A NAME="tex2html2531"
49
+ &nbsp <B>  <A NAME="tex2html2543"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2544"
30
+<A NAME="tex2html2556"
31 31
   HREF="node147.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2540"
33
+<A NAME="tex2html2552"
34 34
   HREF="node143.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2534"
36
+<A NAME="tex2html2546"
37 37
   HREF="node145.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2542"
39
+<A NAME="tex2html2554"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2545"
43
+<B> Next:</B> <A NAME="tex2html2557"
44 44
   HREF="node147.html">mailman-clamav</A>
45
-<B> Up:</B> <A NAME="tex2html2541"
45
+<B> Up:</B> <A NAME="tex2html2553"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2535"
47
+<B> Previous:</B> <A NAME="tex2html2547"
48 48
   HREF="node145.html">Local Area Security</A>
49
- &nbsp <B>  <A NAME="tex2html2543"
49
+ &nbsp <B>  <A NAME="tex2html2555"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2556"
30
+<A NAME="tex2html2568"
31 31
   HREF="node148.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2552"
33
+<A NAME="tex2html2564"
34 34
   HREF="node143.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2546"
36
+<A NAME="tex2html2558"
37 37
   HREF="node146.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2554"
39
+<A NAME="tex2html2566"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2557"
43
+<B> Next:</B> <A NAME="tex2html2569"
44 44
   HREF="node148.html">Moodle</A>
45
-<B> Up:</B> <A NAME="tex2html2553"
45
+<B> Up:</B> <A NAME="tex2html2565"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2547"
47
+<B> Previous:</B> <A NAME="tex2html2559"
48 48
   HREF="node146.html">mailgraph</A>
49
- &nbsp <B>  <A NAME="tex2html2555"
49
+ &nbsp <B>  <A NAME="tex2html2567"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
72
+2006-10-15
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2568"
30
+<A NAME="tex2html2580"
31 31
   HREF="node149.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2564"
33
+<A NAME="tex2html2576"
34 34
   HREF="node143.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2558"
36
+<A NAME="tex2html2570"
37 37
   HREF="node147.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2566"
39
+<A NAME="tex2html2578"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2569"
43
+<B> Next:</B> <A NAME="tex2html2581"
44 44
   HREF="node149.html">nclamd</A>
45
-<B> Up:</B> <A NAME="tex2html2565"
45
+<B> Up:</B> <A NAME="tex2html2577"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2559"
47
+<B> Previous:</B> <A NAME="tex2html2571"
48 48
   HREF="node147.html">mailman-clamav</A>
49
- &nbsp <B>  <A NAME="tex2html2567"
49
+ &nbsp <B>  <A NAME="tex2html2579"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2580"
30
+<A NAME="tex2html2592"
31 31
   HREF="node150.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2576"
33
+<A NAME="tex2html2588"
34 34
   HREF="node143.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2570"
36
+<A NAME="tex2html2582"
37 37
   HREF="node148.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2578"
39
+<A NAME="tex2html2590"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2581"
43
+<B> Next:</B> <A NAME="tex2html2593"
44 44
   HREF="node150.html">qmailmrtg7</A>
45
-<B> Up:</B> <A NAME="tex2html2577"
45
+<B> Up:</B> <A NAME="tex2html2589"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2571"
47
+<B> Previous:</B> <A NAME="tex2html2583"
48 48
   HREF="node148.html">Moodle</A>
49
- &nbsp <B>  <A NAME="tex2html2579"
49
+ &nbsp <B>  <A NAME="tex2html2591"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html758"
29
+<A NAME="tex2html770"
30 30
   HREF="node16.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html754"
32
+<A NAME="tex2html766"
33 33
   HREF="node10.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html750"
35
+<A NAME="tex2html762"
36 36
   HREF="node14.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html756"
38
+<A NAME="tex2html768"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html759"
42
+<B> Next:</B> <A NAME="tex2html771"
43 43
   HREF="node16.html">Configuration</A>
44
-<B> Up:</B> <A NAME="tex2html755"
44
+<B> Up:</B> <A NAME="tex2html767"
45 45
   HREF="node10.html">Installation</A>
46
-<B> Previous:</B> <A NAME="tex2html751"
46
+<B> Previous:</B> <A NAME="tex2html763"
47 47
   HREF="node14.html">Compilation of base package</A>
48
- &nbsp <B>  <A NAME="tex2html757"
48
+ &nbsp <B>  <A NAME="tex2html769"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -64,7 +64,7 @@ Compilation with clamav-milter enabled</A>
64 64
 <BR><HR>
65 65
 <ADDRESS>
66 66
 Tomasz Kojm
67
-2006-07-01
67
+2006-10-15
68 68
 </ADDRESS>
69 69
 </BODY>
70 70
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2592"
30
+<A NAME="tex2html2604"
31 31
   HREF="node151.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2588"
33
+<A NAME="tex2html2600"
34 34
   HREF="node143.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2582"
36
+<A NAME="tex2html2594"
37 37
   HREF="node149.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2590"
39
+<A NAME="tex2html2602"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2593"
43
+<B> Next:</B> <A NAME="tex2html2605"
44 44
   HREF="node151.html">redWall Firewall</A>
45
-<B> Up:</B> <A NAME="tex2html2589"
45
+<B> Up:</B> <A NAME="tex2html2601"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2583"
47
+<B> Previous:</B> <A NAME="tex2html2595"
48 48
   HREF="node149.html">nclamd</A>
49
- &nbsp <B>  <A NAME="tex2html2591"
49
+ &nbsp <B>  <A NAME="tex2html2603"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2604"
30
+<A NAME="tex2html2616"
31 31
   HREF="node152.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2600"
33
+<A NAME="tex2html2612"
34 34
   HREF="node143.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2594"
36
+<A NAME="tex2html2606"
37 37
   HREF="node150.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2602"
39
+<A NAME="tex2html2614"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2605"
43
+<B> Next:</B> <A NAME="tex2html2617"
44 44
   HREF="node152.html">Scan Log Analyzer</A>
45
-<B> Up:</B> <A NAME="tex2html2601"
45
+<B> Up:</B> <A NAME="tex2html2613"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2595"
47
+<B> Previous:</B> <A NAME="tex2html2607"
48 48
   HREF="node150.html">qmailmrtg7</A>
49
- &nbsp <B>  <A NAME="tex2html2603"
49
+ &nbsp <B>  <A NAME="tex2html2615"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2616"
30
+<A NAME="tex2html2628"
31 31
   HREF="node153.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2612"
33
+<A NAME="tex2html2624"
34 34
   HREF="node143.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2606"
36
+<A NAME="tex2html2618"
37 37
   HREF="node151.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2614"
39
+<A NAME="tex2html2626"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2617"
43
+<B> Next:</B> <A NAME="tex2html2629"
44 44
   HREF="node153.html">snort-inline</A>
45
-<B> Up:</B> <A NAME="tex2html2613"
45
+<B> Up:</B> <A NAME="tex2html2625"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2607"
47
+<B> Previous:</B> <A NAME="tex2html2619"
48 48
   HREF="node151.html">redWall Firewall</A>
49
- &nbsp <B>  <A NAME="tex2html2615"
49
+ &nbsp <B>  <A NAME="tex2html2627"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2628"
30
+<A NAME="tex2html2640"
31 31
   HREF="node154.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2624"
33
+<A NAME="tex2html2636"
34 34
   HREF="node143.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2618"
36
+<A NAME="tex2html2630"
37 37
   HREF="node152.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2626"
39
+<A NAME="tex2html2638"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2629"
43
+<B> Next:</B> <A NAME="tex2html2641"
44 44
   HREF="node154.html">Snort-ClamAV</A>
45
-<B> Up:</B> <A NAME="tex2html2625"
45
+<B> Up:</B> <A NAME="tex2html2637"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2619"
47
+<B> Previous:</B> <A NAME="tex2html2631"
48 48
   HREF="node152.html">Scan Log Analyzer</A>
49
- &nbsp <B>  <A NAME="tex2html2627"
49
+ &nbsp <B>  <A NAME="tex2html2639"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html2638"
29
+<A NAME="tex2html2650"
30 30
   HREF="node155.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html2634"
32
+<A NAME="tex2html2646"
33 33
   HREF="node143.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html2630"
35
+<A NAME="tex2html2642"
36 36
   HREF="node153.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html2636"
38
+<A NAME="tex2html2648"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html2639"
42
+<B> Next:</B> <A NAME="tex2html2651"
43 43
   HREF="node155.html">Credits</A>
44
-<B> Up:</B> <A NAME="tex2html2635"
44
+<B> Up:</B> <A NAME="tex2html2647"
45 45
   HREF="node143.html">Miscellaneous + ClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html2631"
46
+<B> Previous:</B> <A NAME="tex2html2643"
47 47
   HREF="node153.html">snort-inline</A>
48
- &nbsp <B>  <A NAME="tex2html2637"
48
+ &nbsp <B>  <A NAME="tex2html2649"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -64,7 +64,7 @@ Snort-ClamAV scans data in packets for viruses.
64 64
 <BR><HR>
65 65
 <ADDRESS>
66 66
 Tomasz Kojm
67
-2006-07-01
67
+2006-10-15
68 68
 </ADDRESS>
69 69
 </BODY>
70 70
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2650"
30
+<A NAME="tex2html2662"
31 31
   HREF="node156.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2646"
33
+<A NAME="tex2html2658"
34 34
   HREF="clamdoc.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2640"
36
+<A NAME="tex2html2652"
37 37
   HREF="node154.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2648"
39
+<A NAME="tex2html2660"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2651"
43
+<B> Next:</B> <A NAME="tex2html2663"
44 44
   HREF="node156.html">Database mirrors</A>
45
-<B> Up:</B> <A NAME="tex2html2647"
45
+<B> Up:</B> <A NAME="tex2html2659"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html2641"
47
+<B> Previous:</B> <A NAME="tex2html2653"
48 48
   HREF="node154.html">Snort-ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2649"
49
+ &nbsp <B>  <A NAME="tex2html2661"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,22 +62,22 @@ Credits</A>
62 62
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
63 63
 
64 64
 <UL>
65
-<LI><A NAME="tex2html2652"
65
+<LI><A NAME="tex2html2664"
66 66
   HREF="node156.html">Database mirrors</A>
67
-<LI><A NAME="tex2html2653"
67
+<LI><A NAME="tex2html2665"
68 68
   HREF="node157.html">Contributors</A>
69
-<LI><A NAME="tex2html2654"
69
+<LI><A NAME="tex2html2666"
70 70
   HREF="node158.html">Donors</A>
71
-<LI><A NAME="tex2html2655"
71
+<LI><A NAME="tex2html2667"
72 72
   HREF="node159.html">Graphics</A>
73
-<LI><A NAME="tex2html2656"
73
+<LI><A NAME="tex2html2668"
74 74
   HREF="node160.html">OpenAntiVirus</A>
75 75
 </UL>
76 76
 <!--End of Table of Child-Links-->
77 77
 <BR><HR>
78 78
 <ADDRESS>
79 79
 Tomasz Kojm
80
-2006-07-01
80
+2006-10-15
81 81
 </ADDRESS>
82 82
 </BODY>
83 83
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2667"
30
+<A NAME="tex2html2679"
31 31
   HREF="node157.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2663"
33
+<A NAME="tex2html2675"
34 34
   HREF="node155.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2657"
36
+<A NAME="tex2html2669"
37 37
   HREF="node155.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2665"
39
+<A NAME="tex2html2677"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2668"
43
+<B> Next:</B> <A NAME="tex2html2680"
44 44
   HREF="node157.html">Contributors</A>
45
-<B> Up:</B> <A NAME="tex2html2664"
45
+<B> Up:</B> <A NAME="tex2html2676"
46 46
   HREF="node155.html">Credits</A>
47
-<B> Previous:</B> <A NAME="tex2html2658"
47
+<B> Previous:</B> <A NAME="tex2html2670"
48 48
   HREF="node155.html">Credits</A>
49
- &nbsp <B>  <A NAME="tex2html2666"
49
+ &nbsp <B>  <A NAME="tex2html2678"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -691,19 +691,6 @@ Database mirrors
691 691
 </TR>
692 692
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
693 693
 	<TT><A NAME="tex2html198"
694
-  HREF="clamav.devolution.com">clamav.devolution.com</A></TT> </FONT></TD>
695
-<TD ALIGN="CENTER"><FONT SIZE="-1"> 206.58.251.131 </FONT></TD>
696
-<TD ALIGN="CENTER"><FONT SIZE="-1"> California, </FONT></TD>
697
-<TD ALIGN="CENTER"><FONT SIZE="-1"> Scott Call</FONT></TD>
698
-</TR>
699
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
700
-				    </FONT></TD>
701
-<TD ALIGN="CENTER"><FONT SIZE="-1">		     </FONT></TD>
702
-<TD ALIGN="CENTER"><FONT SIZE="-1">		   </FONT></TD>
703
-<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;scall*atgi.net&gt;</FONT></TD>
704
-</TR>
705
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
706
-	<TT><A NAME="tex2html199"
707 694
   HREF="clamavdb.hostlink.com.hk">clamavdb.hostlink.com.hk</A></TT> </FONT></TD>
708 695
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 210.245.160.22 </FONT></TD>
709 696
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Hong Kong </FONT></TD>
... ...
@@ -716,7 +703,7 @@ Database mirrors
716 716
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;alexfkl*hostlink.com.hk&gt;</FONT></TD>
717 717
 </TR>
718 718
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
719
-	<TT><A NAME="tex2html200"
719
+	<TT><A NAME="tex2html199"
720 720
   HREF="clamav.clearfield.com">clamav.clearfield.com</A></TT> </FONT></TD>
721 721
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 65.110.48.11 </FONT></TD>
722 722
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -729,7 +716,7 @@ Database mirrors
729 729
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;jfp*clearfield.com&gt;</FONT></TD>
730 730
 </TR>
731 731
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
732
-	<TT><A NAME="tex2html201"
732
+	<TT><A NAME="tex2html200"
733 733
   HREF="clamav.oltrelinux.com">clamav.oltrelinux.com</A></TT> </FONT></TD>
734 734
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 194.242.226.43 </FONT></TD>
735 735
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Italy </FONT></TD>
... ...
@@ -742,7 +729,7 @@ Database mirrors
742 742
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;l.gibelli*oltrelinux.com&gt;</FONT></TD>
743 743
 </TR>
744 744
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
745
-	<TT><A NAME="tex2html202"
745
+	<TT><A NAME="tex2html201"
746 746
   HREF="xarch.clamav.net">xarch.clamav.net</A></TT> </FONT></TD>
747 747
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 129.27.62.129 </FONT></TD>
748 748
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Austria </FONT></TD>
... ...
@@ -755,7 +742,7 @@ Database mirrors
755 755
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;rurban*x-ray.at&gt;</FONT></TD>
756 756
 </TR>
757 757
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
758
-	<TT><A NAME="tex2html203"
758
+	<TT><A NAME="tex2html202"
759 759
   HREF="clamav.linux.it">clamav.linux.it</A></TT> </FONT></TD>
760 760
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.92.8.5 </FONT></TD>
761 761
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Italy </FONT></TD>
... ...
@@ -768,7 +755,7 @@ Database mirrors
768 768
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;md*linux.it&gt;</FONT></TD>
769 769
 </TR>
770 770
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
771
-	<TT><A NAME="tex2html204"
771
+	<TT><A NAME="tex2html203"
772 772
   HREF="clamav.eastweb.ru">clamav.eastweb.ru</A></TT> </FONT></TD>
773 773
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.219.245.4 </FONT></TD>
774 774
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Russia </FONT></TD>
... ...
@@ -781,7 +768,7 @@ Database mirrors
781 781
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;lenni*eastweb.ru&gt;</FONT></TD>
782 782
 </TR>
783 783
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
784
-	<TT><A NAME="tex2html205"
784
+	<TT><A NAME="tex2html204"
785 785
   HREF="clamav.mirrors.webpartner.dk">clamav.mirrors.webpartner.dk</A></TT> </FONT></TD>
786 786
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 195.184.96.15 </FONT></TD>
787 787
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Denmark </FONT></TD>
... ...
@@ -794,7 +781,7 @@ Database mirrors
794 794
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Lasse Brandt &lt;lb*webpartner.dk&gt;</FONT></TD>
795 795
 </TR>
796 796
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
797
-	<TT><A NAME="tex2html206"
797
+	<TT><A NAME="tex2html205"
798 798
   HREF="mirror.etf.bg.ac.yu">mirror.etf.bg.ac.yu</A></TT> </FONT></TD>
799 799
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 147.91.8.58 </FONT></TD>
800 800
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Belgrade, Serbia </FONT></TD>
... ...
@@ -807,7 +794,7 @@ Database mirrors
807 807
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ljubisa*etf.bg.ac.yu&gt;</FONT></TD>
808 808
 </TR>
809 809
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
810
-	<TT><A NAME="tex2html207"
810
+	<TT><A NAME="tex2html206"
811 811
   HREF="clamav.bridgeband.net">clamav.bridgeband.net</A></TT> </FONT></TD>
812 812
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 63.166.28.8 </FONT></TD>
813 813
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Montana, </FONT></TD>
... ...
@@ -820,7 +807,7 @@ Database mirrors
820 820
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mikel*bridgeband.net&gt;</FONT></TD>
821 821
 </TR>
822 822
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
823
-	<TT><A NAME="tex2html208"
823
+	<TT><A NAME="tex2html207"
824 824
   HREF="clamav.mirror.waycom.net">clamav.mirror.waycom.net</A></TT> </FONT></TD>
825 825
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 195.214.240.53 </FONT></TD>
826 826
 <TD ALIGN="CENTER"><FONT SIZE="-1"> France </FONT></TD>
... ...
@@ -833,7 +820,7 @@ Database mirrors
833 833
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;fd*waycom.net&gt;</FONT></TD>
834 834
 </TR>
835 835
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
836
-	<TT><A NAME="tex2html209"
836
+	<TT><A NAME="tex2html208"
837 837
   HREF="clamav.cryms.info">clamav.cryms.info</A></TT> </FONT></TD>
838 838
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 194.29.5.19 </FONT></TD>
839 839
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Lugano,	    </FONT></TD>
... ...
@@ -846,7 +833,7 @@ Database mirrors
846 846
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;lorenzo.patocchi*cryms.com&gt;</FONT></TD>
847 847
 </TR>
848 848
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
849
-	<TT><A NAME="tex2html210"
849
+	<TT><A NAME="tex2html209"
850 850
   HREF="clamav-mirror.wiseknot.co.jp">clamav-mirror.wiseknot.co.jp</A></TT> </FONT></TD>
851 851
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 59.87.0.36 </FONT></TD>
852 852
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Japan </FONT></TD>
... ...
@@ -859,7 +846,7 @@ Database mirrors
859 859
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;m-tada*wiseknot.co.jp&gt;</FONT></TD>
860 860
 </TR>
861 861
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
862
-	<TT><A NAME="tex2html211"
862
+	<TT><A NAME="tex2html210"
863 863
   HREF="clamav.host.bg">clamav.host.bg</A></TT> </FONT></TD>
864 864
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 87.120.40.28 </FONT></TD>
865 865
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Bulgaria </FONT></TD>
... ...
@@ -872,7 +859,7 @@ Database mirrors
872 872
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;a.titov*host.bg&gt;</FONT></TD>
873 873
 </TR>
874 874
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
875
-	<TT><A NAME="tex2html212"
875
+	<TT><A NAME="tex2html211"
876 876
   HREF="clamav.yukiguni.net">clamav.yukiguni.net</A></TT> </FONT></TD>
877 877
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 219.127.68.136 </FONT></TD>
878 878
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Japan </FONT></TD>
... ...
@@ -885,7 +872,7 @@ Database mirrors
885 885
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;indytech*yukiguni.net&gt;</FONT></TD>
886 886
 </TR>
887 887
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
888
-	<TT><A NAME="tex2html213"
888
+	<TT><A NAME="tex2html212"
889 889
   HREF="clamav.begi.net">clamav.begi.net</A></TT> </FONT></TD>
890 890
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 219.106.242.51 </FONT></TD>
891 891
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Japan </FONT></TD>
... ...
@@ -898,7 +885,7 @@ Database mirrors
898 898
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ito*begi.net&gt;</FONT></TD>
899 899
 </TR>
900 900
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
901
-	<TT><A NAME="tex2html214"
901
+	<TT><A NAME="tex2html213"
902 902
   HREF="clamav.meiwing.com">clamav.meiwing.com</A></TT> </FONT></TD>
903 903
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 210.245.226.117 </FONT></TD>
904 904
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Hong Kong </FONT></TD>
... ...
@@ -911,7 +898,7 @@ Database mirrors
911 911
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;thomas*meiwing.com&gt;</FONT></TD>
912 912
 </TR>
913 913
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
914
-	<TT><A NAME="tex2html215"
914
+	<TT><A NAME="tex2html214"
915 915
   HREF="clamav.unix.su">clamav.unix.su</A></TT> </FONT></TD>
916 916
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 62.181.41.8 </FONT></TD>
917 917
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Russian Federation </FONT></TD>
... ...
@@ -934,7 +921,7 @@ Database mirrors
934 934
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Location </FONT></TD>
935 935
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Administrator</FONT></TD>
936 936
 </TR>
937
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html216"
937
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html215"
938 938
   HREF="clamav.mirror.pacific.net.au">clamav.mirror.pacific.net.au</A></TT> </FONT></TD>
939 939
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 61.8.0.16 </FONT></TD>
940 940
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Australia </FONT></TD>
... ...
@@ -947,7 +934,7 @@ Database mirrors
947 947
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mirror-team*pacific.net.au&gt;</FONT></TD>
948 948
 </TR>
949 949
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
950
-	<TT><A NAME="tex2html217"
950
+	<TT><A NAME="tex2html216"
951 951
   HREF="clamavdb.mirrors.net.ru">clamavdb.mirrors.net.ru</A></TT> </FONT></TD>
952 952
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 212.16.26.185 </FONT></TD>
953 953
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Russia </FONT></TD>
... ...
@@ -960,7 +947,7 @@ Database mirrors
960 960
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mirrors*mirrors.net.ru&gt;</FONT></TD>
961 961
 </TR>
962 962
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
963
-	<TT><A NAME="tex2html218"
963
+	<TT><A NAME="tex2html217"
964 964
   HREF="clamav.cbn.net.id">clamav.cbn.net.id</A></TT> </FONT></TD>
965 965
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 202.158.56.242 </FONT></TD>
966 966
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Indonesia </FONT></TD>
... ...
@@ -973,7 +960,7 @@ Database mirrors
973 973
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;riv*cbn.net.id&gt;</FONT></TD>
974 974
 </TR>
975 975
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
976
-	<TT><A NAME="tex2html219"
976
+	<TT><A NAME="tex2html218"
977 977
   HREF="clamav.forthnet.gr">clamav.forthnet.gr</A></TT> </FONT></TD>
978 978
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.92.150.194 </FONT></TD>
979 979
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Greece </FONT></TD>
... ...
@@ -986,7 +973,7 @@ Database mirrors
986 986
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;virus_admin*forthnet.gr&gt;</FONT></TD>
987 987
 </TR>
988 988
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
989
-	<TT><A NAME="tex2html220"
989
+	<TT><A NAME="tex2html219"
990 990
   HREF="fuxhausen.tiscali.de">fuxhausen.tiscali.de</A></TT> </FONT></TD>
991 991
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 62.26.160.3 </FONT></TD>
992 992
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -999,7 +986,7 @@ Database mirrors
999 999
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;elke.hahnen*de.tiscali.com&gt;</FONT></TD>
1000 1000
 </TR>
1001 1001
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1002
-	<TT><A NAME="tex2html221"
1002
+	<TT><A NAME="tex2html220"
1003 1003
   HREF="clamav.theshell.com">clamav.theshell.com</A></TT> </FONT></TD>
1004 1004
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 209.200.146.2 </FONT></TD>
1005 1005
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -1012,7 +999,7 @@ Database mirrors
1012 1012
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;pavalos*theshell.com&gt;</FONT></TD>
1013 1013
 </TR>
1014 1014
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1015
-	<TT><A NAME="tex2html222"
1015
+	<TT><A NAME="tex2html221"
1016 1016
   HREF="clamav.inode.at">clamav.inode.at</A></TT> </FONT></TD>
1017 1017
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 81.223.20.171 </FONT></TD>
1018 1018
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Austria </FONT></TD>
... ...
@@ -1025,7 +1012,7 @@ Database mirrors
1025 1025
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mirror*inode.at&gt;</FONT></TD>
1026 1026
 </TR>
1027 1027
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1028
-	<TT><A NAME="tex2html223"
1028
+	<TT><A NAME="tex2html222"
1029 1029
   HREF="clamav.cpss.edu.hk">clamav.cpss.edu.hk</A></TT> </FONT></TD>
1030 1030
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 218.189.210.14 </FONT></TD>
1031 1031
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Hong Kong </FONT></TD>
... ...
@@ -1038,7 +1025,7 @@ Database mirrors
1038 1038
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;puiwa*cpss.edu.hk&gt;</FONT></TD>
1039 1039
 </TR>
1040 1040
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1041
-	<TT><A NAME="tex2html224"
1041
+	<TT><A NAME="tex2html223"
1042 1042
   HREF="clamav.irontec.com">clamav.irontec.com</A></TT> </FONT></TD>
1043 1043
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 66.111.55.10 </FONT></TD>
1044 1044
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Tampa, </FONT></TD>
... ...
@@ -1051,7 +1038,7 @@ Database mirrors
1051 1051
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;iker*irontec.com&gt;</FONT></TD>
1052 1052
 </TR>
1053 1053
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1054
-	<TT><A NAME="tex2html225"
1054
+	<TT><A NAME="tex2html224"
1055 1055
   HREF="idea.sec.dico.unimi.it">idea.sec.dico.unimi.it</A></TT> </FONT></TD>
1056 1056
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 159.149.155.69 </FONT></TD>
1057 1057
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Italy </FONT></TD>
... ...
@@ -1064,7 +1051,7 @@ Database mirrors
1064 1064
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;lorenzo*cert-it.dico.unimi.it&gt;</FONT></TD>
1065 1065
 </TR>
1066 1066
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1067
-	<TT><A NAME="tex2html226"
1067
+	<TT><A NAME="tex2html225"
1068 1068
   HREF="clamav.cs.pu.edu.tw">clamav.cs.pu.edu.tw</A></TT> </FONT></TD>
1069 1069
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 140.128.9.18 </FONT></TD>
1070 1070
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Taiwan </FONT></TD>
... ...
@@ -1077,7 +1064,7 @@ Database mirrors
1077 1077
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;hcchang*cs.pu.edu.tw&gt;</FONT></TD>
1078 1078
 </TR>
1079 1079
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1080
-	<TT><A NAME="tex2html227"
1080
+	<TT><A NAME="tex2html226"
1081 1081
   HREF="clamav.skynet.cz">clamav.skynet.cz</A></TT> </FONT></TD>
1082 1082
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.165.254.12 </FONT></TD>
1083 1083
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Czech Republic </FONT></TD>
... ...
@@ -1090,7 +1077,7 @@ Database mirrors
1090 1090
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;jaroslav.jurasek*skynet.cz&gt;</FONT></TD>
1091 1091
 </TR>
1092 1092
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1093
-	<TT><A NAME="tex2html228"
1093
+	<TT><A NAME="tex2html227"
1094 1094
   HREF="clamav.ubak.gov.tr">clamav.ubak.gov.tr</A></TT> </FONT></TD>
1095 1095
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 212.174.131.2 </FONT></TD>
1096 1096
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Turkey </FONT></TD>
... ...
@@ -1103,7 +1090,7 @@ Database mirrors
1103 1103
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;erdinc*erdinc.info&gt;</FONT></TD>
1104 1104
 </TR>
1105 1105
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1106
-	<TT><A NAME="tex2html229"
1106
+	<TT><A NAME="tex2html228"
1107 1107
   HREF="clamav.ecualinux.com">clamav.ecualinux.com</A></TT> </FONT></TD>
1108 1108
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 66.111.57.40 </FONT></TD>
1109 1109
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Ecuador </FONT></TD>
... ...
@@ -1116,7 +1103,7 @@ Database mirrors
1116 1116
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;info*ecualinux.com&gt;</FONT></TD>
1117 1117
 </TR>
1118 1118
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1119
-	<TT><A NAME="tex2html230"
1119
+	<TT><A NAME="tex2html229"
1120 1120
   HREF="clamav.oc1.mirrors.redwire.net">clamav.oc1.mirrors.redwire.net</A></TT> </FONT></TD>
1121 1121
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 64.186.250.53 </FONT></TD>
1122 1122
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -1129,7 +1116,7 @@ Database mirrors
1129 1129
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mirror*redwire.net&gt;</FONT></TD>
1130 1130
 </TR>
1131 1131
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1132
-	<TT><A NAME="tex2html231"
1132
+	<TT><A NAME="tex2html230"
1133 1133
   HREF="clamav.edpnet.net">clamav.edpnet.net</A></TT> </FONT></TD>
1134 1134
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 212.71.0.71 </FONT></TD>
1135 1135
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Belgium </FONT></TD>
... ...
@@ -1139,11 +1126,11 @@ Database mirrors
1139 1139
 				</FONT></TD>
1140 1140
 <TD ALIGN="CENTER"><FONT SIZE="-1">	      </FONT></TD>
1141 1141
 <TD ALIGN="CENTER"><FONT SIZE="-1">		</FONT></TD>
1142
-<TD ALIGN="CENTER"><FONT SIZE="-1"> <TT><A NAME="tex2html232"
1142
+<TD ALIGN="CENTER"><FONT SIZE="-1"> <TT><A NAME="tex2html231"
1143 1143
   HREF="&lt;d.kerkhofs*edpnet.net&gt;">&lt;d.kerkhofs*edpnet.net&gt;</A></TT></FONT></TD>
1144 1144
 </TR>
1145 1145
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1146
-	<TT><A NAME="tex2html233"
1146
+	<TT><A NAME="tex2html232"
1147 1147
   HREF="clamav.edgescape.com">clamav.edgescape.com</A></TT> </FONT></TD>
1148 1148
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 67.19.5.178 </FONT></TD>
1149 1149
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -1153,11 +1140,11 @@ Database mirrors
1153 1153
 				   </FONT></TD>
1154 1154
 <TD ALIGN="CENTER"><FONT SIZE="-1">		 </FONT></TD>
1155 1155
 <TD ALIGN="CENTER"><FONT SIZE="-1">     </FONT></TD>
1156
-<TD ALIGN="CENTER"><FONT SIZE="-1"> <TT><A NAME="tex2html234"
1156
+<TD ALIGN="CENTER"><FONT SIZE="-1"> <TT><A NAME="tex2html233"
1157 1157
   HREF="&lt;timothy.folks*edgescape.com&gt;">&lt;timothy.folks*edgescape.com&gt;</A></TT></FONT></TD>
1158 1158
 </TR>
1159 1159
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1160
-	<TT><A NAME="tex2html235"
1160
+	<TT><A NAME="tex2html234"
1161 1161
   HREF="clamav.hanbiro.com">clamav.hanbiro.com</A></TT> </FONT></TD>
1162 1162
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 211.234.111.17 </FONT></TD>
1163 1163
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Korea </FONT></TD>
... ...
@@ -1170,7 +1157,7 @@ Database mirrors
1170 1170
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;master*hanbiro.com&gt;</FONT></TD>
1171 1171
 </TR>
1172 1172
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1173
-	<TT><A NAME="tex2html236"
1173
+	<TT><A NAME="tex2html235"
1174 1174
   HREF="clamav.vtu.lt">clamav.vtu.lt</A></TT> </FONT></TD>
1175 1175
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.219.149.170 </FONT></TD>
1176 1176
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Lithuania </FONT></TD>
... ...
@@ -1183,7 +1170,7 @@ Database mirrors
1183 1183
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ejs*ar.vtu.lt&gt;</FONT></TD>
1184 1184
 </TR>
1185 1185
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1186
-	<TT><A NAME="tex2html237"
1186
+	<TT><A NAME="tex2html236"
1187 1187
   HREF="clamav.ftpproxy.org">clamav.ftpproxy.org</A></TT> </FONT></TD>
1188 1188
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 195.246.234.199 </FONT></TD>
1189 1189
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1196,7 +1183,7 @@ Database mirrors
1196 1196
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;asg*ftpproxy.org&gt;</FONT></TD>
1197 1197
 </TR>
1198 1198
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1199
-	<TT><A NAME="tex2html238"
1199
+	<TT><A NAME="tex2html237"
1200 1200
   HREF="clamav.iasi.roedu.net">clamav.iasi.roedu.net</A></TT> </FONT></TD>
1201 1201
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 192.129.4.120 </FONT></TD>
1202 1202
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Romania </FONT></TD>
... ...
@@ -1209,7 +1196,7 @@ Database mirrors
1209 1209
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ftpadmin*iasi.roedu.net&gt;</FONT></TD>
1210 1210
 </TR>
1211 1211
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1212
-	<TT><A NAME="tex2html239"
1212
+	<TT><A NAME="tex2html238"
1213 1213
   HREF="clamav.infonet.ee">clamav.infonet.ee</A></TT> </FONT></TD>
1214 1214
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 212.7.0.71 </FONT></TD>
1215 1215
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Estonia </FONT></TD>
... ...
@@ -1222,7 +1209,7 @@ Database mirrors
1222 1222
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;sbr*infonet.ee&gt;</FONT></TD>
1223 1223
 </TR>
1224 1224
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1225
-	<TT><A NAME="tex2html240"
1225
+	<TT><A NAME="tex2html239"
1226 1226
   HREF="clamav.savework.de">clamav.savework.de</A></TT> </FONT></TD>
1227 1227
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 85.214.44.186 </FONT></TD>
1228 1228
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1245,7 +1232,7 @@ Database mirrors
1245 1245
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Location </FONT></TD>
1246 1246
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Administrator</FONT></TD>
1247 1247
 </TR>
1248
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html241"
1248
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html240"
1249 1249
   HREF="clamav.citrin.ru">clamav.citrin.ru</A></TT> </FONT></TD>
1250 1250
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.248.60.121 </FONT></TD>
1251 1251
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Russia </FONT></TD>
... ...
@@ -1258,7 +1245,7 @@ Database mirrors
1258 1258
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;citrin*citrin.ru&gt;</FONT></TD>
1259 1259
 </TR>
1260 1260
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1261
-	<TT><A NAME="tex2html242"
1261
+	<TT><A NAME="tex2html241"
1262 1262
   HREF="clamav.paralax.org">clamav.paralax.org</A></TT> </FONT></TD>
1263 1263
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 83.148.101.196 </FONT></TD>
1264 1264
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Bulgaria </FONT></TD>
... ...
@@ -1271,7 +1258,7 @@ Database mirrors
1271 1271
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;soho*paralax.org&gt;</FONT></TD>
1272 1272
 </TR>
1273 1273
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1274
-	<TT><A NAME="tex2html243"
1274
+	<TT><A NAME="tex2html242"
1275 1275
   HREF="clamav.linux.pt">clamav.linux.pt</A></TT> </FONT></TD>
1276 1276
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 194.65.79.153 </FONT></TD>
1277 1277
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Portugal </FONT></TD>
... ...
@@ -1284,7 +1271,7 @@ Database mirrors
1284 1284
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;japc*co.sapo.pt&gt;</FONT></TD>
1285 1285
 </TR>
1286 1286
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1287
-	<TT><A NAME="tex2html244"
1287
+	<TT><A NAME="tex2html243"
1288 1288
   HREF="clamav.liquidweb.com">clamav.liquidweb.com</A></TT> </FONT></TD>
1289 1289
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 209.59.139.38 </FONT></TD>
1290 1290
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -1297,7 +1284,7 @@ Database mirrors
1297 1297
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;scollins*liquidweb.com&gt;</FONT></TD>
1298 1298
 </TR>
1299 1299
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1300
-	<TT><A NAME="tex2html245"
1300
+	<TT><A NAME="tex2html244"
1301 1301
   HREF="clamav.xs4all.nl">clamav.xs4all.nl</A></TT> </FONT></TD>
1302 1302
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 194.109.6.74 </FONT></TD>
1303 1303
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Netherlands </FONT></TD>
... ...
@@ -1310,20 +1297,7 @@ Database mirrors
1310 1310
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ericv*xs4all.net&gt;</FONT></TD>
1311 1311
 </TR>
1312 1312
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1313
-        <TT><A NAME="tex2html246"
1314
-  HREF="clamav.pinna.cx">clamav.pinna.cx</A></TT> </FONT></TD>
1315
-<TD ALIGN="CENTER"><FONT SIZE="-1"> 69.57.154.46 </FONT></TD>
1316
-<TD ALIGN="CENTER"><FONT SIZE="-1"> Texas, </FONT></TD>
1317
-<TD ALIGN="CENTER"><FONT SIZE="-1"> Nicola Pinna</FONT></TD>
1318
-</TR>
1319
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1320
-			      </FONT></TD>
1321
-<TD ALIGN="CENTER"><FONT SIZE="-1">		     </FONT></TD>
1322
-<TD ALIGN="CENTER"><FONT SIZE="-1"> USA    </FONT></TD>
1323
-<TD ALIGN="CENTER"><FONT SIZE="-1">	&lt;pinna*pinna.cx&gt;</FONT></TD>
1324
-</TR>
1325
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1326
-	<TT><A NAME="tex2html247"
1313
+	<TT><A NAME="tex2html245"
1327 1314
   HREF="switch.clamav.net">switch.clamav.net</A></TT> </FONT></TD>
1328 1315
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 130.59.10.35 </FONT></TD>
1329 1316
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Switzerland </FONT></TD>
... ...
@@ -1336,7 +1310,7 @@ Database mirrors
1336 1336
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;lenggenhager*switch.ch&gt;</FONT></TD>
1337 1337
 </TR>
1338 1338
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1339
-	<TT><A NAME="tex2html248"
1339
+	<TT><A NAME="tex2html246"
1340 1340
   HREF="clamav.public-internet.co.uk">clamav.public-internet.co.uk</A></TT> </FONT></TD>
1341 1341
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 195.85.245.20 </FONT></TD>
1342 1342
 <TD ALIGN="CENTER"><FONT SIZE="-1"> London, </FONT></TD>
... ...
@@ -1349,7 +1323,7 @@ Database mirrors
1349 1349
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;tom.beard*public-internet.co.uk&gt;</FONT></TD>
1350 1350
 </TR>
1351 1351
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1352
-	<TT><A NAME="tex2html249"
1352
+	<TT><A NAME="tex2html247"
1353 1353
   HREF="clamav.mainloop.se">clamav.mainloop.se</A></TT> </FONT></TD>
1354 1354
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 192.71.58.30 </FONT></TD>
1355 1355
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Sweden </FONT></TD>
... ...
@@ -1362,7 +1336,7 @@ Database mirrors
1362 1362
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;thomas*mainloop.se&gt;</FONT></TD>
1363 1363
 </TR>
1364 1364
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1365
-	<TT><A NAME="tex2html250"
1365
+	<TT><A NAME="tex2html248"
1366 1366
   HREF="clamav.dc.hu">clamav.dc.hu</A></TT> </FONT></TD>
1367 1367
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 195.228.75.149 </FONT></TD>
1368 1368
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Hungary </FONT></TD>
... ...
@@ -1375,7 +1349,7 @@ Database mirrors
1375 1375
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;boldi*mail2004.crysys.hit.bme.hu&gt;</FONT></TD>
1376 1376
 </TR>
1377 1377
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1378
-	<TT><A NAME="tex2html251"
1378
+	<TT><A NAME="tex2html249"
1379 1379
   HREF="clamav.mirror.myebs.de">clamav.mirror.myebs.de</A></TT> </FONT></TD>
1380 1380
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.239.17.68 </FONT></TD>
1381 1381
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1388,7 +1362,7 @@ Database mirrors
1388 1388
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;thomas.schwanhaeuser*aps-web.de&gt;</FONT></TD>
1389 1389
 </TR>
1390 1390
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1391
-	<TT><A NAME="tex2html252"
1391
+	<TT><A NAME="tex2html250"
1392 1392
   HREF="clamav.s-lines.net">clamav.s-lines.net</A></TT> </FONT></TD>
1393 1393
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 61.205.61.201 </FONT></TD>
1394 1394
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Japan </FONT></TD>
... ...
@@ -1401,7 +1375,7 @@ Database mirrors
1401 1401
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;tatsuya*staff.s-lines.net&gt;</FONT></TD>
1402 1402
 </TR>
1403 1403
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1404
-	<TT><A NAME="tex2html253"
1404
+	<TT><A NAME="tex2html251"
1405 1405
   HREF="clamav.mcs.de">clamav.mcs.de</A></TT> </FONT></TD>
1406 1406
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 194.77.146.139 </FONT></TD>
1407 1407
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1414,7 +1388,7 @@ Database mirrors
1414 1414
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;christian.kuehn*mcs.de&gt;</FONT></TD>
1415 1415
 </TR>
1416 1416
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1417
-	<TT><A NAME="tex2html254"
1417
+	<TT><A NAME="tex2html252"
1418 1418
   HREF="clamav.mirror.fizzelpark.com">clamav.mirror.fizzelpark.com</A></TT> </FONT></TD>
1419 1419
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 85.25.252.58 </FONT></TD>
1420 1420
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1427,7 +1401,7 @@ Database mirrors
1427 1427
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;bangert*fizzelpark.com&gt;</FONT></TD>
1428 1428
 </TR>
1429 1429
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1430
-	<TT><A NAME="tex2html255"
1430
+	<TT><A NAME="tex2html253"
1431 1431
   HREF="clamav.talika.eii.us.es">clamav.talika.eii.us.es</A></TT> </FONT></TD>
1432 1432
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 150.214.142.249 </FONT></TD>
1433 1433
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Spain </FONT></TD>
... ...
@@ -1440,7 +1414,7 @@ Database mirrors
1440 1440
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;javier.miguel*talika.eii.us.es&gt;</FONT></TD>
1441 1441
 </TR>
1442 1442
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1443
-	<TT><A NAME="tex2html256"
1443
+	<TT><A NAME="tex2html254"
1444 1444
   HREF="clamav.nara.wide.ad.jp">clamav.nara.wide.ad.jp</A></TT> </FONT></TD>
1445 1445
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 203.178.137.175 </FONT></TD>
1446 1446
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Japan </FONT></TD>
... ...
@@ -1453,7 +1427,7 @@ Database mirrors
1453 1453
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ftp-admin*is.naist.jp&gt;</FONT></TD>
1454 1454
 </TR>
1455 1455
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1456
-	<TT><A NAME="tex2html257"
1456
+	<TT><A NAME="tex2html255"
1457 1457
   HREF="clamavdb.ml-club.jp">clamavdb.ml-club.jp</A></TT> </FONT></TD>
1458 1458
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 219.117.246.122 </FONT></TD>
1459 1459
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Japan </FONT></TD>
... ...
@@ -1466,7 +1440,7 @@ Database mirrors
1466 1466
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;morizono*coop.kadai.ne.jp&gt;</FONT></TD>
1467 1467
 </TR>
1468 1468
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1469
-	<TT><A NAME="tex2html258"
1469
+	<TT><A NAME="tex2html256"
1470 1470
   HREF="clamav.packetstorm.nu">clamav.packetstorm.nu</A></TT> </FONT></TD>
1471 1471
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.222.11.220 </FONT></TD>
1472 1472
 <TD ALIGN="CENTER"><FONT SIZE="-1"> The Netherlands </FONT></TD>
... ...
@@ -1479,7 +1453,7 @@ Database mirrors
1479 1479
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;niek*asbak.coding-slaves.com&gt;</FONT></TD>
1480 1480
 </TR>
1481 1481
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1482
-	<TT><A NAME="tex2html259"
1482
+	<TT><A NAME="tex2html257"
1483 1483
   HREF="clamav.mirror.garr.it">clamav.mirror.garr.it</A></TT> </FONT></TD>
1484 1484
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.206.139.37 </FONT></TD>
1485 1485
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Italy </FONT></TD>
... ...
@@ -1492,7 +1466,7 @@ Database mirrors
1492 1492
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mirror-service*garr.it&gt;</FONT></TD>
1493 1493
 </TR>
1494 1494
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1495
-	<TT><A NAME="tex2html260"
1495
+	<TT><A NAME="tex2html258"
1496 1496
   HREF="clamav.uoc.gr">clamav.uoc.gr</A></TT> </FONT></TD>
1497 1497
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 147.52.3.167 </FONT></TD>
1498 1498
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Greece </FONT></TD>
... ...
@@ -1505,7 +1479,7 @@ Database mirrors
1505 1505
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;kissand*ucnet.uoc.gr&gt;</FONT></TD>
1506 1506
 </TR>
1507 1507
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1508
-	<TT><A NAME="tex2html261"
1508
+	<TT><A NAME="tex2html259"
1509 1509
   HREF="clamav.wtnet.de">clamav.wtnet.de</A></TT> </FONT></TD>
1510 1510
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.209.100.191 </FONT></TD>
1511 1511
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1518,7 +1492,7 @@ Database mirrors
1518 1518
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;fabian*lug-norderstedt.de&gt;</FONT></TD>
1519 1519
 </TR>
1520 1520
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1521
-	<TT><A NAME="tex2html262"
1521
+	<TT><A NAME="tex2html260"
1522 1522
   HREF="clamav.df.lth.se">clamav.df.lth.se</A></TT> </FONT></TD>
1523 1523
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 194.47.250.218 </FONT></TD>
1524 1524
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Sweden </FONT></TD>
... ...
@@ -1531,7 +1505,7 @@ Database mirrors
1531 1531
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;rpa*df.lth.se&gt;</FONT></TD>
1532 1532
 </TR>
1533 1533
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1534
-	<TT><A NAME="tex2html263"
1534
+	<TT><A NAME="tex2html261"
1535 1535
   HREF="clamav.gueth.net">clamav.gueth.net</A></TT> </FONT></TD>
1536 1536
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 217.160.141.39 </FONT></TD>
1537 1537
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1554,7 +1528,7 @@ Database mirrors
1554 1554
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Location </FONT></TD>
1555 1555
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Administrator</FONT></TD>
1556 1556
 </TR>
1557
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html264"
1557
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html262"
1558 1558
   HREF="b.clamav.mirror.fizzelpark.com">b.clamav.mirror.fizzelpark.com</A></TT> </FONT></TD>
1559 1559
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 217.115.136.170 </FONT></TD>
1560 1560
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1567,7 +1541,7 @@ Database mirrors
1567 1567
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;bangert*fizzelpark.com&gt;</FONT></TD>
1568 1568
 </TR>
1569 1569
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1570
-	<TT><A NAME="tex2html265"
1570
+	<TT><A NAME="tex2html263"
1571 1571
   HREF="clamav.dg.net.ua">clamav.dg.net.ua</A></TT> </FONT></TD>
1572 1572
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.186.196.225 </FONT></TD>
1573 1573
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Ukraine </FONT></TD>
... ...
@@ -1580,7 +1554,7 @@ Database mirrors
1580 1580
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;clamavdb*dg.net.ua&gt;</FONT></TD>
1581 1581
 </TR>
1582 1582
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1583
-	<TT><A NAME="tex2html266"
1583
+	<TT><A NAME="tex2html264"
1584 1584
   HREF="clamav.i24horas.com.br">clamav.i24horas.com.br</A></TT> </FONT></TD>
1585 1585
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 200.242.49.19 </FONT></TD>
1586 1586
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Brazil </FONT></TD>
... ...
@@ -1593,7 +1567,7 @@ Database mirrors
1593 1593
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;renato-clamav*autoservico.com&gt;</FONT></TD>
1594 1594
 </TR>
1595 1595
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1596
-	<TT><A NAME="tex2html267"
1596
+	<TT><A NAME="tex2html265"
1597 1597
   HREF="clamav.gva.es">clamav.gva.es</A></TT> </FONT></TD>
1598 1598
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 82.159.137.16 </FONT></TD>
1599 1599
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Spain </FONT></TD>
... ...
@@ -1606,7 +1580,7 @@ Database mirrors
1606 1606
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;jamador*gva.es&gt;</FONT></TD>
1607 1607
 </TR>
1608 1608
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1609
-	<TT><A NAME="tex2html268"
1609
+	<TT><A NAME="tex2html266"
1610 1610
   HREF="clamav.industrium.ru">clamav.industrium.ru</A></TT> </FONT></TD>
1611 1611
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 83.222.15.190 </FONT></TD>
1612 1612
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Russia </FONT></TD>
... ...
@@ -1619,7 +1593,7 @@ Database mirrors
1619 1619
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;igor*shergin.ru&gt;</FONT></TD>
1620 1620
 </TR>
1621 1621
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1622
-	<TT><A NAME="tex2html269"
1622
+	<TT><A NAME="tex2html267"
1623 1623
   HREF="clamav.myriadnetwork.com">clamav.myriadnetwork.com</A></TT> </FONT></TD>
1624 1624
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 209.9.235.98 </FONT></TD>
1625 1625
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -1632,7 +1606,7 @@ Database mirrors
1632 1632
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;tomp*myriadnetwork.com&gt;</FONT></TD>
1633 1633
 </TR>
1634 1634
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1635
-	<TT><A NAME="tex2html270"
1635
+	<TT><A NAME="tex2html268"
1636 1636
   HREF="clamav.kazar.org">clamav.kazar.org</A></TT> </FONT></TD>
1637 1637
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.218.105.9 </FONT></TD>
1638 1638
 <TD ALIGN="CENTER"><FONT SIZE="-1"> France </FONT></TD>
... ...
@@ -1645,7 +1619,7 @@ Database mirrors
1645 1645
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;kiwi*kazar.org&gt;</FONT></TD>
1646 1646
 </TR>
1647 1647
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1648
-	<TT><A NAME="tex2html271"
1648
+	<TT><A NAME="tex2html269"
1649 1649
   HREF="clamav.lie-comtel.li">clamav.lie-comtel.li</A></TT> </FONT></TD>
1650 1650
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 217.173.238.34 </FONT></TD>
1651 1651
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Liechtenstein </FONT></TD>
... ...
@@ -1658,7 +1632,7 @@ Database mirrors
1658 1658
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;roland.guthauser*lie-comtel.li&gt;</FONT></TD>
1659 1659
 </TR>
1660 1660
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1661
-	<TT><A NAME="tex2html272"
1661
+	<TT><A NAME="tex2html270"
1662 1662
   HREF="ftp.ucr.ac.cr">ftp.ucr.ac.cr</A></TT> </FONT></TD>
1663 1663
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 163.178.101.17 </FONT></TD>
1664 1664
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Costa Rica </FONT></TD>
... ...
@@ -1671,7 +1645,7 @@ Database mirrors
1671 1671
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mguerra*ucr.ac.cr&gt;</FONT></TD>
1672 1672
 </TR>
1673 1673
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1674
-	<TT><A NAME="tex2html273"
1674
+	<TT><A NAME="tex2html271"
1675 1675
   HREF="clamav.iwasno.net">clamav.iwasno.net</A></TT> </FONT></TD>
1676 1676
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.9.78.42 </FONT></TD>
1677 1677
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1684,7 +1658,7 @@ Database mirrors
1684 1684
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;fossy*iwasno.net&gt;</FONT></TD>
1685 1685
 </TR>
1686 1686
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1687
-	<TT><A NAME="tex2html274"
1687
+	<TT><A NAME="tex2html272"
1688 1688
   HREF="clamav.ftp.genotec.ch">clamav.ftp.genotec.ch</A></TT> </FONT></TD>
1689 1689
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 82.195.234.73 </FONT></TD>
1690 1690
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Switzerland </FONT></TD>
... ...
@@ -1697,7 +1671,7 @@ Database mirrors
1697 1697
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;noc*genotec.ch&gt;</FONT></TD>
1698 1698
 </TR>
1699 1699
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1700
-	<TT><A NAME="tex2html275"
1700
+	<TT><A NAME="tex2html273"
1701 1701
   HREF="clamav.bkbhosting.com">clamav.bkbhosting.com</A></TT> </FONT></TD>
1702 1702
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 66.98.242.116 </FONT></TD>
1703 1703
 <TD ALIGN="CENTER"><FONT SIZE="-1"> US </FONT></TD>
... ...
@@ -1710,7 +1684,7 @@ Database mirrors
1710 1710
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;bball*bkb.net.au&gt;</FONT></TD>
1711 1711
 </TR>
1712 1712
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1713
-	<TT><A NAME="tex2html276"
1713
+	<TT><A NAME="tex2html274"
1714 1714
   HREF="clamavdb2.ml-club.jp">clamavdb2.ml-club.jp</A></TT> </FONT></TD>
1715 1715
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 203.212.42.128 </FONT></TD>
1716 1716
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Japan </FONT></TD>
... ...
@@ -1723,7 +1697,7 @@ Database mirrors
1723 1723
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;morizono at coop.kadai.ne.jp&gt;</FONT></TD>
1724 1724
 </TR>
1725 1725
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1726
-	<TT><A NAME="tex2html277"
1726
+	<TT><A NAME="tex2html275"
1727 1727
   HREF="clamav.maoke.de">clamav.maoke.de</A></TT> </FONT></TD>
1728 1728
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 62.75.188.79 </FONT></TD>
1729 1729
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1736,7 +1710,7 @@ Database mirrors
1736 1736
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;b.kopp*maoke.de&gt;</FONT></TD>
1737 1737
 </TR>
1738 1738
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1739
-	<TT><A NAME="tex2html278"
1739
+	<TT><A NAME="tex2html276"
1740 1740
   HREF="4most1.clamav.ialfa.net">4most1.clamav.ialfa.net</A></TT> </FONT></TD>
1741 1741
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 58.221.253.171 </FONT></TD>
1742 1742
 <TD ALIGN="CENTER"><FONT SIZE="-1"> People's Republic </FONT></TD>
... ...
@@ -1748,6 +1722,136 @@ Database mirrors
1748 1748
 <TD ALIGN="CENTER"><FONT SIZE="-1"> of China	   </FONT></TD>
1749 1749
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;alfa*ialfa.net&gt;</FONT></TD>
1750 1750
 </TR>
1751
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1752
+	<TT><A NAME="tex2html277"
1753
+  HREF="clamav.hostway.co.kr">clamav.hostway.co.kr</A></TT> </FONT></TD>
1754
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 211.239.150.206 </FONT></TD>
1755
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Korea </FONT></TD>
1756
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Hoon Kim</FONT></TD>
1757
+</TR>
1758
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1759
+				   </FONT></TD>
1760
+<TD ALIGN="CENTER"><FONT SIZE="-1">		     </FONT></TD>
1761
+<TD ALIGN="CENTER"><FONT SIZE="-1">	     </FONT></TD>
1762
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;hkim*hostway.co.kr&gt;</FONT></TD>
1763
+</TR>
1764
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1765
+	<TT><A NAME="tex2html278"
1766
+  HREF="clamav.doubleukay.com">clamav.doubleukay.com</A></TT> </FONT></TD>
1767
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 202.71.97.92 </FONT></TD>
1768
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Malaysia </FONT></TD>
1769
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Woon Wai Keen</FONT></TD>
1770
+</TR>
1771
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1772
+				    </FONT></TD>
1773
+<TD ALIGN="CENTER"><FONT SIZE="-1">		   </FONT></TD>
1774
+<TD ALIGN="CENTER"><FONT SIZE="-1">	      </FONT></TD>
1775
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;doubleukay*doubleukay.com&gt;</FONT></TD>
1776
+</TR>
1777
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1778
+	<TT><A NAME="tex2html279"
1779
+  HREF="clamav.archidiecezja.katowice.pl">clamav.archidiecezja.katowice.pl</A></TT> </FONT></TD>
1780
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 212.106.154.2 </FONT></TD>
1781
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Poland </FONT></TD>
1782
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Artur Klimek</FONT></TD>
1783
+</TR>
1784
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1785
+					       </FONT></TD>
1786
+<TD ALIGN="CENTER"><FONT SIZE="-1">	       </FONT></TD>
1787
+<TD ALIGN="CENTER"><FONT SIZE="-1">	</FONT></TD>
1788
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;artk*archidiecezja.katowice.pl&gt;</FONT></TD>
1789
+</TR>
1790
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1791
+	<TT><A NAME="tex2html280"
1792
+  HREF="clamav.dcux.com">clamav.dcux.com</A></TT> </FONT></TD>
1793
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 61.129.102.109 </FONT></TD>
1794
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Shanghai, </FONT></TD>
1795
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Chun Xin Lee</FONT></TD>
1796
+</TR>
1797
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1798
+			      </FONT></TD>
1799
+<TD ALIGN="CENTER"><FONT SIZE="-1">		       </FONT></TD>
1800
+<TD ALIGN="CENTER"><FONT SIZE="-1"> China	   </FONT></TD>
1801
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;chunxin*osslab.org&gt;</FONT></TD>
1802
+</TR>
1803
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1804
+	<TT><A NAME="tex2html281"
1805
+  HREF="clamav.mirror.racksense.com">clamav.mirror.racksense.com</A></TT> </FONT></TD>
1806
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 194.145.196.13 </FONT></TD>
1807
+<TD ALIGN="CENTER"><FONT SIZE="-1"> United Kingdom </FONT></TD>
1808
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Paul Civati</FONT></TD>
1809
+</TR>
1810
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1811
+					  </FONT></TD>
1812
+<TD ALIGN="CENTER"><FONT SIZE="-1">		   </FONT></TD>
1813
+<TD ALIGN="CENTER"><FONT SIZE="-1">		    </FONT></TD>
1814
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mirror*racksense.com&gt;</FONT></TD>
1815
+</TR>
1816
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1817
+	<TT><A NAME="tex2html282"
1818
+  HREF="linkfirew.uncg.edu">linkfirew.uncg.edu</A></TT> </FONT></TD>
1819
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 152.13.144.243 </FONT></TD>
1820
+<TD ALIGN="CENTER"><FONT SIZE="-1"> US </FONT></TD>
1821
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Vijay Sarvepalli</FONT></TD>
1822
+</TR>
1823
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1824
+				 </FONT></TD>
1825
+<TD ALIGN="CENTER"><FONT SIZE="-1">		  </FONT></TD>
1826
+<TD ALIGN="CENTER"><FONT SIZE="-1">    </FONT></TD>
1827
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;vssarvepat*uncg.edu&gt;</FONT></TD>
1828
+</TR>
1829
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1830
+	<TT><A NAME="tex2html283"
1831
+  HREF="db.ezhik.org.ru">db.ezhik.org.ru</A></TT> </FONT></TD>
1832
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 217.147.29.149 </FONT></TD>
1833
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Russia </FONT></TD>
1834
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Syrnikov Alexei</FONT></TD>
1835
+</TR>
1836
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1837
+			      </FONT></TD>
1838
+<TD ALIGN="CENTER"><FONT SIZE="-1">		       </FONT></TD>
1839
+<TD ALIGN="CENTER"><FONT SIZE="-1">	</FONT></TD>
1840
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;san*ezhik.org.ru&gt;</FONT></TD>
1841
+</TR>
1842
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1843
+	<TT><A NAME="tex2html284"
1844
+  HREF="clamav.codefrog.dk">clamav.codefrog.dk</A></TT> </FONT></TD>
1845
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 82.103.132.91 </FONT></TD>
1846
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Denmark </FONT></TD>
1847
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Lasse Brandt</FONT></TD>
1848
+</TR>
1849
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1850
+				 </FONT></TD>
1851
+<TD ALIGN="CENTER"><FONT SIZE="-1">		 </FONT></TD>
1852
+<TD ALIGN="CENTER"><FONT SIZE="-1">	   </FONT></TD>
1853
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;lasse*codefrog.dk&gt;</FONT></TD>
1854
+</TR>
1855
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1856
+	<TT><A NAME="tex2html285"
1857
+  HREF="clamav.lmta.lt">clamav.lmta.lt</A></TT> </FONT></TD>
1858
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 193.219.48.134 </FONT></TD>
1859
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Lithuania </FONT></TD>
1860
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Rimas Kudelis</FONT></TD>
1861
+</TR>
1862
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1863
+			     </FONT></TD>
1864
+<TD ALIGN="CENTER"><FONT SIZE="-1">		      </FONT></TD>
1865
+<TD ALIGN="CENTER"><FONT SIZE="-1">		  </FONT></TD>
1866
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;clamavdb*lmta.lt&gt;</FONT></TD>
1867
+</TR>
1868
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1869
+	<TT><A NAME="tex2html286"
1870
+  HREF="clamav.teleservice.net">clamav.teleservice.net</A></TT> </FONT></TD>
1871
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 85.30.129.18 </FONT></TD>
1872
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Sweden </FONT></TD>
1873
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Philip Olsson</FONT></TD>
1874
+</TR>
1875
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1876
+				     </FONT></TD>
1877
+<TD ALIGN="CENTER"><FONT SIZE="-1">		    </FONT></TD>
1878
+<TD ALIGN="CENTER"><FONT SIZE="-1">	     </FONT></TD>
1879
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;philip*teleservice.net&gt;</FONT></TD>
1880
+</TR>
1751 1881
 </TABLE>
1752 1882
     
1753 1883
 </DIV>
... ...
@@ -1755,31 +1859,31 @@ Database mirrors
1755 1755
 <P>
1756 1756
 <HR>
1757 1757
 <!--Navigation Panel-->
1758
-<A NAME="tex2html2667"
1758
+<A NAME="tex2html2679"
1759 1759
   HREF="node157.html">
1760 1760
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
1761
-<A NAME="tex2html2663"
1761
+<A NAME="tex2html2675"
1762 1762
   HREF="node155.html">
1763 1763
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
1764
-<A NAME="tex2html2657"
1764
+<A NAME="tex2html2669"
1765 1765
   HREF="node155.html">
1766 1766
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
1767
-<A NAME="tex2html2665"
1767
+<A NAME="tex2html2677"
1768 1768
   HREF="node1.html">
1769 1769
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
1770 1770
 <BR>
1771
-<B> Next:</B> <A NAME="tex2html2668"
1771
+<B> Next:</B> <A NAME="tex2html2680"
1772 1772
   HREF="node157.html">Contributors</A>
1773
-<B> Up:</B> <A NAME="tex2html2664"
1773
+<B> Up:</B> <A NAME="tex2html2676"
1774 1774
   HREF="node155.html">Credits</A>
1775
-<B> Previous:</B> <A NAME="tex2html2658"
1775
+<B> Previous:</B> <A NAME="tex2html2670"
1776 1776
   HREF="node155.html">Credits</A>
1777
- &nbsp <B>  <A NAME="tex2html2666"
1777
+ &nbsp <B>  <A NAME="tex2html2678"
1778 1778
   HREF="node1.html">Contents</A></B> 
1779 1779
 <!--End of Navigation Panel-->
1780 1780
 <ADDRESS>
1781 1781
 Tomasz Kojm
1782
-2006-07-01
1782
+2006-10-15
1783 1783
 </ADDRESS>
1784 1784
 </BODY>
1785 1785
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2679"
30
+<A NAME="tex2html2691"
31 31
   HREF="node158.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2675"
33
+<A NAME="tex2html2687"
34 34
   HREF="node155.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2669"
36
+<A NAME="tex2html2681"
37 37
   HREF="node156.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2677"
39
+<A NAME="tex2html2689"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2680"
43
+<B> Next:</B> <A NAME="tex2html2692"
44 44
   HREF="node158.html">Donors</A>
45
-<B> Up:</B> <A NAME="tex2html2676"
45
+<B> Up:</B> <A NAME="tex2html2688"
46 46
   HREF="node155.html">Credits</A>
47
-<B> Previous:</B> <A NAME="tex2html2670"
47
+<B> Previous:</B> <A NAME="tex2html2682"
48 48
   HREF="node156.html">Database mirrors</A>
49
- &nbsp <B>  <A NAME="tex2html2678"
49
+ &nbsp <B>  <A NAME="tex2html2690"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -335,7 +335,7 @@ Contributors</A>
335 335
 </LI>
336 336
 <LI>Alexander Marx &lt;mad-ml*madness.at&gt;
337 337
 </LI>
338
-<LI>Andreas Marx (<TT><A NAME="tex2html279"
338
+<LI>Andreas Marx (<TT><A NAME="tex2html287"
339 339
   HREF="http://www.av-test.org/">http://www.av-test.org/</A></TT>)
340 340
 </LI>
341 341
 <LI>Chris Masters &lt;cmasters*insl.co.uk&gt;
... ...
@@ -386,7 +386,7 @@ Contributors</A>
386 386
 </LI>
387 387
 <LI>Simon Munton &lt;simon*munton.demon.co.uk&gt;
388 388
 </LI>
389
-<LI>Farit Nabiullin <TT><A NAME="tex2html280"
389
+<LI>Farit Nabiullin <TT><A NAME="tex2html288"
390 390
   HREF="http://program.farit.ru/">http://program.farit.ru/</A></TT>
391 391
 </LI>
392 392
 <LI>Nemosoft Unv. &lt;nemosoft*smcc.demon.nl&gt;
... ...
@@ -411,7 +411,7 @@ Contributors</A>
411 411
 </LI>
412 412
 <LI>Martijn van Oosterhout &lt;kleptog*svana.org&gt;
413 413
 </LI>
414
-<LI>OpenAntiVirus Team (<TT><A NAME="tex2html281"
414
+<LI>OpenAntiVirus Team (<TT><A NAME="tex2html289"
415 415
   HREF="http://www.OpenAntiVirus.org/">http://www.OpenAntiVirus.org/</A></TT>)
416 416
 </LI>
417 417
 <LI>Tomasz Papszun &lt;tomek*lodz.tpsa.pl&gt;
... ...
@@ -575,31 +575,31 @@ Contributors</A>
575 575
 <P>
576 576
 <HR>
577 577
 <!--Navigation Panel-->
578
-<A NAME="tex2html2679"
578
+<A NAME="tex2html2691"
579 579
   HREF="node158.html">
580 580
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
581
-<A NAME="tex2html2675"
581
+<A NAME="tex2html2687"
582 582
   HREF="node155.html">
583 583
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
584
-<A NAME="tex2html2669"
584
+<A NAME="tex2html2681"
585 585
   HREF="node156.html">
586 586
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
587
-<A NAME="tex2html2677"
587
+<A NAME="tex2html2689"
588 588
   HREF="node1.html">
589 589
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
590 590
 <BR>
591
-<B> Next:</B> <A NAME="tex2html2680"
591
+<B> Next:</B> <A NAME="tex2html2692"
592 592
   HREF="node158.html">Donors</A>
593
-<B> Up:</B> <A NAME="tex2html2676"
593
+<B> Up:</B> <A NAME="tex2html2688"
594 594
   HREF="node155.html">Credits</A>
595
-<B> Previous:</B> <A NAME="tex2html2670"
595
+<B> Previous:</B> <A NAME="tex2html2682"
596 596
   HREF="node156.html">Database mirrors</A>
597
- &nbsp <B>  <A NAME="tex2html2678"
597
+ &nbsp <B>  <A NAME="tex2html2690"
598 598
   HREF="node1.html">Contents</A></B> 
599 599
 <!--End of Navigation Panel-->
600 600
 <ADDRESS>
601 601
 Tomasz Kojm
602
-2006-07-01
602
+2006-10-15
603 603
 </ADDRESS>
604 604
 </BODY>
605 605
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2691"
30
+<A NAME="tex2html2703"
31 31
   HREF="node159.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2687"
33
+<A NAME="tex2html2699"
34 34
   HREF="node155.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2681"
36
+<A NAME="tex2html2693"
37 37
   HREF="node157.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2689"
39
+<A NAME="tex2html2701"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2692"
43
+<B> Next:</B> <A NAME="tex2html2704"
44 44
   HREF="node159.html">Graphics</A>
45
-<B> Up:</B> <A NAME="tex2html2688"
45
+<B> Up:</B> <A NAME="tex2html2700"
46 46
   HREF="node155.html">Credits</A>
47
-<B> Previous:</B> <A NAME="tex2html2682"
47
+<B> Previous:</B> <A NAME="tex2html2694"
48 48
   HREF="node157.html">Contributors</A>
49
- &nbsp <B>  <A NAME="tex2html2690"
49
+ &nbsp <B>  <A NAME="tex2html2702"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -58,33 +58,42 @@ 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="tex2html282"
61
+<LI>ActiveIntra.net Inc. (<TT><A NAME="tex2html290"
62 62
   HREF="http://www.activeintra.net/">http://www.activeintra.net/</A></TT>)
63 63
 </LI>
64
-<LI>Advance Healthcare Group (<TT><A NAME="tex2html283"
64
+<LI>Advance Healthcare Group (<TT><A NAME="tex2html291"
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="tex2html284"
67
+<LI>Allied Quotes (<TT><A NAME="tex2html292"
68
+  HREF="http://www.AlliedQuotes.com /">http://www.AlliedQuotes.com /</A></TT>)
69
+</LI>
70
+<LI>American Computer &amp; Electronic Services Corp. (<TT><A NAME="tex2html293"
68 71
   HREF="http://www.acesnw.com/">http://www.acesnw.com/</A></TT>)
69 72
 </LI>
70 73
 <LI>Steve Anderson
71 74
 </LI>
72 75
 <LI>Anonymous donor from Colorado, US
73 76
 </LI>
77
+<LI>Arudius (<TT><A NAME="tex2html294"
78
+  HREF="http://arudius.sourceforge.net/">http://arudius.sourceforge.net/</A></TT>)
79
+</LI>
74 80
 <LI>Peter Ashman
75 81
 </LI>
76
-<LI>Atlas College (<TT><A NAME="tex2html285"
82
+<LI>Atlas College (<TT><A NAME="tex2html295"
77 83
   HREF="http://www.atlascollege.nl/">http://www.atlascollege.nl/</A></TT>)
78 84
 </LI>
79
-<LI>AWD Online (<TT><A NAME="tex2html286"
85
+<LI>Australian Payday Cash Loans (<TT><A NAME="tex2html296"
86
+  HREF="http://www.cashdoctors.com.au/">http://www.cashdoctors.com.au/</A></TT>)
87
+</LI>
88
+<LI>AWD Online (<TT><A NAME="tex2html297"
80 89
   HREF="http://www.awdonline.com/">http://www.awdonline.com/</A></TT>)
81 90
 </LI>
82
-<LI>BackupAssist Backup Software (<TT><A NAME="tex2html287"
91
+<LI>BackupAssist Backup Software (<TT><A NAME="tex2html298"
83 92
   HREF="http://www.backupassist.com/">http://www.backupassist.com/</A></TT>)
84 93
 </LI>
85 94
 <LI>Dave Baker
86 95
 </LI>
87
-<LI>Bear and Bear Consulting, Inc. (<TT><A NAME="tex2html288"
96
+<LI>Bear and Bear Consulting, Inc. (<TT><A NAME="tex2html299"
88 97
   HREF="http://www.bear-consulting.com/">http://www.bear-consulting.com/</A></TT>)
89 98
 </LI>
90 99
 <LI>Aaron Begley
... ...
@@ -93,46 +102,50 @@ Donors</A>
93 93
 </LI>
94 94
 <LI>Norman E. Brake, Jr.
95 95
 </LI>
96
-<LI>By Design (<TT><A NAME="tex2html289"
96
+<LI>Josh Burstyn
97
+</LI>
98
+<LI>By Design (<TT><A NAME="tex2html300"
97 99
   HREF="http://www.by-design.net/">http://www.by-design.net/</A></TT>)
98 100
 </LI>
99
-<LI>Canadian Web Hosting (<TT><A NAME="tex2html290"
101
+<LI>Canadian Web Hosting (<TT><A NAME="tex2html301"
100 102
   HREF="http://www.canadianwebhosting.com/">http://www.canadianwebhosting.com/</A></TT>)
101 103
 </LI>
102
-<LI>cedarcreeksoftware.com (<TT><A NAME="tex2html291"
104
+<LI>cedarcreeksoftware.com (<TT><A NAME="tex2html302"
103 105
   HREF="http://www.cedarcreeksoftware.com/">http://www.cedarcreeksoftware.com/</A></TT>)
104 106
 </LI>
107
+<LI>Ricardo Cerqueira
108
+</LI>
105 109
 <LI>Thanos Chatziathanassiou
106 110
 </LI>
107 111
 <LI>Cheahch from Singapore
108 112
 </LI>
109
-<LI>Conexim Australia - business web hosting (<TT><A NAME="tex2html292"
113
+<LI>Conexim Australia - business web hosting (<TT><A NAME="tex2html303"
110 114
   HREF="http://www.conexim.com.au">http://www.conexim.com.au</A></TT>)
111 115
 </LI>
112 116
 <LI>Alan Cook
113 117
 </LI>
114 118
 <LI>Joe Cooper
115 119
 </LI>
116
-<LI>CustomLogic LLC (<TT><A NAME="tex2html293"
120
+<LI>CustomLogic LLC (<TT><A NAME="tex2html304"
117 121
   HREF="http://www.customlogic.com/">http://www.customlogic.com/</A></TT>)
118 122
 </LI>
119 123
 <LI>Ron DeFulio
120 124
 </LI>
121
-<LI>Digirati (<TT><A NAME="tex2html294"
125
+<LI>Digirati (<TT><A NAME="tex2html305"
122 126
   HREF="http://oss.digirati.com.br/">http://oss.digirati.com.br/</A></TT>)
123 127
 </LI>
124
-<LI>Steve Donegan (<TT><A NAME="tex2html295"
128
+<LI>Steve Donegan (<TT><A NAME="tex2html306"
125 129
   HREF="http://www.donegan.org/">http://www.donegan.org/</A></TT>)
126 130
 </LI>
127
-<LI>Dynamic Network Services, Inc (<TT><A NAME="tex2html296"
131
+<LI>Dynamic Network Services, Inc (<TT><A NAME="tex2html307"
128 132
   HREF="http://www.dyndns.org/">http://www.dyndns.org/</A></TT>)
129 133
 </LI>
130 134
 <LI>EAS Enterprises LLC
131 135
 </LI>
132
-<LI>eCoupons.com (<TT><A NAME="tex2html297"
136
+<LI>eCoupons.com (<TT><A NAME="tex2html308"
133 137
   HREF="http://www.ecoupons.com/">http://www.ecoupons.com/</A></TT>)
134 138
 </LI>
135
-<LI>Electric Embers (<TT><A NAME="tex2html298"
139
+<LI>Electric Embers (<TT><A NAME="tex2html309"
136 140
   HREF="http://electricembers.net">http://electricembers.net</A></TT>)
137 141
 </LI>
138 142
 <LI>John T. Ellis
... ...
@@ -141,25 +154,25 @@ Donors</A>
141 141
 </LI>
142 142
 <LI>Bernhard Erdmann
143 143
 </LI>
144
-<LI>David Eriksson (<TT><A NAME="tex2html299"
144
+<LI>David Eriksson (<TT><A NAME="tex2html310"
145 145
   HREF="http://www.2good.nu/">http://www.2good.nu/</A></TT>)
146 146
 </LI>
147 147
 <LI>Philip Ershler
148 148
 </LI>
149
-<LI>Explido Software USA Inc. (<TT><A NAME="tex2html300"
149
+<LI>Explido Software USA Inc. (<TT><A NAME="tex2html311"
150 150
   HREF="http://www.explido.us/">http://www.explido.us/</A></TT>)
151 151
 </LI>
152 152
 <LI>David Farrick
153 153
 </LI>
154 154
 <LI>Jim Feldman
155 155
 </LI>
156
-<LI>Petr Ferschmann (<TT><A NAME="tex2html301"
156
+<LI>Petr Ferschmann (<TT><A NAME="tex2html312"
157 157
   HREF="http://petr.ferschmann.cz/">http://petr.ferschmann.cz/</A></TT>)
158 158
 </LI>
159
-<LI>Andries Filmer (<TT><A NAME="tex2html302"
159
+<LI>Andries Filmer (<TT><A NAME="tex2html313"
160 160
   HREF="http://www.netexpo.nl/">http://www.netexpo.nl/</A></TT>)
161 161
 </LI>
162
-<LI>The Free Shopping Cart people (<TT><A NAME="tex2html303"
162
+<LI>The Free Shopping Cart people (<TT><A NAME="tex2html314"
163 163
   HREF="http://www.precisionweb.net/">http://www.precisionweb.net/</A></TT>)
164 164
 </LI>
165 165
 <LI>Paul Freeman
... ...
@@ -170,49 +183,53 @@ Donors</A>
170 170
 </LI>
171 171
 <LI>Paolo Galeazzi
172 172
 </LI>
173
-<LI>GANDI (<TT><A NAME="tex2html304"
173
+<LI>GANDI (<TT><A NAME="tex2html315"
174 174
   HREF="http://www.gandi.net/">http://www.gandi.net/</A></TT>)
175 175
 </LI>
176
-<LI>Jeremy Garcia (<TT><A NAME="tex2html305"
176
+<LI>Jeremy Garcia (<TT><A NAME="tex2html316"
177 177
   HREF="http://www.linuxquestions.org/">http://www.linuxquestions.org/</A></TT>)
178 178
 </LI>
179
-<LI>GBC Internet Service Center GmbH (<TT><A NAME="tex2html306"
179
+<LI>GBC Internet Service Center GmbH (<TT><A NAME="tex2html317"
180 180
   HREF="http://www.gbc.net/">http://www.gbc.net/</A></TT>)
181 181
 </LI>
182
-<LI>GCS Tech (<TT><A NAME="tex2html307"
182
+<LI>GCS Tech (<TT><A NAME="tex2html318"
183 183
   HREF="http://www.gcstech.net/">http://www.gcstech.net/</A></TT>)
184 184
 </LI>
185
-<LI>GHRS (<TT><A NAME="tex2html308"
185
+<LI>GHRS (<TT><A NAME="tex2html319"
186 186
   HREF="http://www.ghrshotels.com/">http://www.ghrshotels.com/</A></TT>)
187 187
 </LI>
188
+<LI>Lyle Giese
189
+</LI>
188 190
 <LI>Todd Goodman
189 191
 </LI>
190
-<LI>Bill Gradwohl (<TT><A NAME="tex2html309"
192
+<LI>Bill Gradwohl (<TT><A NAME="tex2html320"
191 193
   HREF="http://www.ycc.com/">http://www.ycc.com/</A></TT>)
192 194
 </LI>
193 195
 <LI>Grain-of-Salt Consulting
194 196
 </LI>
195 197
 <LI>Terje Gravvold
196 198
 </LI>
197
-<LI>Hart Computer (<TT><A NAME="tex2html310"
199
+<LI>Hart Computer (<TT><A NAME="tex2html321"
198 200
   HREF="http://www.hart.co.jp/">http://www.hart.co.jp/</A></TT>)
199 201
 </LI>
200
-<LI>Hosting Metro LLC (<TT><A NAME="tex2html311"
202
+<LI>Pen Helm
203
+</LI>
204
+<LI>Hosting Metro LLC (<TT><A NAME="tex2html322"
201 205
   HREF="http://www.hostingmetro.com/">http://www.hostingmetro.com/</A></TT>)
202 206
 </LI>
203
-<LI>IDEAL Software GmbH (<TT><A NAME="tex2html312"
207
+<LI>IDEAL Software GmbH (<TT><A NAME="tex2html323"
204 208
   HREF="http://www.IdealSoftware.com/">http://www.IdealSoftware.com/</A></TT>)
205 209
 </LI>
206
-<LI>Industry Standard Computers (<TT><A NAME="tex2html313"
210
+<LI>Industry Standard Computers (<TT><A NAME="tex2html324"
207 211
   HREF="http://www.ISCnetwork.com/">http://www.ISCnetwork.com/</A></TT>)
208 212
 </LI>
209
-<LI>Interact2Day (<TT><A NAME="tex2html314"
213
+<LI>Interact2Day (<TT><A NAME="tex2html325"
210 214
   HREF="http://www.interact2day.com/">http://www.interact2day.com/</A></TT>)
211 215
 </LI>
212
-<LI>Invisik Corporation (<TT><A NAME="tex2html315"
216
+<LI>Invisik Corporation (<TT><A NAME="tex2html326"
213 217
   HREF="http://www.invisik.com/">http://www.invisik.com/</A></TT>)
214 218
 </LI>
215
-<LI>itXcel Internet - Domain Registration (<TT><A NAME="tex2html316"
219
+<LI>itXcel Internet - Domain Registration (<TT><A NAME="tex2html327"
216 220
   HREF="http://www.itxcel.com">http://www.itxcel.com</A></TT>)
217 221
 </LI>
218 222
 <LI>Craig Jackson
... ...
@@ -221,36 +238,39 @@ Donors</A>
221 221
 </LI>
222 222
 <LI>Jason Judge
223 223
 </LI>
224
-<LI>Keith (<TT><A NAME="tex2html317"
224
+<LI>Keith (<TT><A NAME="tex2html328"
225 225
   HREF="http://www.textpad.com/">http://www.textpad.com/</A></TT>)
226 226
 </LI>
227
-<LI>Ewald Kicker (<TT><A NAME="tex2html318"
227
+<LI>Ewald Kicker (<TT><A NAME="tex2html329"
228 228
   HREF="http://www.very-clever.com/">http://www.very-clever.com/</A></TT>)
229 229
 </LI>
230 230
 <LI>Brad Koehn
231 231
 </LI>
232
-<LI>Christina Kuratli (<TT><A NAME="tex2html319"
232
+<LI>Christina Kuratli (<TT><A NAME="tex2html330"
233 233
   HREF="http://www.virusprotect.ch/">http://www.virusprotect.ch/</A></TT>)
234 234
 </LI>
235
-<LI>Logic Partners Inc. (<TT><A NAME="tex2html320"
235
+<LI>Logic Partners Inc. (<TT><A NAME="tex2html331"
236 236
   HREF="http://www.logicpartners.com/">http://www.logicpartners.com/</A></TT>)
237 237
 </LI>
238
-<LI>Mark Lotspaih (<TT><A NAME="tex2html321"
238
+<LI>Mark Lotspaih (<TT><A NAME="tex2html332"
239 239
   HREF="http://www.lotcom.org/">http://www.lotcom.org/</A></TT>)
240 240
 </LI>
241
-<LI>Michel Machado (<TT><A NAME="tex2html322"
241
+<LI>Michel Machado (<TT><A NAME="tex2html333"
242 242
   HREF="http://oss.digirati.com.br/">http://oss.digirati.com.br/</A></TT>)
243 243
 </LI>
244 244
 <LI>Olivier Marechal
245 245
 </LI>
246 246
 <LI>Matthew McKenzie
247 247
 </LI>
248
-<LI>Micro Logic Systems (<TT><A NAME="tex2html323"
248
+<LI>Durval Menezes (<TT><A NAME="tex2html334"
249
+  HREF="http://www.durval.com.br/">http://www.durval.com.br/</A></TT>)
250
+</LI>
251
+<LI>Micro Logic Systems (<TT><A NAME="tex2html335"
249 252
   HREF="http://www.mls.nc/">http://www.mls.nc/</A></TT>)
250 253
 </LI>
251 254
 <LI>Midcoast Internet Solutions
252 255
 </LI>
253
-<LI>Mimecast (<TT><A NAME="tex2html324"
256
+<LI>Mimecast (<TT><A NAME="tex2html336"
254 257
   HREF="http://www.mimecast.com/">http://www.mimecast.com/</A></TT>)
255 258
 </LI>
256 259
 <LI>Kazuhiro Miyaji
... ...
@@ -261,145 +281,145 @@ Donors</A>
261 261
 </LI>
262 262
 <LI>Tomas Morkus
263 263
 </LI>
264
-<LI>The Names Database (<TT><A NAME="tex2html325"
264
+<LI>The Names Database (<TT><A NAME="tex2html337"
265 265
   HREF="http://static.namesdatabase.com">http://static.namesdatabase.com</A></TT>)
266 266
 </LI>
267
-<LI>Names Directory (<TT><A NAME="tex2html326"
267
+<LI>Names Directory (<TT><A NAME="tex2html338"
268 268
   HREF="http://www.namesdir.com/">http://www.namesdir.com/</A></TT>)
269 269
 </LI>
270
-<LI>Michael Nolan (<TT><A NAME="tex2html327"
270
+<LI>Michael Nolan (<TT><A NAME="tex2html339"
271 271
   HREF="http://www.michaelnolan.co.uk/">http://www.michaelnolan.co.uk/</A></TT>)
272 272
 </LI>
273 273
 <LI>Jorgen Norgaard
274 274
 </LI>
275
-<LI>Numedeon, Inc. creators of Whyville (<TT><A NAME="tex2html328"
275
+<LI>Numedeon, Inc. creators of Whyville (<TT><A NAME="tex2html340"
276 276
   HREF="http://www.whyville.net/">http://www.whyville.net/</A></TT>)
277 277
 </LI>
278
-<LI>Oneworkspace.com (<TT><A NAME="tex2html329"
278
+<LI>Oneworkspace.com (<TT><A NAME="tex2html341"
279 279
   HREF="http://www.oneworkspace.com/">http://www.oneworkspace.com/</A></TT>)
280 280
 </LI>
281
-<LI>Online Literature (<TT><A NAME="tex2html330"
281
+<LI>Online Literature (<TT><A NAME="tex2html342"
282 282
   HREF="http://www.couol.com/">http://www.couol.com/</A></TT>)
283 283
 </LI>
284
-<LI>Origin Solutions (<TT><A NAME="tex2html331"
284
+<LI>Origin Solutions (<TT><A NAME="tex2html343"
285 285
   HREF="http://www.originsolutions.com.au/">http://www.originsolutions.com.au/</A></TT>)
286 286
 </LI>
287
-<LI>outermedia GmbH (<TT><A NAME="tex2html332"
287
+<LI>outermedia GmbH (<TT><A NAME="tex2html344"
288 288
   HREF="http://www.outermedia.de/">http://www.outermedia.de/</A></TT>)
289 289
 </LI>
290
-<LI>Kevin Pang (<TT><A NAME="tex2html333"
290
+<LI>Kevin Pang (<TT><A NAME="tex2html345"
291 291
   HREF="http://www.freebsdblog.org/">http://www.freebsdblog.org/</A></TT>)
292 292
 </LI>
293 293
 <LI>Alexander Panzhin
294 294
 </LI>
295
-<LI>Passageway Communications (<TT><A NAME="tex2html334"
295
+<LI>Passageway Communications (<TT><A NAME="tex2html346"
296 296
   HREF="http://www.passageway.com">http://www.passageway.com</A></TT>)
297 297
 </LI>
298
-<LI>Dan Pelleg (<TT><A NAME="tex2html335"
298
+<LI>Dan Pelleg (<TT><A NAME="tex2html347"
299 299
   HREF="http://www.libagent.org/">http://www.libagent.org/</A></TT>)
300 300
 </LI>
301 301
 <LI>Thodoris Pitikaris
302 302
 </LI>
303 303
 <LI>Paul Rantin
304 304
 </LI>
305
-<LI>Thomas J. Raef (<TT><A NAME="tex2html336"
305
+<LI>Thomas J. Raef (<TT><A NAME="tex2html348"
306 306
   HREF="http://www.ebasedsecurity.com">http://www.ebasedsecurity.com</A></TT>)
307 307
 </LI>
308
-<LI>Luke Reeves (<TT><A NAME="tex2html337"
308
+<LI>Luke Reeves (<TT><A NAME="tex2html349"
309 309
   HREF="http://www.neuro-tech.net/">http://www.neuro-tech.net/</A></TT>)
310 310
 </LI>
311
-<LI>RHX (<TT><A NAME="tex2html338"
311
+<LI>RHX (<TT><A NAME="tex2html350"
312 312
   HREF="http://www.rhx.it/">http://www.rhx.it/</A></TT>)
313 313
 </LI>
314 314
 <LI>Stefano Rizzetto
315 315
 </LI>
316
-<LI>Roaring Penguin Software Inc. (<TT><A NAME="tex2html339"
316
+<LI>Roaring Penguin Software Inc. (<TT><A NAME="tex2html351"
317 317
   HREF="http://www.roaringpenguin.com/">http://www.roaringpenguin.com/</A></TT>)
318 318
 </LI>
319 319
 <LI>Luke Rosenthal
320 320
 </LI>
321

                
321

                
322 322
   HREF="http://PokerListings.com">http://PokerListings.com</A></TT>)
323 323
 </LI>
324
-<LI>School of Engineering, University of Pennsylvania (<TT><A NAME="tex2html341"
324
+<LI>School of Engineering, University of Pennsylvania (<TT><A NAME="tex2html353"
325 325
   HREF="http://www.seas.upenn.edu/">http://www.seas.upenn.edu/</A></TT>)
326 326
 </LI>
327 327
 <LI>Tim Scoff
328 328
 </LI>
329
-<LI>Seattle Server (<TT><A NAME="tex2html342"
329
+<LI>Seattle Server (<TT><A NAME="tex2html354"
330 330
   HREF="http://www.seattleserver.com/">http://www.seattleserver.com/</A></TT>)
331 331
 </LI>
332
-<LI>Software Workshop Inc (<TT><A NAME="tex2html343"
332
+<LI>Software Workshop Inc (<TT><A NAME="tex2html355"
333 333
   HREF="http://www.softwareworkshop.com/">http://www.softwareworkshop.com/</A></TT>)
334 334
 </LI>
335
-<LI>Solutions In A Box (<TT><A NAME="tex2html344"
335
+<LI>Solutions In A Box (<TT><A NAME="tex2html356"
336 336
   HREF="http://www.siab.com.au/">http://www.siab.com.au/</A></TT>)
337 337
 </LI>
338 338
 <LI>Stephane Rault
339 339
 </LI>
340
-<LI>SearchMain (<TT><A NAME="tex2html345"
340
+<LI>SearchMain (<TT><A NAME="tex2html357"
341 341
   HREF="http://www.searchmain.com/">http://www.searchmain.com/</A></TT>)
342 342
 </LI>
343 343
 <LI>Olivier Silber
344 344
 </LI>
345
-<LI>Fernando Augusto Medeiros Silva (<TT><A NAME="tex2html346"
345
+<LI>Fernando Augusto Medeiros Silva (<TT><A NAME="tex2html358"
346 346
   HREF="http://www.linuxplace.com.br/">http://www.linuxplace.com.br/</A></TT>)
347 347
 </LI>
348
-<LI>Sollentuna Fria Gymnasium, Sweden (<TT><A NAME="tex2html347"
348
+<LI>Sollentuna Fria Gymnasium, Sweden (<TT><A NAME="tex2html359"
349 349
   HREF="http://www.sfg.se/">http://www.sfg.se/</A></TT>)
350 350
 </LI>
351
-<LI>StarBand (<TT><A NAME="tex2html348"
351
+<LI>StarBand (<TT><A NAME="tex2html360"
352 352
   HREF="http://www.starband.com/">http://www.starband.com/</A></TT>)
353 353
 </LI>
354 354
 <LI>Stroke of Color, Inc.
355 355
 </LI>
356
-<LI>Synchro Sistemas de Informacao (<TT><A NAME="tex2html349"
356
+<LI>Synchro Sistemas de Informacao (<TT><A NAME="tex2html361"
357 357
   HREF="http://synchro.com.br/">http://synchro.com.br/</A></TT>)
358 358
 </LI>
359 359
 <LI>Sahil Tandon
360 360
 </LI>
361
-<LI>The Spamex Disposable Email Address Service (<TT><A NAME="tex2html350"
361
+<LI>The Spamex Disposable Email Address Service (<TT><A NAME="tex2html362"
362 362
   HREF="http://www.spamex.com">http://www.spamex.com</A></TT>)
363 363
 </LI>
364 364
 <LI>Brad Tarver
365 365
 </LI>
366
-<LI>TGT Tampermeier &amp; Grill Steuerberatungs- und Wirtschaftstreuhand OEG (<TT><A NAME="tex2html351"
366
+<LI>TGT Tampermeier &amp; Grill Steuerberatungs- und Wirtschaftstreuhand OEG (<TT><A NAME="tex2html363"
367 367
   HREF="http://www.tgt.at/">http://www.tgt.at/</A></TT>)
368 368
 </LI>
369 369
 <LI>Per Reedtz Thomsen
370 370
 </LI>
371 371
 <LI>William Tisdale
372 372
 </LI>
373
-<LI>Up Time Technology (<TT><A NAME="tex2html352"
373
+<LI>Up Time Technology (<TT><A NAME="tex2html364"
374 374
   HREF="http://www.uptimetech.com/">http://www.uptimetech.com/</A></TT>)
375 375
 </LI>
376 376
 <LI>Ulfi
377 377
 </LI>
378
-<LI>Jeremy Vanderburg (<TT><A NAME="tex2html353"
378
+<LI>Jeremy Vanderburg (<TT><A NAME="tex2html365"
379 379
   HREF="http://www.jeremytech.com/">http://www.jeremytech.com/</A></TT>)
380 380
 </LI>
381
-<LI>Web.arbyte - Online-Marketing (<TT><A NAME="tex2html354"
381
+<LI>Web.arbyte - Online-Marketing (<TT><A NAME="tex2html366"
382 382
   HREF="http://www.webarbyte.de/">http://www.webarbyte.de/</A></TT>)
383 383
 </LI>
384
-<LI>Webzone Srl (<TT><A NAME="tex2html355"
384
+<LI>Webzone Srl (<TT><A NAME="tex2html367"
385 385
   HREF="http://www.webzone.it/">http://www.webzone.it/</A></TT>)
386 386
 </LI>
387
-<LI>Markus Welsch (<TT><A NAME="tex2html356"
387
+<LI>Markus Welsch (<TT><A NAME="tex2html368"
388 388
   HREF="http://www.linux-corner.net/">http://www.linux-corner.net/</A></TT>)
389 389
 </LI>
390
-<LI>Julia White (<TT><A NAME="tex2html357"
390
+<LI>Julia White (<TT><A NAME="tex2html369"
391 391
   HREF="http://www.convert-tools.com/">http://www.convert-tools.com/</A></TT>)
392 392
 </LI>
393 393
 <LI>Nicklaus Wicker
394 394
 </LI>
395
-<LI>David Williams (<TT><A NAME="tex2html358"
395
+<LI>David Williams (<TT><A NAME="tex2html370"
396 396
   HREF="http://kayakero.net/">http://kayakero.net/</A></TT>)
397 397
 </LI>
398 398
 <LI>Glenn R Williams
399 399
 </LI>
400 400
 <LI>Kelly Williams
401 401
 </LI>
402
-<LI>Zimbra open-source collaboration suite (<TT><A NAME="tex2html359"
402
+<LI>Zimbra open-source collaboration suite (<TT><A NAME="tex2html371"
403 403
   HREF="http://www.zimbra.com/">http://www.zimbra.com/</A></TT>)
404 404
     
405 405
 </LI>
... ...
@@ -408,31 +428,31 @@ Donors</A>
408 408
 <P>
409 409
 <HR>
410 410
 <!--Navigation Panel-->
411
-<A NAME="tex2html2691"
411
+<A NAME="tex2html2703"
412 412
   HREF="node159.html">
413 413
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
414
-<A NAME="tex2html2687"
414
+<A NAME="tex2html2699"
415 415
   HREF="node155.html">
416 416
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
417
-<A NAME="tex2html2681"
417
+<A NAME="tex2html2693"
418 418
   HREF="node157.html">
419 419
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
420
-<A NAME="tex2html2689"
420
+<A NAME="tex2html2701"
421 421
   HREF="node1.html">
422 422
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
423 423
 <BR>
424
-<B> Next:</B> <A NAME="tex2html2692"
424
+<B> Next:</B> <A NAME="tex2html2704"
425 425
   HREF="node159.html">Graphics</A>
426
-<B> Up:</B> <A NAME="tex2html2688"
426
+<B> Up:</B> <A NAME="tex2html2700"
427 427
   HREF="node155.html">Credits</A>
428
-<B> Previous:</B> <A NAME="tex2html2682"
428
+<B> Previous:</B> <A NAME="tex2html2694"
429 429
   HREF="node157.html">Contributors</A>
430
- &nbsp <B>  <A NAME="tex2html2690"
430
+ &nbsp <B>  <A NAME="tex2html2702"
431 431
   HREF="node1.html">Contents</A></B> 
432 432
 <!--End of Navigation Panel-->
433 433
 <ADDRESS>
434 434
 Tomasz Kojm
435
-2006-07-01
435
+2006-10-15
436 436
 </ADDRESS>
437 437
 </BODY>
438 438
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2703"
30
+<A NAME="tex2html2715"
31 31
   HREF="node160.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2699"
33
+<A NAME="tex2html2711"
34 34
   HREF="node155.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2693"
36
+<A NAME="tex2html2705"
37 37
   HREF="node158.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2701"
39
+<A NAME="tex2html2713"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2704"
43
+<B> Next:</B> <A NAME="tex2html2716"
44 44
   HREF="node160.html">OpenAntiVirus</A>
45
-<B> Up:</B> <A NAME="tex2html2700"
45
+<B> Up:</B> <A NAME="tex2html2712"
46 46
   HREF="node155.html">Credits</A>
47
-<B> Previous:</B> <A NAME="tex2html2694"
47
+<B> Previous:</B> <A NAME="tex2html2706"
48 48
   HREF="node158.html">Donors</A>
49
- &nbsp <B>  <A NAME="tex2html2702"
49
+ &nbsp <B>  <A NAME="tex2html2714"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -56,13 +56,13 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
56 56
 Graphics</A>
57 57
 </H2>
58 58
     The authors of the nice ClamAV logo (look at the title page) and other
59
-    graphics are Mia Kalenius and Sergei Pronin &lt;sp*finndesign.fi&gt;    from Finndesign <TT><A NAME="tex2html360"
59
+    graphics are Mia Kalenius and Sergei Pronin &lt;sp*finndesign.fi&gt;    from Finndesign <TT><A NAME="tex2html372"
60 60
   HREF="http://www.finndesign.fi/">http://www.finndesign.fi/</A></TT>
61 61
 <P>
62 62
 <BR><HR>
63 63
 <ADDRESS>
64 64
 Tomasz Kojm
65
-2006-07-01
65
+2006-10-15
66 66
 </ADDRESS>
67 67
 </BODY>
68 68
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html770"
30
+<A NAME="tex2html782"
31 31
   HREF="node17.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html766"
33
+<A NAME="tex2html778"
34 34
   HREF="clamdoc.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html760"
36
+<A NAME="tex2html772"
37 37
   HREF="node15.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html768"
39
+<A NAME="tex2html780"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html771"
43
+<B> Next:</B> <A NAME="tex2html783"
44 44
   HREF="node17.html">clamd</A>
45
-<B> Up:</B> <A NAME="tex2html767"
45
+<B> Up:</B> <A NAME="tex2html779"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html761"
47
+<B> Previous:</B> <A NAME="tex2html773"
48 48
   HREF="node15.html">Compilation with clamav-milter enabled</A>
49
- &nbsp <B>  <A NAME="tex2html769"
49
+ &nbsp <B>  <A NAME="tex2html781"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,26 +62,26 @@ Configuration</A>
62 62
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
63 63
 
64 64
 <UL>
65
-<LI><A NAME="tex2html772"
65
+<LI><A NAME="tex2html784"
66 66
   HREF="node17.html">clamd</A>
67 67
 <UL>
68
-<LI><A NAME="tex2html773"
68
+<LI><A NAME="tex2html785"
69 69
   HREF="node18.html">On-access scanning</A>
70 70
 </UL>
71
-<LI><A NAME="tex2html774"
71
+<LI><A NAME="tex2html786"
72 72
   HREF="node19.html">clamav-milter</A>
73
-<LI><A NAME="tex2html775"
73
+<LI><A NAME="tex2html787"
74 74
   HREF="node20.html">Testing</A>
75
-<LI><A NAME="tex2html776"
75
+<LI><A NAME="tex2html788"
76 76
   HREF="node21.html">Setting up auto-updating</A>
77
-<LI><A NAME="tex2html777"
77
+<LI><A NAME="tex2html789"
78 78
   HREF="node22.html">Closest mirrors</A>
79 79
 </UL>
80 80
 <!--End of Table of Child-Links-->
81 81
 <BR><HR>
82 82
 <ADDRESS>
83 83
 Tomasz Kojm
84
-2006-07-01
84
+2006-10-15
85 85
 </ADDRESS>
86 86
 </BODY>
87 87
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html2713"
29
+<A NAME="tex2html2725"
30 30
   HREF="node161.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html2709"
32
+<A NAME="tex2html2721"
33 33
   HREF="node155.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html2705"
35
+<A NAME="tex2html2717"
36 36
   HREF="node159.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html2711"
38
+<A NAME="tex2html2723"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html2714"
42
+<B> Next:</B> <A NAME="tex2html2726"
43 43
   HREF="node161.html">Authors</A>
44
-<B> Up:</B> <A NAME="tex2html2710"
44
+<B> Up:</B> <A NAME="tex2html2722"
45 45
   HREF="node155.html">Credits</A>
46
-<B> Previous:</B> <A NAME="tex2html2706"
46
+<B> Previous:</B> <A NAME="tex2html2718"
47 47
   HREF="node159.html">Graphics</A>
48
- &nbsp <B>  <A NAME="tex2html2712"
48
+ &nbsp <B>  <A NAME="tex2html2724"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -55,13 +55,13 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
55 55
 OpenAntiVirus</A>
56 56
 </H2>
57 57
     Our database includes the virus database (about 7000 signatures) from
58
-<BR>    <TT><A NAME="tex2html361"
58
+<BR>    <TT><A NAME="tex2html373"
59 59
   HREF="http://OpenAntiVirus.org">http://OpenAntiVirus.org</A></TT>
60 60
 <P>
61 61
 <BR><HR>
62 62
 <ADDRESS>
63 63
 Tomasz Kojm
64
-2006-07-01
64
+2006-10-15
65 65
 </ADDRESS>
66 66
 </BODY>
67 67
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2725"
30
+<A NAME="tex2html2737"
31 31
   HREF="node162.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2721"
33
+<A NAME="tex2html2733"
34 34
   HREF="clamdoc.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2715"
36
+<A NAME="tex2html2727"
37 37
   HREF="node160.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2723"
39
+<A NAME="tex2html2735"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2726"
43
+<B> Next:</B> <A NAME="tex2html2738"
44 44
   HREF="node162.html">About this document ...</A>
45
-<B> Up:</B> <A NAME="tex2html2722"
45
+<B> Up:</B> <A NAME="tex2html2734"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html2716"
47
+<B> Previous:</B> <A NAME="tex2html2728"
48 48
   HREF="node160.html">OpenAntiVirus</A>
49
- &nbsp <B>  <A NAME="tex2html2724"
49
+ &nbsp <B>  <A NAME="tex2html2736"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -67,7 +67,7 @@ Role: virus database maintainer, coder
67 67
 </LI>
68 68
 <LI>Boguslaw Brandys &lt;bbrandys*clamav.net&gt;, Poland
69 69
 <BR>
70
-Role: Win32 development
70
+Role: temporarily inactive
71 71
 
72 72
 <P>
73 73
 </LI>
... ...
@@ -115,19 +115,19 @@ Role: virus database maintainer
115 115
 </LI>
116 116
 <LI>Tomasz Kojm &lt;tkojm*clamav.net&gt;, Poland
117 117
 <BR>
118
-Role: project leader, coder, virus database maintainer
118
+Role: project leader, coder
119 119
 
120 120
 <P>
121 121
 </LI>
122 122
 <LI>Thomas Lamy &lt;tlamy*clamav.net&gt;, Germany
123 123
 <BR>
124
-Role: random hacker
124
+Role: inactive
125 125
 
126 126
 <P>
127 127
 </LI>
128 128
 <LI>Thomas Madsen &lt;tmadsen*clamav.net&gt;, Denmark
129 129
 <BR>
130
-Role: virus submission management
130
+Role: inactive
131 131
 
132 132
 <P>
133 133
 </LI>
... ...
@@ -139,26 +139,32 @@ Role: inactive
139 139
 </LI>
140 140
 <LI>Tomasz Papszun &lt;tomek*clamav.net&gt;, Poland
141 141
 <BR>
142
-Role: virus database maintainer
142
+Role: various help
143 143
 
144 144
 <P>
145 145
 </LI>
146 146
 <LI>Sven Strickroth &lt;sven*clamav.net&gt;, Germany
147 147
 <BR>
148
-Role: virus database maintainer
148
+Role: virus database maintainer, virus submission management
149
+
150
+<P>
151
+</LI>
152
+<LI>Edvin Torok &lt;edwin*clamav.net&gt;, Romania
153
+<BR>
154
+Role: coder
149 155
 
150 156
 <P>
151 157
 </LI>
152 158
 <LI>Trog &lt;trog*clamav.net&gt;, United Kingdom
153 159
 <BR>
154
-Role: coder, virus database maintainer
160
+Role: coder
155 161
     
156 162
 </LI>
157 163
 </UL>
158 164
 <BR><HR>
159 165
 <ADDRESS>
160 166
 Tomasz Kojm
161
-2006-07-01
167
+2006-10-15
162 168
 </ADDRESS>
163 169
 </BODY>
164 170
 </HTML>
... ...
@@ -26,21 +26,21 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 <BODY >
27 27
 <!--Navigation Panel-->
28 28
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next_g.png"> 
29
-<A NAME="tex2html2731"
29
+<A NAME="tex2html2743"
30 30
   HREF="clamdoc.html">
31 31
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
32
-<A NAME="tex2html2727"
32
+<A NAME="tex2html2739"
33 33
   HREF="node161.html">
34 34
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
35
-<A NAME="tex2html2733"
35
+<A NAME="tex2html2745"
36 36
   HREF="node1.html">
37 37
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
38 38
 <BR>
39
-<B> Up:</B> <A NAME="tex2html2732"
39
+<B> Up:</B> <A NAME="tex2html2744"
40 40
   HREF="clamdoc.html">clamdoc</A>
41
-<B> Previous:</B> <A NAME="tex2html2728"
41
+<B> Previous:</B> <A NAME="tex2html2740"
42 42
   HREF="node161.html">Authors</A>
43
- &nbsp <B>  <A NAME="tex2html2734"
43
+ &nbsp <B>  <A NAME="tex2html2746"
44 44
   HREF="node1.html">Contents</A></B> 
45 45
 <BR>
46 46
 <BR>
... ...
@@ -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 2006-07-01
67
+The translation was initiated by Tomasz Kojm on 2006-10-15
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html788"
30
+<A NAME="tex2html800"
31 31
   HREF="node18.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html784"
33
+<A NAME="tex2html796"
34 34
   HREF="node16.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html778"
36
+<A NAME="tex2html790"
37 37
   HREF="node16.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html786"
39
+<A NAME="tex2html798"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html789"
43
+<B> Next:</B> <A NAME="tex2html801"
44 44
   HREF="node18.html">On-access scanning</A>
45
-<B> Up:</B> <A NAME="tex2html785"
45
+<B> Up:</B> <A NAME="tex2html797"
46 46
   HREF="node16.html">Configuration</A>
47
-<B> Previous:</B> <A NAME="tex2html779"
47
+<B> Previous:</B> <A NAME="tex2html791"
48 48
   HREF="node16.html">Configuration</A>
49
- &nbsp <B>  <A NAME="tex2html787"
49
+ &nbsp <B>  <A NAME="tex2html799"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -72,14 +72,14 @@ clamd</A>
72 72
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
73 73
 
74 74
 <UL>
75
-<LI><A NAME="tex2html790"
75
+<LI><A NAME="tex2html802"
76 76
   HREF="node18.html">On-access scanning</A>
77 77
 </UL>
78 78
 <!--End of Table of Child-Links-->
79 79
 <BR><HR>
80 80
 <ADDRESS>
81 81
 Tomasz Kojm
82
-2006-07-01
82
+2006-10-15
83 83
 </ADDRESS>
84 84
 </BODY>
85 85
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html799"
29
+<A NAME="tex2html811"
30 30
   HREF="node19.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html795"
32
+<A NAME="tex2html807"
33 33
   HREF="node17.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html791"
35
+<A NAME="tex2html803"
36 36
   HREF="node17.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html797"
38
+<A NAME="tex2html809"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html800"
42
+<B> Next:</B> <A NAME="tex2html812"
43 43
   HREF="node19.html">clamav-milter</A>
44
-<B> Up:</B> <A NAME="tex2html796"
44
+<B> Up:</B> <A NAME="tex2html808"
45 45
   HREF="node17.html">clamd</A>
46
-<B> Previous:</B> <A NAME="tex2html792"
46
+<B> Previous:</B> <A NAME="tex2html804"
47 47
   HREF="node17.html">clamd</A>
48
- &nbsp <B>  <A NAME="tex2html798"
48
+ &nbsp <B>  <A NAME="tex2html810"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -91,7 +91,7 @@ On-access scanning</A>
91 91
 <BR><HR>
92 92
 <ADDRESS>
93 93
 Tomasz Kojm
94
-2006-07-01
94
+2006-10-15
95 95
 </ADDRESS>
96 96
 </BODY>
97 97
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html811"
30
+<A NAME="tex2html823"
31 31
   HREF="node20.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html807"
33
+<A NAME="tex2html819"
34 34
   HREF="node16.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html801"
36
+<A NAME="tex2html813"
37 37
   HREF="node18.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html809"
39
+<A NAME="tex2html821"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html812"
43
+<B> Next:</B> <A NAME="tex2html824"
44 44
   HREF="node20.html">Testing</A>
45
-<B> Up:</B> <A NAME="tex2html808"
45
+<B> Up:</B> <A NAME="tex2html820"
46 46
   HREF="node16.html">Configuration</A>
47
-<B> Previous:</B> <A NAME="tex2html802"
47
+<B> Previous:</B> <A NAME="tex2html814"
48 48
   HREF="node18.html">On-access scanning</A>
49
- &nbsp <B>  <A NAME="tex2html810"
49
+ &nbsp <B>  <A NAME="tex2html822"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -81,7 +81,7 @@ define(`confINPUT_MAIL_FILTERS', `clmilter')
81 81
 <BR><HR>
82 82
 <ADDRESS>
83 83
 Tomasz Kojm
84
-2006-07-01
84
+2006-10-15
85 85
 </ADDRESS>
86 86
 </BODY>
87 87
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html597"
30
+<A NAME="tex2html609"
31 31
   HREF="node3.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html593"
33
+<A NAME="tex2html605"
34 34
   HREF="clamdoc.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html587"
36
+<A NAME="tex2html599"
37 37
   HREF="node1.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html595"
39
+<A NAME="tex2html607"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html598"
43
+<B> Next:</B> <A NAME="tex2html610"
44 44
   HREF="node3.html">Features</A>
45
-<B> Up:</B> <A NAME="tex2html594"
45
+<B> Up:</B> <A NAME="tex2html606"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html588"
47
+<B> Previous:</B> <A NAME="tex2html600"
48 48
   HREF="node1.html">Contents</A>
49
- &nbsp <B>  <A NAME="tex2html596"
49
+ &nbsp <B>  <A NAME="tex2html608"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -69,18 +69,18 @@ Clam AntiVirus is an anti-virus toolkit for UNIX, designed for e-mail
69 69
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
70 70
 
71 71
 <UL>
72
-<LI><A NAME="tex2html599"
72
+<LI><A NAME="tex2html611"
73 73
   HREF="node3.html">Features</A>
74
-<LI><A NAME="tex2html600"
74
+<LI><A NAME="tex2html612"
75 75
   HREF="node4.html">Mailing lists</A>
76
-<LI><A NAME="tex2html601"
76
+<LI><A NAME="tex2html613"
77 77
   HREF="node5.html">Virus submitting</A>
78 78
 </UL>
79 79
 <!--End of Table of Child-Links-->
80 80
 <BR><HR>
81 81
 <ADDRESS>
82 82
 Tomasz Kojm
83
-2006-07-01
83
+2006-10-15
84 84
 </ADDRESS>
85 85
 </BODY>
86 86
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html823"
30
+<A NAME="tex2html835"
31 31
   HREF="node21.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html819"
33
+<A NAME="tex2html831"
34 34
   HREF="node16.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html813"
36
+<A NAME="tex2html825"
37 37
   HREF="node19.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html821"
39
+<A NAME="tex2html833"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html824"
43
+<B> Next:</B> <A NAME="tex2html836"
44 44
   HREF="node21.html">Setting up auto-updating</A>
45
-<B> Up:</B> <A NAME="tex2html820"
45
+<B> Up:</B> <A NAME="tex2html832"
46 46
   HREF="node16.html">Configuration</A>
47
-<B> Previous:</B> <A NAME="tex2html814"
47
+<B> Previous:</B> <A NAME="tex2html826"
48 48
   HREF="node19.html">clamav-milter</A>
49
- &nbsp <B>  <A NAME="tex2html822"
49
+ &nbsp <B>  <A NAME="tex2html834"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -75,7 +75,7 @@ Testing</A>
75 75
 <BR><HR>
76 76
 <ADDRESS>
77 77
 Tomasz Kojm
78
-2006-07-01
78
+2006-10-15
79 79
 </ADDRESS>
80 80
 </BODY>
81 81
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html835"
30
+<A NAME="tex2html847"
31 31
   HREF="node22.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html831"
33
+<A NAME="tex2html843"
34 34
   HREF="node16.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html825"
36
+<A NAME="tex2html837"
37 37
   HREF="node20.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html833"
39
+<A NAME="tex2html845"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html836"
43
+<B> Next:</B> <A NAME="tex2html848"
44 44
   HREF="node22.html">Closest mirrors</A>
45
-<B> Up:</B> <A NAME="tex2html832"
45
+<B> Up:</B> <A NAME="tex2html844"
46 46
   HREF="node16.html">Configuration</A>
47
-<B> Previous:</B> <A NAME="tex2html826"
47
+<B> Previous:</B> <A NAME="tex2html838"
48 48
   HREF="node20.html">Testing</A>
49
- &nbsp <B>  <A NAME="tex2html834"
49
+ &nbsp <B>  <A NAME="tex2html846"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -109,31 +109,31 @@ N * * * *	/usr/local/bin/freshclam --quiet
109 109
 <P>
110 110
 <HR>
111 111
 <!--Navigation Panel-->
112
-<A NAME="tex2html835"
112
+<A NAME="tex2html847"
113 113
   HREF="node22.html">
114 114
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
115
-<A NAME="tex2html831"
115
+<A NAME="tex2html843"
116 116
   HREF="node16.html">
117 117
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
118
-<A NAME="tex2html825"
118
+<A NAME="tex2html837"
119 119
   HREF="node20.html">
120 120
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
121
-<A NAME="tex2html833"
121
+<A NAME="tex2html845"
122 122
   HREF="node1.html">
123 123
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
124 124
 <BR>
125
-<B> Next:</B> <A NAME="tex2html836"
125
+<B> Next:</B> <A NAME="tex2html848"
126 126
   HREF="node22.html">Closest mirrors</A>
127
-<B> Up:</B> <A NAME="tex2html832"
127
+<B> Up:</B> <A NAME="tex2html844"
128 128
   HREF="node16.html">Configuration</A>
129
-<B> Previous:</B> <A NAME="tex2html826"
129
+<B> Previous:</B> <A NAME="tex2html838"
130 130
   HREF="node20.html">Testing</A>
131
- &nbsp <B>  <A NAME="tex2html834"
131
+ &nbsp <B>  <A NAME="tex2html846"
132 132
   HREF="node1.html">Contents</A></B> 
133 133
 <!--End of Navigation Panel-->
134 134
 <ADDRESS>
135 135
 Tomasz Kojm
136
-2006-07-01
136
+2006-10-15
137 137
 </ADDRESS>
138 138
 </BODY>
139 139
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html845"
29
+<A NAME="tex2html857"
30 30
   HREF="node23.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html841"
32
+<A NAME="tex2html853"
33 33
   HREF="node16.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html837"
35
+<A NAME="tex2html849"
36 36
   HREF="node21.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html843"
38
+<A NAME="tex2html855"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html846"
42
+<B> Next:</B> <A NAME="tex2html858"
43 43
   HREF="node23.html">Usage</A>
44
-<B> Up:</B> <A NAME="tex2html842"
44
+<B> Up:</B> <A NAME="tex2html854"
45 45
   HREF="node16.html">Configuration</A>
46
-<B> Previous:</B> <A NAME="tex2html838"
46
+<B> Previous:</B> <A NAME="tex2html850"
47 47
   HREF="node21.html">Setting up auto-updating</A>
48
- &nbsp <B>  <A NAME="tex2html844"
48
+ &nbsp <B>  <A NAME="tex2html856"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -77,7 +77,7 @@ Closest mirrors</A>
77 77
 <BR><HR>
78 78
 <ADDRESS>
79 79
 Tomasz Kojm
80
-2006-07-01
80
+2006-10-15
81 81
 </ADDRESS>
82 82
 </BODY>
83 83
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html857"
30
+<A NAME="tex2html869"
31 31
   HREF="node24.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html853"
33
+<A NAME="tex2html865"
34 34
   HREF="clamdoc.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html847"
36
+<A NAME="tex2html859"
37 37
   HREF="node22.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html855"
39
+<A NAME="tex2html867"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html858"
43
+<B> Next:</B> <A NAME="tex2html870"
44 44
   HREF="node24.html">Clam daemon</A>
45
-<B> Up:</B> <A NAME="tex2html854"
45
+<B> Up:</B> <A NAME="tex2html866"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html848"
47
+<B> Previous:</B> <A NAME="tex2html860"
48 48
   HREF="node22.html">Closest mirrors</A>
49
- &nbsp <B>  <A NAME="tex2html856"
49
+ &nbsp <B>  <A NAME="tex2html868"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,25 +62,25 @@ Usage</A>
62 62
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
63 63
 
64 64
 <UL>
65
-<LI><A NAME="tex2html859"
65
+<LI><A NAME="tex2html871"
66 66
   HREF="node24.html">Clam daemon</A>
67
-<LI><A NAME="tex2html860"
67
+<LI><A NAME="tex2html872"
68 68
   HREF="node25.html">Clam<B>d</B>scan</A>
69
-<LI><A NAME="tex2html861"
69
+<LI><A NAME="tex2html873"
70 70
   HREF="node26.html">Clamuko</A>
71
-<LI><A NAME="tex2html862"
71
+<LI><A NAME="tex2html874"
72 72
   HREF="node27.html">Output format</A>
73 73
 <UL>
74
-<LI><A NAME="tex2html863"
74
+<LI><A NAME="tex2html875"
75 75
   HREF="node28.html">clamscan</A>
76
-<LI><A NAME="tex2html864"
76
+<LI><A NAME="tex2html876"
77 77
   HREF="node29.html">clamd</A>
78 78
 </UL></UL>
79 79
 <!--End of Table of Child-Links-->
80 80
 <BR><HR>
81 81
 <ADDRESS>
82 82
 Tomasz Kojm
83
-2006-07-01
83
+2006-10-15
84 84
 </ADDRESS>
85 85
 </BODY>
86 86
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html875"
30
+<A NAME="tex2html887"
31 31
   HREF="node25.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html871"
33
+<A NAME="tex2html883"
34 34
   HREF="node23.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html865"
36
+<A NAME="tex2html877"
37 37
   HREF="node23.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html873"
39
+<A NAME="tex2html885"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html876"
43
+<B> Next:</B> <A NAME="tex2html888"
44 44
   HREF="node25.html">Clamdscan</A>
45
-<B> Up:</B> <A NAME="tex2html872"
45
+<B> Up:</B> <A NAME="tex2html884"
46 46
   HREF="node23.html">Usage</A>
47
-<B> Previous:</B> <A NAME="tex2html866"
47
+<B> Previous:</B> <A NAME="tex2html878"
48 48
   HREF="node23.html">Usage</A>
49
- &nbsp <B>  <A NAME="tex2html874"
49
+ &nbsp <B>  <A NAME="tex2html886"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -126,31 +126,31 @@ Perform a clean exit.
126 126
 <P>
127 127
 <HR>
128 128
 <!--Navigation Panel-->
129
-<A NAME="tex2html875"
129
+<A NAME="tex2html887"
130 130
   HREF="node25.html">
131 131
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
132
-<A NAME="tex2html871"
132
+<A NAME="tex2html883"
133 133
   HREF="node23.html">
134 134
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
135
-<A NAME="tex2html865"
135
+<A NAME="tex2html877"
136 136
   HREF="node23.html">
137 137
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
138
-<A NAME="tex2html873"
138
+<A NAME="tex2html885"
139 139
   HREF="node1.html">
140 140
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
141 141
 <BR>
142
-<B> Next:</B> <A NAME="tex2html876"
142
+<B> Next:</B> <A NAME="tex2html888"
143 143
   HREF="node25.html">Clamdscan</A>
144
-<B> Up:</B> <A NAME="tex2html872"
144
+<B> Up:</B> <A NAME="tex2html884"
145 145
   HREF="node23.html">Usage</A>
146
-<B> Previous:</B> <A NAME="tex2html866"
146
+<B> Previous:</B> <A NAME="tex2html878"
147 147
   HREF="node23.html">Usage</A>
148
- &nbsp <B>  <A NAME="tex2html874"
148
+ &nbsp <B>  <A NAME="tex2html886"
149 149
   HREF="node1.html">Contents</A></B> 
150 150
 <!--End of Navigation Panel-->
151 151
 <ADDRESS>
152 152
 Tomasz Kojm
153
-2006-07-01
153
+2006-10-15
154 154
 </ADDRESS>
155 155
 </BODY>
156 156
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html887"
30
+<A NAME="tex2html899"
31 31
   HREF="node26.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html883"
33
+<A NAME="tex2html895"
34 34
   HREF="node23.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html877"
36
+<A NAME="tex2html889"
37 37
   HREF="node24.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html885"
39
+<A NAME="tex2html897"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html888"
43
+<B> Next:</B> <A NAME="tex2html900"
44 44
   HREF="node26.html">Clamuko</A>
45
-<B> Up:</B> <A NAME="tex2html884"
45
+<B> Up:</B> <A NAME="tex2html896"
46 46
   HREF="node23.html">Usage</A>
47
-<B> Previous:</B> <A NAME="tex2html878"
47
+<B> Previous:</B> <A NAME="tex2html890"
48 48
   HREF="node24.html">Clam daemon</A>
49
- &nbsp <B>  <A NAME="tex2html886"
49
+ &nbsp <B>  <A NAME="tex2html898"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -76,7 +76,7 @@ Clam<B>d</B>scan</A>
76 76
 <BR><HR>
77 77
 <ADDRESS>
78 78
 Tomasz Kojm
79
-2006-07-01
79
+2006-10-15
80 80
 </ADDRESS>
81 81
 </BODY>
82 82
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html899"
30
+<A NAME="tex2html911"
31 31
   HREF="node27.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html895"
33
+<A NAME="tex2html907"
34 34
   HREF="node23.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html889"
36
+<A NAME="tex2html901"
37 37
   HREF="node25.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html897"
39
+<A NAME="tex2html909"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html900"
43
+<B> Next:</B> <A NAME="tex2html912"
44 44
   HREF="node27.html">Output format</A>
45
-<B> Up:</B> <A NAME="tex2html896"
45
+<B> Up:</B> <A NAME="tex2html908"
46 46
   HREF="node23.html">Usage</A>
47
-<B> Previous:</B> <A NAME="tex2html890"
47
+<B> Previous:</B> <A NAME="tex2html902"
48 48
   HREF="node25.html">Clamdscan</A>
49
- &nbsp <B>  <A NAME="tex2html898"
49
+ &nbsp <B>  <A NAME="tex2html910"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
96
+2006-10-15
97 97
 </ADDRESS>
98 98
 </BODY>
99 99
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html909"
29
+<A NAME="tex2html921"
30 30
   HREF="node28.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html905"
32
+<A NAME="tex2html917"
33 33
   HREF="node23.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html901"
35
+<A NAME="tex2html913"
36 36
   HREF="node26.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html907"
38
+<A NAME="tex2html919"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html910"
42
+<B> Next:</B> <A NAME="tex2html922"
43 43
   HREF="node28.html">clamscan</A>
44
-<B> Up:</B> <A NAME="tex2html906"
44
+<B> Up:</B> <A NAME="tex2html918"
45 45
   HREF="node23.html">Usage</A>
46
-<B> Previous:</B> <A NAME="tex2html902"
46
+<B> Previous:</B> <A NAME="tex2html914"
47 47
   HREF="node26.html">Clamuko</A>
48
- &nbsp <B>  <A NAME="tex2html908"
48
+ &nbsp <B>  <A NAME="tex2html920"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -61,16 +61,16 @@ Output format</A>
61 61
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
62 62
 
63 63
 <UL>
64
-<LI><A NAME="tex2html911"
64
+<LI><A NAME="tex2html923"
65 65
   HREF="node28.html">clamscan</A>
66
-<LI><A NAME="tex2html912"
66
+<LI><A NAME="tex2html924"
67 67
   HREF="node29.html">clamd</A>
68 68
 </UL>
69 69
 <!--End of Table of Child-Links-->
70 70
 <BR><HR>
71 71
 <ADDRESS>
72 72
 Tomasz Kojm
73
-2006-07-01
73
+2006-10-15
74 74
 </ADDRESS>
75 75
 </BODY>
76 76
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html923"
30
+<A NAME="tex2html935"
31 31
   HREF="node29.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html919"
33
+<A NAME="tex2html931"
34 34
   HREF="node27.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html913"
36
+<A NAME="tex2html925"
37 37
   HREF="node27.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html921"
39
+<A NAME="tex2html933"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html924"
43
+<B> Next:</B> <A NAME="tex2html936"
44 44
   HREF="node29.html">clamd</A>
45
-<B> Up:</B> <A NAME="tex2html920"
45
+<B> Up:</B> <A NAME="tex2html932"
46 46
   HREF="node27.html">Output format</A>
47
-<B> Previous:</B> <A NAME="tex2html914"
47
+<B> Previous:</B> <A NAME="tex2html926"
48 48
   HREF="node27.html">Output format</A>
49
- &nbsp <B>  <A NAME="tex2html922"
49
+ &nbsp <B>  <A NAME="tex2html934"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -92,7 +92,7 @@ clamscan</A>
92 92
 <BR><HR>
93 93
 <ADDRESS>
94 94
 Tomasz Kojm
95
-2006-07-01
95
+2006-10-15
96 96
 </ADDRESS>
97 97
 </BODY>
98 98
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html933"
29
+<A NAME="tex2html945"
30 30
   HREF="node30.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html929"
32
+<A NAME="tex2html941"
33 33
   HREF="node27.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html925"
35
+<A NAME="tex2html937"
36 36
   HREF="node28.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html931"
38
+<A NAME="tex2html943"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html934"
42
+<B> Next:</B> <A NAME="tex2html946"
43 43
   HREF="node30.html">LibClamAV</A>
44
-<B> Up:</B> <A NAME="tex2html930"
44
+<B> Up:</B> <A NAME="tex2html942"
45 45
   HREF="node27.html">Output format</A>
46
-<B> Previous:</B> <A NAME="tex2html926"
46
+<B> Previous:</B> <A NAME="tex2html938"
47 47
   HREF="node28.html">clamscan</A>
48
- &nbsp <B>  <A NAME="tex2html932"
48
+ &nbsp <B>  <A NAME="tex2html944"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -82,7 +82,7 @@ Error messages are printed in the following format:
82 82
 <BR><HR>
83 83
 <ADDRESS>
84 84
 Tomasz Kojm
85
-2006-07-01
85
+2006-10-15
86 86
 </ADDRESS>
87 87
 </BODY>
88 88
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html612"
30
+<A NAME="tex2html624"
31 31
   HREF="node4.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html608"
33
+<A NAME="tex2html620"
34 34
   HREF="node2.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html602"
36
+<A NAME="tex2html614"
37 37
   HREF="node2.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html610"
39
+<A NAME="tex2html622"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html613"
43
+<B> Next:</B> <A NAME="tex2html625"
44 44
   HREF="node4.html">Mailing lists</A>
45
-<B> Up:</B> <A NAME="tex2html609"
45
+<B> Up:</B> <A NAME="tex2html621"
46 46
   HREF="node2.html">Introduction</A>
47
-<B> Previous:</B> <A NAME="tex2html603"
47
+<B> Previous:</B> <A NAME="tex2html615"
48 48
   HREF="node2.html">Introduction</A>
49
- &nbsp <B>  <A NAME="tex2html611"
49
+ &nbsp <B>  <A NAME="tex2html623"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -67,7 +67,7 @@ Features</A>
67 67
 </LI>
68 68
 <LI>Supports on-access scanning (Linux and FreeBSD only)
69 69
 </LI>
70
-<LI>Detects over 35000 viruses, worms, and trojans, including
70
+<LI>Detects over 70.000 viruses, worms, and trojans, including
71 71
 	      Microsoft Office and MacOffice macro viruses
72 72
 </LI>
73 73
 <LI>Scans within archives and compressed files (also protects
... ...
@@ -119,7 +119,7 @@ Features</A>
119 119
 <BR><HR>
120 120
 <ADDRESS>
121 121
 Tomasz Kojm
122
-2006-07-01
122
+2006-10-15
123 123
 </ADDRESS>
124 124
 </BODY>
125 125
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html945"
30
+<A NAME="tex2html957"
31 31
   HREF="node31.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html941"
33
+<A NAME="tex2html953"
34 34
   HREF="clamdoc.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html935"
36
+<A NAME="tex2html947"
37 37
   HREF="node29.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html943"
39
+<A NAME="tex2html955"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html946"
43
+<B> Next:</B> <A NAME="tex2html958"
44 44
   HREF="node31.html">Licence</A>
45
-<B> Up:</B> <A NAME="tex2html942"
45
+<B> Up:</B> <A NAME="tex2html954"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html936"
47
+<B> Previous:</B> <A NAME="tex2html948"
48 48
   HREF="node29.html">clamd</A>
49
- &nbsp <B>  <A NAME="tex2html944"
49
+ &nbsp <B>  <A NAME="tex2html956"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -66,48 +66,48 @@ LibClamAV</A>
66 66
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
67 67
 
68 68
 <UL>
69
-<LI><A NAME="tex2html947"
69
+<LI><A NAME="tex2html959"
70 70
   HREF="node31.html">Licence</A>
71
-<LI><A NAME="tex2html948"
71
+<LI><A NAME="tex2html960"
72 72
   HREF="node32.html">Features</A>
73 73
 <UL>
74
-<LI><A NAME="tex2html949"
74
+<LI><A NAME="tex2html961"
75 75
   HREF="node33.html">Archives and compressed files</A>
76
-<LI><A NAME="tex2html950"
76
+<LI><A NAME="tex2html962"
77 77
   HREF="node34.html">Mail files</A>
78 78
 </UL>
79
-<LI><A NAME="tex2html951"
79
+<LI><A NAME="tex2html963"
80 80
   HREF="node35.html">API</A>
81 81
 <UL>
82
-<LI><A NAME="tex2html952"
82
+<LI><A NAME="tex2html964"
83 83
   HREF="node36.html">Header file</A>
84
-<LI><A NAME="tex2html953"
84
+<LI><A NAME="tex2html965"
85 85
   HREF="node37.html">Database loading</A>
86
-<LI><A NAME="tex2html954"
86
+<LI><A NAME="tex2html966"
87 87
   HREF="node38.html">Error handling</A>
88
-<LI><A NAME="tex2html955"
88
+<LI><A NAME="tex2html967"
89 89
   HREF="node39.html">Database structure</A>
90 90
 </UL>
91
-<LI><A NAME="tex2html956"
91
+<LI><A NAME="tex2html968"
92 92
   HREF="node40.html">Database reloading</A>
93 93
 <UL>
94
-<LI><A NAME="tex2html957"
94
+<LI><A NAME="tex2html969"
95 95
   HREF="node41.html">Data scan functions</A>
96
-<LI><A NAME="tex2html958"
96
+<LI><A NAME="tex2html970"
97 97
   HREF="node42.html">Memory</A>
98
-<LI><A NAME="tex2html959"
98
+<LI><A NAME="tex2html971"
99 99
   HREF="node43.html">clamav-config</A>
100
-<LI><A NAME="tex2html960"
100
+<LI><A NAME="tex2html972"
101 101
   HREF="node44.html">Example</A>
102 102
 </UL>
103
-<LI><A NAME="tex2html961"
103
+<LI><A NAME="tex2html973"
104 104
   HREF="node45.html">CVD format</A>
105 105
 </UL>
106 106
 <!--End of Table of Child-Links-->
107 107
 <BR><HR>
108 108
 <ADDRESS>
109 109
 Tomasz Kojm
110
-2006-07-01
110
+2006-10-15
111 111
 </ADDRESS>
112 112
 </BODY>
113 113
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html972"
30
+<A NAME="tex2html984"
31 31
   HREF="node32.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html968"
33
+<A NAME="tex2html980"
34 34
   HREF="node30.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html962"
36
+<A NAME="tex2html974"
37 37
   HREF="node30.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html970"
39
+<A NAME="tex2html982"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html973"
43
+<B> Next:</B> <A NAME="tex2html985"
44 44
   HREF="node32.html">Features</A>
45
-<B> Up:</B> <A NAME="tex2html969"
45
+<B> Up:</B> <A NAME="tex2html981"
46 46
   HREF="node30.html">LibClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html963"
47
+<B> Previous:</B> <A NAME="tex2html975"
48 48
   HREF="node30.html">LibClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html971"
49
+ &nbsp <B>  <A NAME="tex2html983"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -65,7 +65,7 @@ Licence</A>
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html984"
30
+<A NAME="tex2html996"
31 31
   HREF="node33.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html980"
33
+<A NAME="tex2html992"
34 34
   HREF="node30.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html974"
36
+<A NAME="tex2html986"
37 37
   HREF="node31.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html982"
39
+<A NAME="tex2html994"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html985"
43
+<B> Next:</B> <A NAME="tex2html997"
44 44
   HREF="node33.html">Archives and compressed files</A>
45
-<B> Up:</B> <A NAME="tex2html981"
45
+<B> Up:</B> <A NAME="tex2html993"
46 46
   HREF="node30.html">LibClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html975"
47
+<B> Previous:</B> <A NAME="tex2html987"
48 48
   HREF="node31.html">Licence</A>
49
- &nbsp <B>  <A NAME="tex2html983"
49
+ &nbsp <B>  <A NAME="tex2html995"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,16 +62,16 @@ Features</A>
62 62
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
63 63
 
64 64
 <UL>
65
-<LI><A NAME="tex2html986"
65
+<LI><A NAME="tex2html998"
66 66
   HREF="node33.html">Archives and compressed files</A>
67
-<LI><A NAME="tex2html987"
67
+<LI><A NAME="tex2html999"
68 68
   HREF="node34.html">Mail files</A>
69 69
 </UL>
70 70
 <!--End of Table of Child-Links-->
71 71
 <BR><HR>
72 72
 <ADDRESS>
73 73
 Tomasz Kojm
74
-2006-07-01
74
+2006-10-15
75 75
 </ADDRESS>
76 76
 </BODY>
77 77
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html998"
30
+<A NAME="tex2html1010"
31 31
   HREF="node34.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html994"
33
+<A NAME="tex2html1006"
34 34
   HREF="node32.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html988"
36
+<A NAME="tex2html1000"
37 37
   HREF="node32.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html996"
39
+<A NAME="tex2html1008"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html999"
43
+<B> Next:</B> <A NAME="tex2html1011"
44 44
   HREF="node34.html">Mail files</A>
45
-<B> Up:</B> <A NAME="tex2html995"
45
+<B> Up:</B> <A NAME="tex2html1007"
46 46
   HREF="node32.html">Features</A>
47
-<B> Previous:</B> <A NAME="tex2html989"
47
+<B> Previous:</B> <A NAME="tex2html1001"
48 48
   HREF="node32.html">Features</A>
49
- &nbsp <B>  <A NAME="tex2html997"
49
+ &nbsp <B>  <A NAME="tex2html1009"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -107,7 +107,7 @@ Archives and compressed files</A>
107 107
 <BR><HR>
108 108
 <ADDRESS>
109 109
 Tomasz Kojm
110
-2006-07-01
110
+2006-10-15
111 111
 </ADDRESS>
112 112
 </BODY>
113 113
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html1008"
29
+<A NAME="tex2html1020"
30 30
   HREF="node35.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html1004"
32
+<A NAME="tex2html1016"
33 33
   HREF="node32.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html1000"
35
+<A NAME="tex2html1012"
36 36
   HREF="node33.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html1006"
38
+<A NAME="tex2html1018"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html1009"
42
+<B> Next:</B> <A NAME="tex2html1021"
43 43
   HREF="node35.html">API</A>
44
-<B> Up:</B> <A NAME="tex2html1005"
44
+<B> Up:</B> <A NAME="tex2html1017"
45 45
   HREF="node32.html">Features</A>
46
-<B> Previous:</B> <A NAME="tex2html1001"
46
+<B> Previous:</B> <A NAME="tex2html1013"
47 47
   HREF="node33.html">Archives and compressed files</A>
48
- &nbsp <B>  <A NAME="tex2html1007"
48
+ &nbsp <B>  <A NAME="tex2html1019"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -62,7 +62,7 @@ Mail files</A>
62 62
 <BR><HR>
63 63
 <ADDRESS>
64 64
 Tomasz Kojm
65
-2006-07-01
65
+2006-10-15
66 66
 </ADDRESS>
67 67
 </BODY>
68 68
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1020"
30
+<A NAME="tex2html1032"
31 31
   HREF="node36.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1016"
33
+<A NAME="tex2html1028"
34 34
   HREF="node30.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1010"
36
+<A NAME="tex2html1022"
37 37
   HREF="node34.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1018"
39
+<A NAME="tex2html1030"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1021"
43
+<B> Next:</B> <A NAME="tex2html1033"
44 44
   HREF="node36.html">Header file</A>
45
-<B> Up:</B> <A NAME="tex2html1017"
45
+<B> Up:</B> <A NAME="tex2html1029"
46 46
   HREF="node30.html">LibClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1011"
47
+<B> Previous:</B> <A NAME="tex2html1023"
48 48
   HREF="node34.html">Mail files</A>
49
- &nbsp <B>  <A NAME="tex2html1019"
49
+ &nbsp <B>  <A NAME="tex2html1031"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,20 +62,20 @@ API</A>
62 62
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
63 63
 
64 64
 <UL>
65
-<LI><A NAME="tex2html1022"
65
+<LI><A NAME="tex2html1034"
66 66
   HREF="node36.html">Header file</A>
67
-<LI><A NAME="tex2html1023"
67
+<LI><A NAME="tex2html1035"
68 68
   HREF="node37.html">Database loading</A>
69
-<LI><A NAME="tex2html1024"
69
+<LI><A NAME="tex2html1036"
70 70
   HREF="node38.html">Error handling</A>
71
-<LI><A NAME="tex2html1025"
71
+<LI><A NAME="tex2html1037"
72 72
   HREF="node39.html">Database structure</A>
73 73
 </UL>
74 74
 <!--End of Table of Child-Links-->
75 75
 <BR><HR>
76 76
 <ADDRESS>
77 77
 Tomasz Kojm
78
-2006-07-01
78
+2006-10-15
79 79
 </ADDRESS>
80 80
 </BODY>
81 81
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1036"
30
+<A NAME="tex2html1048"
31 31
   HREF="node37.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1032"
33
+<A NAME="tex2html1044"
34 34
   HREF="node35.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1026"
36
+<A NAME="tex2html1038"
37 37
   HREF="node35.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1034"
39
+<A NAME="tex2html1046"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1037"
43
+<B> Next:</B> <A NAME="tex2html1049"
44 44
   HREF="node37.html">Database loading</A>
45
-<B> Up:</B> <A NAME="tex2html1033"
45
+<B> Up:</B> <A NAME="tex2html1045"
46 46
   HREF="node35.html">API</A>
47
-<B> Previous:</B> <A NAME="tex2html1027"
47
+<B> Previous:</B> <A NAME="tex2html1039"
48 48
   HREF="node35.html">API</A>
49
- &nbsp <B>  <A NAME="tex2html1035"
49
+ &nbsp <B>  <A NAME="tex2html1047"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -65,7 +65,7 @@ Header file</A>
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1048"
30
+<A NAME="tex2html1060"
31 31
   HREF="node38.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1044"
33
+<A NAME="tex2html1056"
34 34
   HREF="node35.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1038"
36
+<A NAME="tex2html1050"
37 37
   HREF="node36.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1046"
39
+<A NAME="tex2html1058"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1049"
43
+<B> Next:</B> <A NAME="tex2html1061"
44 44
   HREF="node38.html">Error handling</A>
45
-<B> Up:</B> <A NAME="tex2html1045"
45
+<B> Up:</B> <A NAME="tex2html1057"
46 46
   HREF="node35.html">API</A>
47
-<B> Previous:</B> <A NAME="tex2html1039"
47
+<B> Previous:</B> <A NAME="tex2html1051"
48 48
   HREF="node36.html">Header file</A>
49
- &nbsp <B>  <A NAME="tex2html1047"
49
+ &nbsp <B>  <A NAME="tex2html1059"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -88,7 +88,7 @@ Database loading</A>
88 88
 <BR><HR>
89 89
 <ADDRESS>
90 90
 Tomasz Kojm
91
-2006-07-01
91
+2006-10-15
92 92
 </ADDRESS>
93 93
 </BODY>
94 94
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1060"
30
+<A NAME="tex2html1072"
31 31
   HREF="node39.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1056"
33
+<A NAME="tex2html1068"
34 34
   HREF="node35.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1050"
36
+<A NAME="tex2html1062"
37 37
   HREF="node37.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1058"
39
+<A NAME="tex2html1070"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1061"
43
+<B> Next:</B> <A NAME="tex2html1073"
44 44
   HREF="node39.html">Database structure</A>
45
-<B> Up:</B> <A NAME="tex2html1057"
45
+<B> Up:</B> <A NAME="tex2html1069"
46 46
   HREF="node35.html">API</A>
47
-<B> Previous:</B> <A NAME="tex2html1051"
47
+<B> Previous:</B> <A NAME="tex2html1063"
48 48
   HREF="node37.html">Database loading</A>
49
- &nbsp <B>  <A NAME="tex2html1059"
49
+ &nbsp <B>  <A NAME="tex2html1071"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -68,7 +68,7 @@ Error handling</A>
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html1070"
29
+<A NAME="tex2html1082"
30 30
   HREF="node40.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html1066"
32
+<A NAME="tex2html1078"
33 33
   HREF="node35.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html1062"
35
+<A NAME="tex2html1074"
36 36
   HREF="node38.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html1068"
38
+<A NAME="tex2html1080"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html1071"
42
+<B> Next:</B> <A NAME="tex2html1083"
43 43
   HREF="node40.html">Database reloading</A>
44
-<B> Up:</B> <A NAME="tex2html1067"
44
+<B> Up:</B> <A NAME="tex2html1079"
45 45
   HREF="node35.html">API</A>
46
-<B> Previous:</B> <A NAME="tex2html1063"
46
+<B> Previous:</B> <A NAME="tex2html1075"
47 47
   HREF="node38.html">Error handling</A>
48
- &nbsp <B>  <A NAME="tex2html1069"
48
+ &nbsp <B>  <A NAME="tex2html1081"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -68,7 +68,7 @@ Database structure</A>
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html624"
30
+<A NAME="tex2html636"
31 31
   HREF="node5.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html620"
33
+<A NAME="tex2html632"
34 34
   HREF="node2.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html614"
36
+<A NAME="tex2html626"
37 37
   HREF="node3.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html622"
39
+<A NAME="tex2html634"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html625"
43
+<B> Next:</B> <A NAME="tex2html637"
44 44
   HREF="node5.html">Virus submitting</A>
45
-<B> Up:</B> <A NAME="tex2html621"
45
+<B> Up:</B> <A NAME="tex2html633"
46 46
   HREF="node2.html">Introduction</A>
47
-<B> Previous:</B> <A NAME="tex2html615"
47
+<B> Previous:</B> <A NAME="tex2html627"
48 48
   HREF="node3.html">Features</A>
49
- &nbsp <B>  <A NAME="tex2html623"
49
+ &nbsp <B>  <A NAME="tex2html635"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -79,7 +79,7 @@ Mailing lists</A>
79 79
 <BR><HR>
80 80
 <ADDRESS>
81 81
 Tomasz Kojm
82
-2006-07-01
82
+2006-10-15
83 83
 </ADDRESS>
84 84
 </BODY>
85 85
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1082"
30
+<A NAME="tex2html1094"
31 31
   HREF="node41.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1078"
33
+<A NAME="tex2html1090"
34 34
   HREF="node30.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1072"
36
+<A NAME="tex2html1084"
37 37
   HREF="node39.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1080"
39
+<A NAME="tex2html1092"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1083"
43
+<B> Next:</B> <A NAME="tex2html1095"
44 44
   HREF="node41.html">Data scan functions</A>
45
-<B> Up:</B> <A NAME="tex2html1079"
45
+<B> Up:</B> <A NAME="tex2html1091"
46 46
   HREF="node30.html">LibClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1073"
47
+<B> Previous:</B> <A NAME="tex2html1085"
48 48
   HREF="node39.html">Database structure</A>
49
- &nbsp <B>  <A NAME="tex2html1081"
49
+ &nbsp <B>  <A NAME="tex2html1093"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -87,20 +87,20 @@ Database reloading</A>
87 87
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
88 88
 
89 89
 <UL>
90
-<LI><A NAME="tex2html1084"
90
+<LI><A NAME="tex2html1096"
91 91
   HREF="node41.html">Data scan functions</A>
92
-<LI><A NAME="tex2html1085"
92
+<LI><A NAME="tex2html1097"
93 93
   HREF="node42.html">Memory</A>
94
-<LI><A NAME="tex2html1086"
94
+<LI><A NAME="tex2html1098"
95 95
   HREF="node43.html">clamav-config</A>
96
-<LI><A NAME="tex2html1087"
96
+<LI><A NAME="tex2html1099"
97 97
   HREF="node44.html">Example</A>
98 98
 </UL>
99 99
 <!--End of Table of Child-Links-->
100 100
 <BR><HR>
101 101
 <ADDRESS>
102 102
 Tomasz Kojm
103
-2006-07-01
103
+2006-10-15
104 104
 </ADDRESS>
105 105
 </BODY>
106 106
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1098"
30
+<A NAME="tex2html1110"
31 31
   HREF="node42.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1094"
33
+<A NAME="tex2html1106"
34 34
   HREF="node40.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1088"
36
+<A NAME="tex2html1100"
37 37
   HREF="node40.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1096"
39
+<A NAME="tex2html1108"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1099"
43
+<B> Next:</B> <A NAME="tex2html1111"
44 44
   HREF="node42.html">Memory</A>
45
-<B> Up:</B> <A NAME="tex2html1095"
45
+<B> Up:</B> <A NAME="tex2html1107"
46 46
   HREF="node40.html">Database reloading</A>
47
-<B> Previous:</B> <A NAME="tex2html1089"
47
+<B> Previous:</B> <A NAME="tex2html1101"
48 48
   HREF="node40.html">Database reloading</A>
49
- &nbsp <B>  <A NAME="tex2html1097"
49
+ &nbsp <B>  <A NAME="tex2html1109"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -182,31 +182,31 @@ This flag enables HTML normalisation (including JScript
182 182
 <P>
183 183
 <HR>
184 184
 <!--Navigation Panel-->
185
-<A NAME="tex2html1098"
185
+<A NAME="tex2html1110"
186 186
   HREF="node42.html">
187 187
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
188
-<A NAME="tex2html1094"
188
+<A NAME="tex2html1106"
189 189
   HREF="node40.html">
190 190
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
191
-<A NAME="tex2html1088"
191
+<A NAME="tex2html1100"
192 192
   HREF="node40.html">
193 193
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
194
-<A NAME="tex2html1096"
194
+<A NAME="tex2html1108"
195 195
   HREF="node1.html">
196 196
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
197 197
 <BR>
198
-<B> Next:</B> <A NAME="tex2html1099"
198
+<B> Next:</B> <A NAME="tex2html1111"
199 199
   HREF="node42.html">Memory</A>
200
-<B> Up:</B> <A NAME="tex2html1095"
200
+<B> Up:</B> <A NAME="tex2html1107"
201 201
   HREF="node40.html">Database reloading</A>
202
-<B> Previous:</B> <A NAME="tex2html1089"
202
+<B> Previous:</B> <A NAME="tex2html1101"
203 203
   HREF="node40.html">Database reloading</A>
204
- &nbsp <B>  <A NAME="tex2html1097"
204
+ &nbsp <B>  <A NAME="tex2html1109"
205 205
   HREF="node1.html">Contents</A></B> 
206 206
 <!--End of Navigation Panel-->
207 207
 <ADDRESS>
208 208
 Tomasz Kojm
209
-2006-07-01
209
+2006-10-15
210 210
 </ADDRESS>
211 211
 </BODY>
212 212
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1110"
30
+<A NAME="tex2html1122"
31 31
   HREF="node43.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1106"
33
+<A NAME="tex2html1118"
34 34
   HREF="node40.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1100"
36
+<A NAME="tex2html1112"
37 37
   HREF="node41.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1108"
39
+<A NAME="tex2html1120"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1111"
43
+<B> Next:</B> <A NAME="tex2html1123"
44 44
   HREF="node43.html">clamav-config</A>
45
-<B> Up:</B> <A NAME="tex2html1107"
45
+<B> Up:</B> <A NAME="tex2html1119"
46 46
   HREF="node40.html">Database reloading</A>
47
-<B> Previous:</B> <A NAME="tex2html1101"
47
+<B> Previous:</B> <A NAME="tex2html1113"
48 48
   HREF="node41.html">Data scan functions</A>
49
- &nbsp <B>  <A NAME="tex2html1109"
49
+ &nbsp <B>  <A NAME="tex2html1121"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -65,7 +65,7 @@ Memory</A>
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1122"
30
+<A NAME="tex2html1134"
31 31
   HREF="node44.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1118"
33
+<A NAME="tex2html1130"
34 34
   HREF="node40.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1112"
36
+<A NAME="tex2html1124"
37 37
   HREF="node42.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1120"
39
+<A NAME="tex2html1132"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1123"
43
+<B> Next:</B> <A NAME="tex2html1135"
44 44
   HREF="node44.html">Example</A>
45
-<B> Up:</B> <A NAME="tex2html1119"
45
+<B> Up:</B> <A NAME="tex2html1131"
46 46
   HREF="node40.html">Database reloading</A>
47
-<B> Previous:</B> <A NAME="tex2html1113"
47
+<B> Previous:</B> <A NAME="tex2html1125"
48 48
   HREF="node42.html">Memory</A>
49
- &nbsp <B>  <A NAME="tex2html1121"
49
+ &nbsp <B>  <A NAME="tex2html1133"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -67,7 +67,7 @@ clamav-config</A>
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html1132"
29
+<A NAME="tex2html1144"
30 30
   HREF="node45.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html1128"
32
+<A NAME="tex2html1140"
33 33
   HREF="node40.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html1124"
35
+<A NAME="tex2html1136"
36 36
   HREF="node43.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html1130"
38
+<A NAME="tex2html1142"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html1133"
42
+<B> Next:</B> <A NAME="tex2html1145"
43 43
   HREF="node45.html">CVD format</A>
44
-<B> Up:</B> <A NAME="tex2html1129"
44
+<B> Up:</B> <A NAME="tex2html1141"
45 45
   HREF="node40.html">Database reloading</A>
46
-<B> Previous:</B> <A NAME="tex2html1125"
46
+<B> Previous:</B> <A NAME="tex2html1137"
47 47
   HREF="node43.html">clamav-config</A>
48
- &nbsp <B>  <A NAME="tex2html1131"
48
+ &nbsp <B>  <A NAME="tex2html1143"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -65,7 +65,7 @@ Example</A>
65 65
 <BR><HR>
66 66
 <ADDRESS>
67 67
 Tomasz Kojm
68
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html1142"
29
+<A NAME="tex2html1154"
30 30
   HREF="node46.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html1138"
32
+<A NAME="tex2html1150"
33 33
   HREF="node30.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html1134"
35
+<A NAME="tex2html1146"
36 36
   HREF="node44.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html1140"
38
+<A NAME="tex2html1152"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html1143"
42
+<B> Next:</B> <A NAME="tex2html1155"
43 43
   HREF="node46.html">Frequently Asked Questions</A>
44
-<B> Up:</B> <A NAME="tex2html1139"
44
+<B> Up:</B> <A NAME="tex2html1151"
45 45
   HREF="node30.html">LibClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html1135"
46
+<B> Previous:</B> <A NAME="tex2html1147"
47 47
   HREF="node44.html">Example</A>
48
- &nbsp <B>  <A NAME="tex2html1141"
48
+ &nbsp <B>  <A NAME="tex2html1153"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -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
-2006-07-01
83
+2006-10-15
84 84
 </ADDRESS>
85 85
 </BODY>
86 86
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1154"
30
+<A NAME="tex2html1166"
31 31
   HREF="node47.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1150"
33
+<A NAME="tex2html1162"
34 34
   HREF="clamdoc.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1144"
36
+<A NAME="tex2html1156"
37 37
   HREF="node45.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1152"
39
+<A NAME="tex2html1164"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1155"
43
+<B> Next:</B> <A NAME="tex2html1167"
44 44
   HREF="node47.html">Third party software</A>
45
-<B> Up:</B> <A NAME="tex2html1151"
45
+<B> Up:</B> <A NAME="tex2html1163"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html1145"
47
+<B> Previous:</B> <A NAME="tex2html1157"
48 48
   HREF="node45.html">CVD format</A>
49
- &nbsp <B>  <A NAME="tex2html1153"
49
+ &nbsp <B>  <A NAME="tex2html1165"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -367,31 +367,31 @@ There are many ways to contribute to the ClamAV project. See the
367 367
 <P>
368 368
 <HR>
369 369
 <!--Navigation Panel-->
370
-<A NAME="tex2html1154"
370
+<A NAME="tex2html1166"
371 371
   HREF="node47.html">
372 372
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
373
-<A NAME="tex2html1150"
373
+<A NAME="tex2html1162"
374 374
   HREF="clamdoc.html">
375 375
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
376
-<A NAME="tex2html1144"
376
+<A NAME="tex2html1156"
377 377
   HREF="node45.html">
378 378
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
379
-<A NAME="tex2html1152"
379
+<A NAME="tex2html1164"
380 380
   HREF="node1.html">
381 381
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
382 382
 <BR>
383
-<B> Next:</B> <A NAME="tex2html1155"
383
+<B> Next:</B> <A NAME="tex2html1167"
384 384
   HREF="node47.html">Third party software</A>
385
-<B> Up:</B> <A NAME="tex2html1151"
385
+<B> Up:</B> <A NAME="tex2html1163"
386 386
   HREF="clamdoc.html">clamdoc</A>
387
-<B> Previous:</B> <A NAME="tex2html1145"
387
+<B> Previous:</B> <A NAME="tex2html1157"
388 388
   HREF="node45.html">CVD format</A>
389
- &nbsp <B>  <A NAME="tex2html1153"
389
+ &nbsp <B>  <A NAME="tex2html1165"
390 390
   HREF="node1.html">Contents</A></B> 
391 391
 <!--End of Navigation Panel-->
392 392
 <ADDRESS>
393 393
 Tomasz Kojm
394
-2006-07-01
394
+2006-10-15
395 395
 </ADDRESS>
396 396
 </BODY>
397 397
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1166"
30
+<A NAME="tex2html1178"
31 31
   HREF="node48.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1162"
33
+<A NAME="tex2html1174"
34 34
   HREF="clamdoc.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1156"
36
+<A NAME="tex2html1168"
37 37
   HREF="node46.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1164"
39
+<A NAME="tex2html1176"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1167"
43
+<B> Next:</B> <A NAME="tex2html1179"
44 44
   HREF="node48.html">MTA + ClamAV</A>
45
-<B> Up:</B> <A NAME="tex2html1163"
45
+<B> Up:</B> <A NAME="tex2html1175"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html1157"
47
+<B> Previous:</B> <A NAME="tex2html1169"
48 48
   HREF="node46.html">Frequently Asked Questions</A>
49
- &nbsp <B>  <A NAME="tex2html1165"
49
+ &nbsp <B>  <A NAME="tex2html1177"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -65,241 +65,241 @@ Third party software</A>
65 65
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
66 66
 
67 67
 <UL>
68
-<LI><A NAME="tex2html1168"
68
+<LI><A NAME="tex2html1180"
69 69
   HREF="node48.html"><I>MTA + ClamAV</I></A>
70 70
 <UL>
71
-<LI><A NAME="tex2html1169"
71
+<LI><A NAME="tex2html1181"
72 72
   HREF="node49.html">amavisd-new</A>
73
-<LI><A NAME="tex2html1170"
73
+<LI><A NAME="tex2html1182"
74 74
   HREF="node50.html">AMaViS - "Next Generation"</A>
75
-<LI><A NAME="tex2html1171"
75
+<LI><A NAME="tex2html1183"
76 76
   HREF="node51.html">ClamdMail</A>
77
-<LI><A NAME="tex2html1172"
77
+<LI><A NAME="tex2html1184"
78 78
   HREF="node52.html">Clement</A>
79
-<LI><A NAME="tex2html1173"
79
+<LI><A NAME="tex2html1185"
80 80
   HREF="node53.html">cgpav</A>
81
-<LI><A NAME="tex2html1174"
81
+<LI><A NAME="tex2html1186"
82 82
   HREF="node54.html">ClamCour</A>
83
-<LI><A NAME="tex2html1175"
83
+<LI><A NAME="tex2html1187"
84 84
   HREF="node55.html">clamfilter</A>
85
-<LI><A NAME="tex2html1176"
85
+<LI><A NAME="tex2html1188"
86 86
   HREF="node56.html">ClamSMTP</A>
87
-<LI><A NAME="tex2html1177"
87
+<LI><A NAME="tex2html1189"
88 88
   HREF="node57.html">clapf</A>
89
-<LI><A NAME="tex2html1178"
89
+<LI><A NAME="tex2html1190"
90 90
   HREF="node58.html">DSpamPD</A>
91
-<LI><A NAME="tex2html1179"
91
+<LI><A NAME="tex2html1191"
92 92
   HREF="node59.html">exiscan</A>
93
-<LI><A NAME="tex2html1180"
93
+<LI><A NAME="tex2html1192"
94 94
   HREF="node60.html">Gadoyanvirus</A>
95
-<LI><A NAME="tex2html1181"
95
+<LI><A NAME="tex2html1193"
96 96
   HREF="node61.html">hMailServer</A>
97
-<LI><A NAME="tex2html1182"
97
+<LI><A NAME="tex2html1194"
98 98
   HREF="node62.html">IVS Milter</A>
99
-<LI><A NAME="tex2html1183"
99
+<LI><A NAME="tex2html1195"
100 100
   HREF="node63.html">j-chkmail</A>
101
-<LI><A NAME="tex2html1184"
101
+<LI><A NAME="tex2html1196"
102 102
   HREF="node64.html">Mail Avenger</A>
103
-<LI><A NAME="tex2html1185"
103
+<LI><A NAME="tex2html1197"
104 104
   HREF="node65.html">Mailnees</A>
105
-<LI><A NAME="tex2html1186"
105
+<LI><A NAME="tex2html1198"
106 106
   HREF="node66.html">MailScanner</A>
107
-<LI><A NAME="tex2html1187"
107
+<LI><A NAME="tex2html1199"
108 108
   HREF="node67.html">Maverix</A>
109
-<LI><A NAME="tex2html1188"
109
+<LI><A NAME="tex2html1200"
110 110
   HREF="node68.html">MIMEDefang</A>
111
-<LI><A NAME="tex2html1189"
111
+<LI><A NAME="tex2html1201"
112 112
   HREF="node69.html">mxGuard for IMail</A>
113
-<LI><A NAME="tex2html1190"
113
+<LI><A NAME="tex2html1202"
114 114
   HREF="node70.html">OdeiaVir</A>
115
-<LI><A NAME="tex2html1191"
115
+<LI><A NAME="tex2html1203"
116 116
   HREF="node71.html">OpenProtect</A>
117
-<LI><A NAME="tex2html1192"
117
+<LI><A NAME="tex2html1204"
118 118
   HREF="node72.html">Protea AntiVirus Tools</A>
119
-<LI><A NAME="tex2html1193"
119
+<LI><A NAME="tex2html1205"
120 120
   HREF="node73.html">PSCM</A>
121
-<LI><A NAME="tex2html1194"
121
+<LI><A NAME="tex2html1206"
122 122
   HREF="node74.html">PTSMail Utilities</A>
123
-<LI><A NAME="tex2html1195"
123
+<LI><A NAME="tex2html1207"
124 124
   HREF="node75.html">pymavis</A>
125
-<LI><A NAME="tex2html1196"
125
+<LI><A NAME="tex2html1208"
126 126
   HREF="node76.html">Qmail-Scanner</A>
127
-<LI><A NAME="tex2html1197"
127
+<LI><A NAME="tex2html1209"
128 128
   HREF="node77.html">qpsmtp</A>
129
-<LI><A NAME="tex2html1198"
129
+<LI><A NAME="tex2html1210"
130 130
   HREF="node78.html">qscanq</A>
131
-<LI><A NAME="tex2html1199"
131
+<LI><A NAME="tex2html1211"
132 132
   HREF="node79.html">qSheff</A>
133
-<LI><A NAME="tex2html1200"
133
+<LI><A NAME="tex2html1212"
134 134
   HREF="node80.html">RevolSys SMTP kit for Postfix</A>
135
-<LI><A NAME="tex2html1201"
135
+<LI><A NAME="tex2html1213"
136 136
   HREF="node81.html">Sagator</A>
137
-<LI><A NAME="tex2html1202"
137
+<LI><A NAME="tex2html1214"
138 138
   HREF="node82.html">Scrubber</A>
139
-<LI><A NAME="tex2html1203"
139
+<LI><A NAME="tex2html1215"
140 140
   HREF="node83.html">Secure Mail Intelligence!</A>
141
-<LI><A NAME="tex2html1204"
141
+<LI><A NAME="tex2html1216"
142 142
   HREF="node84.html">simscan</A>
143
-<LI><A NAME="tex2html1205"
143
+<LI><A NAME="tex2html1217"
144 144
   HREF="node85.html">SmarterMail Filter</A>
145
-<LI><A NAME="tex2html1206"
145
+<LI><A NAME="tex2html1218"
146 146
   HREF="node86.html">smf-clamd</A>
147
-<LI><A NAME="tex2html1207"
147
+<LI><A NAME="tex2html1219"
148 148
   HREF="node87.html">smtpfilter</A>
149
-<LI><A NAME="tex2html1208"
149
+<LI><A NAME="tex2html1220"
150 150
   HREF="node88.html">smtp-gated</A>
151
-<LI><A NAME="tex2html1209"
151
+<LI><A NAME="tex2html1221"
152 152
   HREF="node89.html">smtp-vilter</A>
153
-<LI><A NAME="tex2html1210"
153
+<LI><A NAME="tex2html1222"
154 154
   HREF="node90.html">Zabit</A>
155
-<LI><A NAME="tex2html1211"
155
+<LI><A NAME="tex2html1223"
156 156
   HREF="node91.html">zmscanner</A>
157 157
 </UL>
158
-<LI><A NAME="tex2html1212"
158
+<LI><A NAME="tex2html1224"
159 159
   HREF="node92.html"><I>MTA + POP3 Proxy + ClamAV</I></A>
160 160
 <UL>
161
-<LI><A NAME="tex2html1213"
161
+<LI><A NAME="tex2html1225"
162 162
   HREF="node93.html">ClamMail</A>
163
-<LI><A NAME="tex2html1214"
163
+<LI><A NAME="tex2html1226"
164 164
   HREF="node94.html">POP3 Virus Scanner Daemon</A>
165
-<LI><A NAME="tex2html1215"
165
+<LI><A NAME="tex2html1227"
166 166
   HREF="node95.html">pop3.proxy</A>
167 167
 </UL>
168
-<LI><A NAME="tex2html1216"
168
+<LI><A NAME="tex2html1228"
169 169
   HREF="node96.html"><I>Web/FTP Proxy + ClamAV</I></A>
170 170
 <UL>
171
-<LI><A NAME="tex2html1217"
171
+<LI><A NAME="tex2html1229"
172 172
   HREF="node97.html">DansGuardian Anti-Virus Patch</A>
173
-<LI><A NAME="tex2html1218"
173
+<LI><A NAME="tex2html1230"
174 174
   HREF="node98.html">Frox</A>
175
-<LI><A NAME="tex2html1219"
175
+<LI><A NAME="tex2html1231"
176 176
   HREF="node99.html">HTTP Anti Virus Proxy</A>
177
-<LI><A NAME="tex2html1220"
177
+<LI><A NAME="tex2html1232"
178 178
   HREF="node100.html">mod_clamav</A>
179
-<LI><A NAME="tex2html1221"
179
+<LI><A NAME="tex2html1233"
180 180
   HREF="node101.html">ClamAV module for ProFTPD</A>
181
-<LI><A NAME="tex2html1222"
181
+<LI><A NAME="tex2html1234"
182 182
   HREF="node102.html">SafeSquid</A>
183
-<LI><A NAME="tex2html1223"
183
+<LI><A NAME="tex2html1235"
184 184
   HREF="node103.html">SquidClamAV Redirector</A>
185
-<LI><A NAME="tex2html1224"
185
+<LI><A NAME="tex2html1236"
186 186
   HREF="node104.html">Squidclam</A>
187
-<LI><A NAME="tex2html1225"
187
+<LI><A NAME="tex2html1237"
188 188
   HREF="node105.html">Viralator</A>
189 189
 </UL>
190
-<LI><A NAME="tex2html1226"
190
+<LI><A NAME="tex2html1238"
191 191
   HREF="node106.html"><I>Filesystem + ClamAV</I></A>
192 192
 <UL>
193
-<LI><A NAME="tex2html1227"
193
+<LI><A NAME="tex2html1239"
194 194
   HREF="node107.html">Dazuko</A>
195
-<LI><A NAME="tex2html1228"
195
+<LI><A NAME="tex2html1240"
196 196
   HREF="node108.html">Famuko</A>
197
-<LI><A NAME="tex2html1229"
197
+<LI><A NAME="tex2html1241"
198 198
   HREF="node109.html">OpenAntiVirus samba-vscan</A>
199 199
 </UL>
200
-<LI><A NAME="tex2html1230"
200
+<LI><A NAME="tex2html1242"
201 201
   HREF="node110.html"><I>Mail User Agent + ClamAV</I></A>
202 202
 <UL>
203
-<LI><A NAME="tex2html1231"
203
+<LI><A NAME="tex2html1243"
204 204
   HREF="node111.html">clamailfilter</A>
205
-<LI><A NAME="tex2html1232"
205
+<LI><A NAME="tex2html1244"
206 206
   HREF="node112.html">ClamAssassin</A>
207
-<LI><A NAME="tex2html1233"
207
+<LI><A NAME="tex2html1245"
208 208
   HREF="node113.html">clamscan-procfilter</A>
209
-<LI><A NAME="tex2html1234"
209
+<LI><A NAME="tex2html1246"
210 210
   HREF="node114.html">KMail</A>
211
-<LI><A NAME="tex2html1235"
211
+<LI><A NAME="tex2html1247"
212 212
   HREF="node115.html">MyClamMailFilter</A>
213
-<LI><A NAME="tex2html1236"
213
+<LI><A NAME="tex2html1248"
214 214
   HREF="node116.html">OpenWebMail</A>
215
-<LI><A NAME="tex2html1237"
215
+<LI><A NAME="tex2html1249"
216 216
   HREF="node117.html">QClam</A>
217
-<LI><A NAME="tex2html1238"
217
+<LI><A NAME="tex2html1250"
218 218
   HREF="node118.html">QMVC - Qmail Mail and Virus Control</A>
219
-<LI><A NAME="tex2html1239"
219
+<LI><A NAME="tex2html1251"
220 220
   HREF="node119.html">Sylpheed-Claws</A>
221
-<LI><A NAME="tex2html1240"
221
+<LI><A NAME="tex2html1252"
222 222
   HREF="node120.html">SoftlabsAV</A>
223 223
 </UL>
224
-<LI><A NAME="tex2html1241"
224
+<LI><A NAME="tex2html1253"
225 225
   HREF="node121.html"><I>Graphical User Interface + ClamAV</I></A>
226 226
 <UL>
227
-<LI><A NAME="tex2html1242"
227
+<LI><A NAME="tex2html1254"
228 228
   HREF="node122.html">AVScan</A>
229
-<LI><A NAME="tex2html1243"
229
+<LI><A NAME="tex2html1255"
230 230
   HREF="node123.html">BeClam</A>
231
-<LI><A NAME="tex2html1244"
231
+<LI><A NAME="tex2html1256"
232 232
   HREF="node124.html">Clamaktion</A>
233
-<LI><A NAME="tex2html1245"
233
+<LI><A NAME="tex2html1257"
234 234
   HREF="node125.html">ClamShell</A>
235
-<LI><A NAME="tex2html1246"
235
+<LI><A NAME="tex2html1258"
236 236
   HREF="node126.html">ClamTk</A>
237
-<LI><A NAME="tex2html1247"
237
+<LI><A NAME="tex2html1259"
238 238
   HREF="node127.html">clamXav</A>
239
-<LI><A NAME="tex2html1248"
239
+<LI><A NAME="tex2html1260"
240 240
   HREF="node128.html">ClamWin</A>
241
-<LI><A NAME="tex2html1249"
241
+<LI><A NAME="tex2html1261"
242 242
   HREF="node129.html">FETCAV</A>
243
-<LI><A NAME="tex2html1250"
243
+<LI><A NAME="tex2html1262"
244 244
   HREF="node130.html">KlamAV</A>
245
-<LI><A NAME="tex2html1251"
245
+<LI><A NAME="tex2html1263"
246 246
   HREF="node131.html">QtClamAVclient</A>
247
-<LI><A NAME="tex2html1252"
247
+<LI><A NAME="tex2html1264"
248 248
   HREF="node132.html">wbmclamav</A>
249 249
 </UL>
250
-<LI><A NAME="tex2html1253"
250
+<LI><A NAME="tex2html1265"
251 251
   HREF="node133.html"><I>Library + ClamAV</I></A>
252 252
 <UL>
253
-<LI><A NAME="tex2html1254"
253
+<LI><A NAME="tex2html1266"
254 254
   HREF="node134.html">ClamAV-Sharp</A>
255
-<LI><A NAME="tex2html1255"
255
+<LI><A NAME="tex2html1267"
256 256
   HREF="node135.html">ClamAVPlugin</A>
257
-<LI><A NAME="tex2html1256"
257
+<LI><A NAME="tex2html1268"
258 258
   HREF="node136.html">clamavr</A>
259
-<LI><A NAME="tex2html1257"
259
+<LI><A NAME="tex2html1269"
260 260
   HREF="node137.html">D bindings for ClamAV</A>
261
-<LI><A NAME="tex2html1258"
261
+<LI><A NAME="tex2html1270"
262 262
   HREF="node138.html">File::Scan::ClamAV</A>
263
-<LI><A NAME="tex2html1259"
263
+<LI><A NAME="tex2html1271"
264 264
   HREF="node139.html">Mail::ClamAV</A>
265
-<LI><A NAME="tex2html1260"
265
+<LI><A NAME="tex2html1272"
266 266
   HREF="node140.html">PHP ClamAV Lib</A>
267
-<LI><A NAME="tex2html1261"
267
+<LI><A NAME="tex2html1273"
268 268
   HREF="node141.html">pyclamav</A>
269
-<LI><A NAME="tex2html1262"
269
+<LI><A NAME="tex2html1274"
270 270
   HREF="node142.html">WRAVLib</A>
271 271
 </UL>
272
-<LI><A NAME="tex2html1263"
272
+<LI><A NAME="tex2html1275"
273 273
   HREF="node143.html"><I>Miscellaneous + ClamAV</I></A>
274 274
 <UL>
275
-<LI><A NAME="tex2html1264"
275
+<LI><A NAME="tex2html1276"
276 276
   HREF="node144.html">INSERT</A>
277
-<LI><A NAME="tex2html1265"
277
+<LI><A NAME="tex2html1277"
278 278
   HREF="node145.html">Local Area Security</A>
279
-<LI><A NAME="tex2html1266"
279
+<LI><A NAME="tex2html1278"
280 280
   HREF="node146.html">mailgraph</A>
281
-<LI><A NAME="tex2html1267"
281
+<LI><A NAME="tex2html1279"
282 282
   HREF="node147.html">mailman-clamav</A>
283
-<LI><A NAME="tex2html1268"
283
+<LI><A NAME="tex2html1280"
284 284
   HREF="node148.html">Moodle</A>
285
-<LI><A NAME="tex2html1269"
285
+<LI><A NAME="tex2html1281"
286 286
   HREF="node149.html">nclamd</A>
287
-<LI><A NAME="tex2html1270"
287
+<LI><A NAME="tex2html1282"
288 288
   HREF="node150.html">qmailmrtg7</A>
289
-<LI><A NAME="tex2html1271"
289
+<LI><A NAME="tex2html1283"
290 290
   HREF="node151.html">redWall Firewall</A>
291
-<LI><A NAME="tex2html1272"
291
+<LI><A NAME="tex2html1284"
292 292
   HREF="node152.html">Scan Log Analyzer</A>
293
-<LI><A NAME="tex2html1273"
293
+<LI><A NAME="tex2html1285"
294 294
   HREF="node153.html">snort-inline</A>
295
-<LI><A NAME="tex2html1274"
295
+<LI><A NAME="tex2html1286"
296 296
   HREF="node154.html">Snort-ClamAV</A>
297 297
 </UL></UL>
298 298
 <!--End of Table of Child-Links-->
299 299
 <BR><HR>
300 300
 <ADDRESS>
301 301
 Tomasz Kojm
302
-2006-07-01
302
+2006-10-15
303 303
 </ADDRESS>
304 304
 </BODY>
305 305
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1285"
30
+<A NAME="tex2html1297"
31 31
   HREF="node49.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1281"
33
+<A NAME="tex2html1293"
34 34
   HREF="node47.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1275"
36
+<A NAME="tex2html1287"
37 37
   HREF="node47.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1283"
39
+<A NAME="tex2html1295"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1286"
43
+<B> Next:</B> <A NAME="tex2html1298"
44 44
   HREF="node49.html">amavisd-new</A>
45
-<B> Up:</B> <A NAME="tex2html1282"
45
+<B> Up:</B> <A NAME="tex2html1294"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html1276"
47
+<B> Previous:</B> <A NAME="tex2html1288"
48 48
   HREF="node47.html">Third party software</A>
49
- &nbsp <B>  <A NAME="tex2html1284"
49
+ &nbsp <B>  <A NAME="tex2html1296"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,98 +62,98 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
62 62
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
63 63
 
64 64
 <UL>
65
-<LI><A NAME="tex2html1287"
65
+<LI><A NAME="tex2html1299"
66 66
   HREF="node49.html">amavisd-new</A>
67
-<LI><A NAME="tex2html1288"
67
+<LI><A NAME="tex2html1300"
68 68
   HREF="node50.html">AMaViS - "Next Generation"</A>
69
-<LI><A NAME="tex2html1289"
69
+<LI><A NAME="tex2html1301"
70 70
   HREF="node51.html">ClamdMail</A>
71
-<LI><A NAME="tex2html1290"
71
+<LI><A NAME="tex2html1302"
72 72
   HREF="node52.html">Clement</A>
73
-<LI><A NAME="tex2html1291"
73
+<LI><A NAME="tex2html1303"
74 74
   HREF="node53.html">cgpav</A>
75
-<LI><A NAME="tex2html1292"
75
+<LI><A NAME="tex2html1304"
76 76
   HREF="node54.html">ClamCour</A>
77
-<LI><A NAME="tex2html1293"
77
+<LI><A NAME="tex2html1305"
78 78
   HREF="node55.html">clamfilter</A>
79
-<LI><A NAME="tex2html1294"
79
+<LI><A NAME="tex2html1306"
80 80
   HREF="node56.html">ClamSMTP</A>
81
-<LI><A NAME="tex2html1295"
81
+<LI><A NAME="tex2html1307"
82 82
   HREF="node57.html">clapf</A>
83
-<LI><A NAME="tex2html1296"
83
+<LI><A NAME="tex2html1308"
84 84
   HREF="node58.html">DSpamPD</A>
85
-<LI><A NAME="tex2html1297"
85
+<LI><A NAME="tex2html1309"
86 86
   HREF="node59.html">exiscan</A>
87
-<LI><A NAME="tex2html1298"
87
+<LI><A NAME="tex2html1310"
88 88
   HREF="node60.html">Gadoyanvirus</A>
89
-<LI><A NAME="tex2html1299"
89
+<LI><A NAME="tex2html1311"
90 90
   HREF="node61.html">hMailServer</A>
91
-<LI><A NAME="tex2html1300"
91
+<LI><A NAME="tex2html1312"
92 92
   HREF="node62.html">IVS Milter</A>
93
-<LI><A NAME="tex2html1301"
93
+<LI><A NAME="tex2html1313"
94 94
   HREF="node63.html">j-chkmail</A>
95
-<LI><A NAME="tex2html1302"
95
+<LI><A NAME="tex2html1314"
96 96
   HREF="node64.html">Mail Avenger</A>
97
-<LI><A NAME="tex2html1303"
97
+<LI><A NAME="tex2html1315"
98 98
   HREF="node65.html">Mailnees</A>
99
-<LI><A NAME="tex2html1304"
99
+<LI><A NAME="tex2html1316"
100 100
   HREF="node66.html">MailScanner</A>
101
-<LI><A NAME="tex2html1305"
101
+<LI><A NAME="tex2html1317"
102 102
   HREF="node67.html">Maverix</A>
103
-<LI><A NAME="tex2html1306"
103
+<LI><A NAME="tex2html1318"
104 104
   HREF="node68.html">MIMEDefang</A>
105
-<LI><A NAME="tex2html1307"
105
+<LI><A NAME="tex2html1319"
106 106
   HREF="node69.html">mxGuard for IMail</A>
107
-<LI><A NAME="tex2html1308"
107
+<LI><A NAME="tex2html1320"
108 108
   HREF="node70.html">OdeiaVir</A>
109
-<LI><A NAME="tex2html1309"
109
+<LI><A NAME="tex2html1321"
110 110
   HREF="node71.html">OpenProtect</A>
111
-<LI><A NAME="tex2html1310"
111
+<LI><A NAME="tex2html1322"
112 112
   HREF="node72.html">Protea AntiVirus Tools</A>
113
-<LI><A NAME="tex2html1311"
113
+<LI><A NAME="tex2html1323"
114 114
   HREF="node73.html">PSCM</A>
115
-<LI><A NAME="tex2html1312"
115
+<LI><A NAME="tex2html1324"
116 116
   HREF="node74.html">PTSMail Utilities</A>
117
-<LI><A NAME="tex2html1313"
117
+<LI><A NAME="tex2html1325"
118 118
   HREF="node75.html">pymavis</A>
119
-<LI><A NAME="tex2html1314"
119
+<LI><A NAME="tex2html1326"
120 120
   HREF="node76.html">Qmail-Scanner</A>
121
-<LI><A NAME="tex2html1315"
121
+<LI><A NAME="tex2html1327"
122 122
   HREF="node77.html">qpsmtp</A>
123
-<LI><A NAME="tex2html1316"
123
+<LI><A NAME="tex2html1328"
124 124
   HREF="node78.html">qscanq</A>
125
-<LI><A NAME="tex2html1317"
125
+<LI><A NAME="tex2html1329"
126 126
   HREF="node79.html">qSheff</A>
127
-<LI><A NAME="tex2html1318"
127
+<LI><A NAME="tex2html1330"
128 128
   HREF="node80.html">RevolSys SMTP kit for Postfix</A>
129
-<LI><A NAME="tex2html1319"
129
+<LI><A NAME="tex2html1331"
130 130
   HREF="node81.html">Sagator</A>
131
-<LI><A NAME="tex2html1320"
131
+<LI><A NAME="tex2html1332"
132 132
   HREF="node82.html">Scrubber</A>
133
-<LI><A NAME="tex2html1321"
133
+<LI><A NAME="tex2html1333"
134 134
   HREF="node83.html">Secure Mail Intelligence!</A>
135
-<LI><A NAME="tex2html1322"
135
+<LI><A NAME="tex2html1334"
136 136
   HREF="node84.html">simscan</A>
137
-<LI><A NAME="tex2html1323"
137
+<LI><A NAME="tex2html1335"
138 138
   HREF="node85.html">SmarterMail Filter</A>
139
-<LI><A NAME="tex2html1324"
139
+<LI><A NAME="tex2html1336"
140 140
   HREF="node86.html">smf-clamd</A>
141
-<LI><A NAME="tex2html1325"
141
+<LI><A NAME="tex2html1337"
142 142
   HREF="node87.html">smtpfilter</A>
143
-<LI><A NAME="tex2html1326"
143
+<LI><A NAME="tex2html1338"
144 144
   HREF="node88.html">smtp-gated</A>
145
-<LI><A NAME="tex2html1327"
145
+<LI><A NAME="tex2html1339"
146 146
   HREF="node89.html">smtp-vilter</A>
147
-<LI><A NAME="tex2html1328"
147
+<LI><A NAME="tex2html1340"
148 148
   HREF="node90.html">Zabit</A>
149
-<LI><A NAME="tex2html1329"
149
+<LI><A NAME="tex2html1341"
150 150
   HREF="node91.html">zmscanner</A>
151 151
 </UL>
152 152
 <!--End of Table of Child-Links-->
153 153
 <BR><HR>
154 154
 <ADDRESS>
155 155
 Tomasz Kojm
156
-2006-07-01
156
+2006-10-15
157 157
 </ADDRESS>
158 158
 </BODY>
159 159
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1340"
30
+<A NAME="tex2html1352"
31 31
   HREF="node50.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1336"
33
+<A NAME="tex2html1348"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1330"
36
+<A NAME="tex2html1342"
37 37
   HREF="node48.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1338"
39
+<A NAME="tex2html1350"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1341"
43
+<B> Next:</B> <A NAME="tex2html1353"
44 44
   HREF="node50.html">AMaViS - "Next Generation"</A>
45
-<B> Up:</B> <A NAME="tex2html1337"
45
+<B> Up:</B> <A NAME="tex2html1349"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1331"
47
+<B> Previous:</B> <A NAME="tex2html1343"
48 48
   HREF="node48.html">MTA + ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html1339"
49
+ &nbsp <B>  <A NAME="tex2html1351"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
74
+2006-10-15
75 75
 </ADDRESS>
76 76
 </BODY>
77 77
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html634"
29
+<A NAME="tex2html646"
30 30
   HREF="node6.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html630"
32
+<A NAME="tex2html642"
33 33
   HREF="node2.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html626"
35
+<A NAME="tex2html638"
36 36
   HREF="node4.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html632"
38
+<A NAME="tex2html644"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html635"
42
+<B> Next:</B> <A NAME="tex2html647"
43 43
   HREF="node6.html">Base package</A>
44
-<B> Up:</B> <A NAME="tex2html631"
44
+<B> Up:</B> <A NAME="tex2html643"
45 45
   HREF="node2.html">Introduction</A>
46
-<B> Previous:</B> <A NAME="tex2html627"
46
+<B> Previous:</B> <A NAME="tex2html639"
47 47
   HREF="node4.html">Mailing lists</A>
48
- &nbsp <B>  <A NAME="tex2html633"
48
+ &nbsp <B>  <A NAME="tex2html645"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -70,7 +70,7 @@ and then submit it on our website:
70 70
 <BR><HR>
71 71
 <ADDRESS>
72 72
 Tomasz Kojm
73
-2006-07-01
73
+2006-10-15
74 74
 </ADDRESS>
75 75
 </BODY>
76 76
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1352"
30
+<A NAME="tex2html1364"
31 31
   HREF="node51.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1348"
33
+<A NAME="tex2html1360"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1342"
36
+<A NAME="tex2html1354"
37 37
   HREF="node49.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1350"
39
+<A NAME="tex2html1362"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1353"
43
+<B> Next:</B> <A NAME="tex2html1365"
44 44
   HREF="node51.html">ClamdMail</A>
45
-<B> Up:</B> <A NAME="tex2html1349"
45
+<B> Up:</B> <A NAME="tex2html1361"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1343"
47
+<B> Previous:</B> <A NAME="tex2html1355"
48 48
   HREF="node49.html">amavisd-new</A>
49
- &nbsp <B>  <A NAME="tex2html1351"
49
+ &nbsp <B>  <A NAME="tex2html1363"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
84
+2006-10-15
85 85
 </ADDRESS>
86 86
 </BODY>
87 87
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1364"
30
+<A NAME="tex2html1376"
31 31
   HREF="node52.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1360"
33
+<A NAME="tex2html1372"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1354"
36
+<A NAME="tex2html1366"
37 37
   HREF="node50.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1362"
39
+<A NAME="tex2html1374"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1365"
43
+<B> Next:</B> <A NAME="tex2html1377"
44 44
   HREF="node52.html">Clement</A>
45
-<B> Up:</B> <A NAME="tex2html1361"
45
+<B> Up:</B> <A NAME="tex2html1373"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1355"
47
+<B> Previous:</B> <A NAME="tex2html1367"
48 48
   HREF="node50.html">AMaViS - "Next Generation"</A>
49
- &nbsp <B>  <A NAME="tex2html1363"
49
+ &nbsp <B>  <A NAME="tex2html1375"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1376"
30
+<A NAME="tex2html1388"
31 31
   HREF="node53.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1372"
33
+<A NAME="tex2html1384"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1366"
36
+<A NAME="tex2html1378"
37 37
   HREF="node51.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1374"
39
+<A NAME="tex2html1386"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1377"
43
+<B> Next:</B> <A NAME="tex2html1389"
44 44
   HREF="node53.html">cgpav</A>
45
-<B> Up:</B> <A NAME="tex2html1373"
45
+<B> Up:</B> <A NAME="tex2html1385"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1367"
47
+<B> Previous:</B> <A NAME="tex2html1379"
48 48
   HREF="node51.html">ClamdMail</A>
49
- &nbsp <B>  <A NAME="tex2html1375"
49
+ &nbsp <B>  <A NAME="tex2html1387"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -68,7 +68,7 @@ Clement is an application working as an mail server firewall. Its only
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1388"
30
+<A NAME="tex2html1400"
31 31
   HREF="node54.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1384"
33
+<A NAME="tex2html1396"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1378"
36
+<A NAME="tex2html1390"
37 37
   HREF="node52.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1386"
39
+<A NAME="tex2html1398"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1389"
43
+<B> Next:</B> <A NAME="tex2html1401"
44 44
   HREF="node54.html">ClamCour</A>
45
-<B> Up:</B> <A NAME="tex2html1385"
45
+<B> Up:</B> <A NAME="tex2html1397"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1379"
47
+<B> Previous:</B> <A NAME="tex2html1391"
48 48
   HREF="node52.html">Clement</A>
49
- &nbsp <B>  <A NAME="tex2html1387"
49
+ &nbsp <B>  <A NAME="tex2html1399"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1400"
30
+<A NAME="tex2html1412"
31 31
   HREF="node55.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1396"
33
+<A NAME="tex2html1408"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1390"
36
+<A NAME="tex2html1402"
37 37
   HREF="node53.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1398"
39
+<A NAME="tex2html1410"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1401"
43
+<B> Next:</B> <A NAME="tex2html1413"
44 44
   HREF="node55.html">clamfilter</A>
45
-<B> Up:</B> <A NAME="tex2html1397"
45
+<B> Up:</B> <A NAME="tex2html1409"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1391"
47
+<B> Previous:</B> <A NAME="tex2html1403"
48 48
   HREF="node53.html">cgpav</A>
49
- &nbsp <B>  <A NAME="tex2html1399"
49
+ &nbsp <B>  <A NAME="tex2html1411"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1412"
30
+<A NAME="tex2html1424"
31 31
   HREF="node56.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1408"
33
+<A NAME="tex2html1420"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1402"
36
+<A NAME="tex2html1414"
37 37
   HREF="node54.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1410"
39
+<A NAME="tex2html1422"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1413"
43
+<B> Next:</B> <A NAME="tex2html1425"
44 44
   HREF="node56.html">ClamSMTP</A>
45
-<B> Up:</B> <A NAME="tex2html1409"
45
+<B> Up:</B> <A NAME="tex2html1421"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1403"
47
+<B> Previous:</B> <A NAME="tex2html1415"
48 48
   HREF="node54.html">ClamCour</A>
49
- &nbsp <B>  <A NAME="tex2html1411"
49
+ &nbsp <B>  <A NAME="tex2html1423"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1424"
30
+<A NAME="tex2html1436"
31 31
   HREF="node57.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1420"
33
+<A NAME="tex2html1432"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1414"
36
+<A NAME="tex2html1426"
37 37
   HREF="node55.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1422"
39
+<A NAME="tex2html1434"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1425"
43
+<B> Next:</B> <A NAME="tex2html1437"
44 44
   HREF="node57.html">clapf</A>
45
-<B> Up:</B> <A NAME="tex2html1421"
45
+<B> Up:</B> <A NAME="tex2html1433"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1415"
47
+<B> Previous:</B> <A NAME="tex2html1427"
48 48
   HREF="node55.html">clamfilter</A>
49
- &nbsp <B>  <A NAME="tex2html1423"
49
+ &nbsp <B>  <A NAME="tex2html1435"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1436"
30
+<A NAME="tex2html1448"
31 31
   HREF="node58.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1432"
33
+<A NAME="tex2html1444"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1426"
36
+<A NAME="tex2html1438"
37 37
   HREF="node56.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1434"
39
+<A NAME="tex2html1446"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1437"
43
+<B> Next:</B> <A NAME="tex2html1449"
44 44
   HREF="node58.html">DSpamPD</A>
45
-<B> Up:</B> <A NAME="tex2html1433"
45
+<B> Up:</B> <A NAME="tex2html1445"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1427"
47
+<B> Previous:</B> <A NAME="tex2html1439"
48 48
   HREF="node56.html">ClamSMTP</A>
49
- &nbsp <B>  <A NAME="tex2html1435"
49
+ &nbsp <B>  <A NAME="tex2html1447"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1448"
30
+<A NAME="tex2html1460"
31 31
   HREF="node59.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1444"
33
+<A NAME="tex2html1456"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1438"
36
+<A NAME="tex2html1450"
37 37
   HREF="node57.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1446"
39
+<A NAME="tex2html1458"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1449"
43
+<B> Next:</B> <A NAME="tex2html1461"
44 44
   HREF="node59.html">exiscan</A>
45
-<B> Up:</B> <A NAME="tex2html1445"
45
+<B> Up:</B> <A NAME="tex2html1457"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1439"
47
+<B> Previous:</B> <A NAME="tex2html1451"
48 48
   HREF="node57.html">clapf</A>
49
- &nbsp <B>  <A NAME="tex2html1447"
49
+ &nbsp <B>  <A NAME="tex2html1459"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1460"
30
+<A NAME="tex2html1472"
31 31
   HREF="node60.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1456"
33
+<A NAME="tex2html1468"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1450"
36
+<A NAME="tex2html1462"
37 37
   HREF="node58.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1458"
39
+<A NAME="tex2html1470"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1461"
43
+<B> Next:</B> <A NAME="tex2html1473"
44 44
   HREF="node60.html">Gadoyanvirus</A>
45
-<B> Up:</B> <A NAME="tex2html1457"
45
+<B> Up:</B> <A NAME="tex2html1469"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1451"
47
+<B> Previous:</B> <A NAME="tex2html1463"
48 48
   HREF="node58.html">DSpamPD</A>
49
- &nbsp <B>  <A NAME="tex2html1459"
49
+ &nbsp <B>  <A NAME="tex2html1471"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html646"
30
+<A NAME="tex2html658"
31 31
   HREF="node7.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html642"
33
+<A NAME="tex2html654"
34 34
   HREF="clamdoc.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html636"
36
+<A NAME="tex2html648"
37 37
   HREF="node5.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html644"
39
+<A NAME="tex2html656"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html647"
43
+<B> Next:</B> <A NAME="tex2html659"
44 44
   HREF="node7.html">Supported platforms</A>
45
-<B> Up:</B> <A NAME="tex2html643"
45
+<B> Up:</B> <A NAME="tex2html655"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html637"
47
+<B> Previous:</B> <A NAME="tex2html649"
48 48
   HREF="node5.html">Virus submitting</A>
49
- &nbsp <B>  <A NAME="tex2html645"
49
+ &nbsp <B>  <A NAME="tex2html657"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,18 +62,18 @@ Base package</A>
62 62
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
63 63
 
64 64
 <UL>
65
-<LI><A NAME="tex2html648"
65
+<LI><A NAME="tex2html660"
66 66
   HREF="node7.html">Supported platforms</A>
67
-<LI><A NAME="tex2html649"
67
+<LI><A NAME="tex2html661"
68 68
   HREF="node8.html">Binary packages</A>
69
-<LI><A NAME="tex2html650"
69
+<LI><A NAME="tex2html662"
70 70
   HREF="node9.html">Daily built snapshots</A>
71 71
 </UL>
72 72
 <!--End of Table of Child-Links-->
73 73
 <BR><HR>
74 74
 <ADDRESS>
75 75
 Tomasz Kojm
76
-2006-07-01
76
+2006-10-15
77 77
 </ADDRESS>
78 78
 </BODY>
79 79
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1472"
30
+<A NAME="tex2html1484"
31 31
   HREF="node61.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1468"
33
+<A NAME="tex2html1480"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1462"
36
+<A NAME="tex2html1474"
37 37
   HREF="node59.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1470"
39
+<A NAME="tex2html1482"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1473"
43
+<B> Next:</B> <A NAME="tex2html1485"
44 44
   HREF="node61.html">hMailServer</A>
45
-<B> Up:</B> <A NAME="tex2html1469"
45
+<B> Up:</B> <A NAME="tex2html1481"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1463"
47
+<B> Previous:</B> <A NAME="tex2html1475"
48 48
   HREF="node59.html">exiscan</A>
49
- &nbsp <B>  <A NAME="tex2html1471"
49
+ &nbsp <B>  <A NAME="tex2html1483"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
72
+2006-10-15
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1484"
30
+<A NAME="tex2html1496"
31 31
   HREF="node62.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1480"
33
+<A NAME="tex2html1492"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1474"
36
+<A NAME="tex2html1486"
37 37
   HREF="node60.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1482"
39
+<A NAME="tex2html1494"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1485"
43
+<B> Next:</B> <A NAME="tex2html1497"
44 44
   HREF="node62.html">IVS Milter</A>
45
-<B> Up:</B> <A NAME="tex2html1481"
45
+<B> Up:</B> <A NAME="tex2html1493"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1475"
47
+<B> Previous:</B> <A NAME="tex2html1487"
48 48
   HREF="node60.html">Gadoyanvirus</A>
49
- &nbsp <B>  <A NAME="tex2html1483"
49
+ &nbsp <B>  <A NAME="tex2html1495"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
73
+2006-10-15
74 74
 </ADDRESS>
75 75
 </BODY>
76 76
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1496"
30
+<A NAME="tex2html1508"
31 31
   HREF="node63.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1492"
33
+<A NAME="tex2html1504"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1486"
36
+<A NAME="tex2html1498"
37 37
   HREF="node61.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1494"
39
+<A NAME="tex2html1506"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1497"
43
+<B> Next:</B> <A NAME="tex2html1509"
44 44
   HREF="node63.html">j-chkmail</A>
45
-<B> Up:</B> <A NAME="tex2html1493"
45
+<B> Up:</B> <A NAME="tex2html1505"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1487"
47
+<B> Previous:</B> <A NAME="tex2html1499"
48 48
   HREF="node61.html">hMailServer</A>
49
- &nbsp <B>  <A NAME="tex2html1495"
49
+ &nbsp <B>  <A NAME="tex2html1507"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1508"
30
+<A NAME="tex2html1520"
31 31
   HREF="node64.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1504"
33
+<A NAME="tex2html1516"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1498"
36
+<A NAME="tex2html1510"
37 37
   HREF="node62.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1506"
39
+<A NAME="tex2html1518"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1509"
43
+<B> Next:</B> <A NAME="tex2html1521"
44 44
   HREF="node64.html">Mail Avenger</A>
45
-<B> Up:</B> <A NAME="tex2html1505"
45
+<B> Up:</B> <A NAME="tex2html1517"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1499"
47
+<B> Previous:</B> <A NAME="tex2html1511"
48 48
   HREF="node62.html">IVS Milter</A>
49
- &nbsp <B>  <A NAME="tex2html1507"
49
+ &nbsp <B>  <A NAME="tex2html1519"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
72
+2006-10-15
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1520"
30
+<A NAME="tex2html1532"
31 31
   HREF="node65.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1516"
33
+<A NAME="tex2html1528"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1510"
36
+<A NAME="tex2html1522"
37 37
   HREF="node63.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1518"
39
+<A NAME="tex2html1530"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1521"
43
+<B> Next:</B> <A NAME="tex2html1533"
44 44
   HREF="node65.html">Mailnees</A>
45
-<B> Up:</B> <A NAME="tex2html1517"
45
+<B> Up:</B> <A NAME="tex2html1529"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1511"
47
+<B> Previous:</B> <A NAME="tex2html1523"
48 48
   HREF="node63.html">j-chkmail</A>
49
- &nbsp <B>  <A NAME="tex2html1519"
49
+ &nbsp <B>  <A NAME="tex2html1531"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
72
+2006-10-15
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1532"
30
+<A NAME="tex2html1544"
31 31
   HREF="node66.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1528"
33
+<A NAME="tex2html1540"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1522"
36
+<A NAME="tex2html1534"
37 37
   HREF="node64.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1530"
39
+<A NAME="tex2html1542"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1533"
43
+<B> Next:</B> <A NAME="tex2html1545"
44 44
   HREF="node66.html">MailScanner</A>
45
-<B> Up:</B> <A NAME="tex2html1529"
45
+<B> Up:</B> <A NAME="tex2html1541"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1523"
47
+<B> Previous:</B> <A NAME="tex2html1535"
48 48
   HREF="node64.html">Mail Avenger</A>
49
- &nbsp <B>  <A NAME="tex2html1531"
49
+ &nbsp <B>  <A NAME="tex2html1543"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1544"
30
+<A NAME="tex2html1556"
31 31
   HREF="node67.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1540"
33
+<A NAME="tex2html1552"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1534"
36
+<A NAME="tex2html1546"
37 37
   HREF="node65.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1542"
39
+<A NAME="tex2html1554"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1545"
43
+<B> Next:</B> <A NAME="tex2html1557"
44 44
   HREF="node67.html">Maverix</A>
45
-<B> Up:</B> <A NAME="tex2html1541"
45
+<B> Up:</B> <A NAME="tex2html1553"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1535"
47
+<B> Previous:</B> <A NAME="tex2html1547"
48 48
   HREF="node65.html">Mailnees</A>
49
- &nbsp <B>  <A NAME="tex2html1543"
49
+ &nbsp <B>  <A NAME="tex2html1555"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1556"
30
+<A NAME="tex2html1568"
31 31
   HREF="node68.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1552"
33
+<A NAME="tex2html1564"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1546"
36
+<A NAME="tex2html1558"
37 37
   HREF="node66.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1554"
39
+<A NAME="tex2html1566"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1557"
43
+<B> Next:</B> <A NAME="tex2html1569"
44 44
   HREF="node68.html">MIMEDefang</A>
45
-<B> Up:</B> <A NAME="tex2html1553"
45
+<B> Up:</B> <A NAME="tex2html1565"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1547"
47
+<B> Previous:</B> <A NAME="tex2html1559"
48 48
   HREF="node66.html">MailScanner</A>
49
- &nbsp <B>  <A NAME="tex2html1555"
49
+ &nbsp <B>  <A NAME="tex2html1567"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1568"
30
+<A NAME="tex2html1580"
31 31
   HREF="node69.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1564"
33
+<A NAME="tex2html1576"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1558"
36
+<A NAME="tex2html1570"
37 37
   HREF="node67.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1566"
39
+<A NAME="tex2html1578"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1569"
43
+<B> Next:</B> <A NAME="tex2html1581"
44 44
   HREF="node69.html">mxGuard for IMail</A>
45
-<B> Up:</B> <A NAME="tex2html1565"
45
+<B> Up:</B> <A NAME="tex2html1577"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1559"
47
+<B> Previous:</B> <A NAME="tex2html1571"
48 48
   HREF="node67.html">Maverix</A>
49
- &nbsp <B>  <A NAME="tex2html1567"
49
+ &nbsp <B>  <A NAME="tex2html1579"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1580"
30
+<A NAME="tex2html1592"
31 31
   HREF="node70.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1576"
33
+<A NAME="tex2html1588"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1570"
36
+<A NAME="tex2html1582"
37 37
   HREF="node68.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1578"
39
+<A NAME="tex2html1590"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1581"
43
+<B> Next:</B> <A NAME="tex2html1593"
44 44
   HREF="node70.html">OdeiaVir</A>
45
-<B> Up:</B> <A NAME="tex2html1577"
45
+<B> Up:</B> <A NAME="tex2html1589"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1571"
47
+<B> Previous:</B> <A NAME="tex2html1583"
48 48
   HREF="node68.html">MIMEDefang</A>
49
- &nbsp <B>  <A NAME="tex2html1579"
49
+ &nbsp <B>  <A NAME="tex2html1591"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html661"
30
+<A NAME="tex2html673"
31 31
   HREF="node8.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html657"
33
+<A NAME="tex2html669"
34 34
   HREF="node6.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html651"
36
+<A NAME="tex2html663"
37 37
   HREF="node6.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html659"
39
+<A NAME="tex2html671"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html662"
43
+<B> Next:</B> <A NAME="tex2html674"
44 44
   HREF="node8.html">Binary packages</A>
45
-<B> Up:</B> <A NAME="tex2html658"
45
+<B> Up:</B> <A NAME="tex2html670"
46 46
   HREF="node6.html">Base package</A>
47
-<B> Previous:</B> <A NAME="tex2html652"
47
+<B> Previous:</B> <A NAME="tex2html664"
48 48
   HREF="node6.html">Base package</A>
49
- &nbsp <B>  <A NAME="tex2html660"
49
+ &nbsp <B>  <A NAME="tex2html672"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -96,7 +96,7 @@ Supported platforms</A>
96 96
 <BR><HR>
97 97
 <ADDRESS>
98 98
 Tomasz Kojm
99
-2006-07-01
99
+2006-10-15
100 100
 </ADDRESS>
101 101
 </BODY>
102 102
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1592"
30
+<A NAME="tex2html1604"
31 31
   HREF="node71.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1588"
33
+<A NAME="tex2html1600"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1582"
36
+<A NAME="tex2html1594"
37 37
   HREF="node69.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1590"
39
+<A NAME="tex2html1602"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1593"
43
+<B> Next:</B> <A NAME="tex2html1605"
44 44
   HREF="node71.html">OpenProtect</A>
45
-<B> Up:</B> <A NAME="tex2html1589"
45
+<B> Up:</B> <A NAME="tex2html1601"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1583"
47
+<B> Previous:</B> <A NAME="tex2html1595"
48 48
   HREF="node69.html">mxGuard for IMail</A>
49
- &nbsp <B>  <A NAME="tex2html1591"
49
+ &nbsp <B>  <A NAME="tex2html1603"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1604"
30
+<A NAME="tex2html1616"
31 31
   HREF="node72.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1600"
33
+<A NAME="tex2html1612"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1594"
36
+<A NAME="tex2html1606"
37 37
   HREF="node70.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1602"
39
+<A NAME="tex2html1614"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1605"
43
+<B> Next:</B> <A NAME="tex2html1617"
44 44
   HREF="node72.html">Protea AntiVirus Tools</A>
45
-<B> Up:</B> <A NAME="tex2html1601"
45
+<B> Up:</B> <A NAME="tex2html1613"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1595"
47
+<B> Previous:</B> <A NAME="tex2html1607"
48 48
   HREF="node70.html">OdeiaVir</A>
49
- &nbsp <B>  <A NAME="tex2html1603"
49
+ &nbsp <B>  <A NAME="tex2html1615"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
72
+2006-10-15
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1616"
30
+<A NAME="tex2html1628"
31 31
   HREF="node73.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1612"
33
+<A NAME="tex2html1624"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1606"
36
+<A NAME="tex2html1618"
37 37
   HREF="node71.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1614"
39
+<A NAME="tex2html1626"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1617"
43
+<B> Next:</B> <A NAME="tex2html1629"
44 44
   HREF="node73.html">PSCM</A>
45
-<B> Up:</B> <A NAME="tex2html1613"
45
+<B> Up:</B> <A NAME="tex2html1625"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1607"
47
+<B> Previous:</B> <A NAME="tex2html1619"
48 48
   HREF="node71.html">OpenProtect</A>
49
- &nbsp <B>  <A NAME="tex2html1615"
49
+ &nbsp <B>  <A NAME="tex2html1627"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1628"
30
+<A NAME="tex2html1640"
31 31
   HREF="node74.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1624"
33
+<A NAME="tex2html1636"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1618"
36
+<A NAME="tex2html1630"
37 37
   HREF="node72.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1626"
39
+<A NAME="tex2html1638"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1629"
43
+<B> Next:</B> <A NAME="tex2html1641"
44 44
   HREF="node74.html">PTSMail Utilities</A>
45
-<B> Up:</B> <A NAME="tex2html1625"
45
+<B> Up:</B> <A NAME="tex2html1637"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1619"
47
+<B> Previous:</B> <A NAME="tex2html1631"
48 48
   HREF="node72.html">Protea AntiVirus Tools</A>
49
- &nbsp <B>  <A NAME="tex2html1627"
49
+ &nbsp <B>  <A NAME="tex2html1639"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -67,7 +67,7 @@ PSCM is an RPM package that provides out-of-box easy installation for
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1640"
30
+<A NAME="tex2html1652"
31 31
   HREF="node75.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1636"
33
+<A NAME="tex2html1648"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1630"
36
+<A NAME="tex2html1642"
37 37
   HREF="node73.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1638"
39
+<A NAME="tex2html1650"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1641"
43
+<B> Next:</B> <A NAME="tex2html1653"
44 44
   HREF="node75.html">pymavis</A>
45
-<B> Up:</B> <A NAME="tex2html1637"
45
+<B> Up:</B> <A NAME="tex2html1649"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1631"
47
+<B> Previous:</B> <A NAME="tex2html1643"
48 48
   HREF="node73.html">PSCM</A>
49
- &nbsp <B>  <A NAME="tex2html1639"
49
+ &nbsp <B>  <A NAME="tex2html1651"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1652"
30
+<A NAME="tex2html1664"
31 31
   HREF="node76.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1648"
33
+<A NAME="tex2html1660"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1642"
36
+<A NAME="tex2html1654"
37 37
   HREF="node74.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1650"
39
+<A NAME="tex2html1662"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1653"
43
+<B> Next:</B> <A NAME="tex2html1665"
44 44
   HREF="node76.html">Qmail-Scanner</A>
45
-<B> Up:</B> <A NAME="tex2html1649"
45
+<B> Up:</B> <A NAME="tex2html1661"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1643"
47
+<B> Previous:</B> <A NAME="tex2html1655"
48 48
   HREF="node74.html">PTSMail Utilities</A>
49
- &nbsp <B>  <A NAME="tex2html1651"
49
+ &nbsp <B>  <A NAME="tex2html1663"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
73
+2006-10-15
74 74
 </ADDRESS>
75 75
 </BODY>
76 76
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1664"
30
+<A NAME="tex2html1676"
31 31
   HREF="node77.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1660"
33
+<A NAME="tex2html1672"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1654"
36
+<A NAME="tex2html1666"
37 37
   HREF="node75.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1662"
39
+<A NAME="tex2html1674"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1665"
43
+<B> Next:</B> <A NAME="tex2html1677"
44 44
   HREF="node77.html">qpsmtp</A>
45
-<B> Up:</B> <A NAME="tex2html1661"
45
+<B> Up:</B> <A NAME="tex2html1673"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1655"
47
+<B> Previous:</B> <A NAME="tex2html1667"
48 48
   HREF="node75.html">pymavis</A>
49
- &nbsp <B>  <A NAME="tex2html1663"
49
+ &nbsp <B>  <A NAME="tex2html1675"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1676"
30
+<A NAME="tex2html1688"
31 31
   HREF="node78.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1672"
33
+<A NAME="tex2html1684"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1666"
36
+<A NAME="tex2html1678"
37 37
   HREF="node76.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1674"
39
+<A NAME="tex2html1686"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1677"
43
+<B> Next:</B> <A NAME="tex2html1689"
44 44
   HREF="node78.html">qscanq</A>
45
-<B> Up:</B> <A NAME="tex2html1673"
45
+<B> Up:</B> <A NAME="tex2html1685"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1667"
47
+<B> Previous:</B> <A NAME="tex2html1679"
48 48
   HREF="node76.html">Qmail-Scanner</A>
49
- &nbsp <B>  <A NAME="tex2html1675"
49
+ &nbsp <B>  <A NAME="tex2html1687"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1688"
30
+<A NAME="tex2html1700"
31 31
   HREF="node79.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1684"
33
+<A NAME="tex2html1696"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1678"
36
+<A NAME="tex2html1690"
37 37
   HREF="node77.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1686"
39
+<A NAME="tex2html1698"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1689"
43
+<B> Next:</B> <A NAME="tex2html1701"
44 44
   HREF="node79.html">qSheff</A>
45
-<B> Up:</B> <A NAME="tex2html1685"
45
+<B> Up:</B> <A NAME="tex2html1697"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1679"
47
+<B> Previous:</B> <A NAME="tex2html1691"
48 48
   HREF="node77.html">qpsmtp</A>
49
- &nbsp <B>  <A NAME="tex2html1687"
49
+ &nbsp <B>  <A NAME="tex2html1699"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1700"
30
+<A NAME="tex2html1712"
31 31
   HREF="node80.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1696"
33
+<A NAME="tex2html1708"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1690"
36
+<A NAME="tex2html1702"
37 37
   HREF="node78.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1698"
39
+<A NAME="tex2html1710"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1701"
43
+<B> Next:</B> <A NAME="tex2html1713"
44 44
   HREF="node80.html">RevolSys SMTP kit for</A>
45
-<B> Up:</B> <A NAME="tex2html1697"
45
+<B> Up:</B> <A NAME="tex2html1709"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1691"
47
+<B> Previous:</B> <A NAME="tex2html1703"
48 48
   HREF="node78.html">qscanq</A>
49
- &nbsp <B>  <A NAME="tex2html1699"
49
+ &nbsp <B>  <A NAME="tex2html1711"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -67,7 +67,7 @@ The tool allows running anti-virus, body/subject/attachment filtering, user
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html673"
30
+<A NAME="tex2html685"
31 31
   HREF="node9.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html669"
33
+<A NAME="tex2html681"
34 34
   HREF="node6.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html663"
36
+<A NAME="tex2html675"
37 37
   HREF="node7.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html671"
39
+<A NAME="tex2html683"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html674"
43
+<B> Next:</B> <A NAME="tex2html686"
44 44
   HREF="node9.html">Daily built snapshots</A>
45
-<B> Up:</B> <A NAME="tex2html670"
45
+<B> Up:</B> <A NAME="tex2html682"
46 46
   HREF="node6.html">Base package</A>
47
-<B> Previous:</B> <A NAME="tex2html664"
47
+<B> Previous:</B> <A NAME="tex2html676"
48 48
   HREF="node7.html">Supported platforms</A>
49
- &nbsp <B>  <A NAME="tex2html672"
49
+ &nbsp <B>  <A NAME="tex2html684"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -234,31 +234,31 @@ A standalone GUI version is also available. See ClamWin
234 234
 <P>
235 235
 <HR>
236 236
 <!--Navigation Panel-->
237
-<A NAME="tex2html673"
237
+<A NAME="tex2html685"
238 238
   HREF="node9.html">
239 239
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
240
-<A NAME="tex2html669"
240
+<A NAME="tex2html681"
241 241
   HREF="node6.html">
242 242
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
243
-<A NAME="tex2html663"
243
+<A NAME="tex2html675"
244 244
   HREF="node7.html">
245 245
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
246
-<A NAME="tex2html671"
246
+<A NAME="tex2html683"
247 247
   HREF="node1.html">
248 248
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
249 249
 <BR>
250
-<B> Next:</B> <A NAME="tex2html674"
250
+<B> Next:</B> <A NAME="tex2html686"
251 251
   HREF="node9.html">Daily built snapshots</A>
252
-<B> Up:</B> <A NAME="tex2html670"
252
+<B> Up:</B> <A NAME="tex2html682"
253 253
   HREF="node6.html">Base package</A>
254
-<B> Previous:</B> <A NAME="tex2html664"
254
+<B> Previous:</B> <A NAME="tex2html676"
255 255
   HREF="node7.html">Supported platforms</A>
256
- &nbsp <B>  <A NAME="tex2html672"
256
+ &nbsp <B>  <A NAME="tex2html684"
257 257
   HREF="node1.html">Contents</A></B> 
258 258
 <!--End of Navigation Panel-->
259 259
 <ADDRESS>
260 260
 Tomasz Kojm
261
-2006-07-01
261
+2006-10-15
262 262
 </ADDRESS>
263 263
 </BODY>
264 264
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1712"
30
+<A NAME="tex2html1724"
31 31
   HREF="node81.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1708"
33
+<A NAME="tex2html1720"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1702"
36
+<A NAME="tex2html1714"
37 37
   HREF="node79.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1710"
39
+<A NAME="tex2html1722"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1713"
43
+<B> Next:</B> <A NAME="tex2html1725"
44 44
   HREF="node81.html">Sagator</A>
45
-<B> Up:</B> <A NAME="tex2html1709"
45
+<B> Up:</B> <A NAME="tex2html1721"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1703"
47
+<B> Previous:</B> <A NAME="tex2html1715"
48 48
   HREF="node79.html">qSheff</A>
49
- &nbsp <B>  <A NAME="tex2html1711"
49
+ &nbsp <B>  <A NAME="tex2html1723"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1724"
30
+<A NAME="tex2html1736"
31 31
   HREF="node82.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1720"
33
+<A NAME="tex2html1732"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1714"
36
+<A NAME="tex2html1726"
37 37
   HREF="node80.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1722"
39
+<A NAME="tex2html1734"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1725"
43
+<B> Next:</B> <A NAME="tex2html1737"
44 44
   HREF="node82.html">Scrubber</A>
45
-<B> Up:</B> <A NAME="tex2html1721"
45
+<B> Up:</B> <A NAME="tex2html1733"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1715"
47
+<B> Previous:</B> <A NAME="tex2html1727"
48 48
   HREF="node80.html">RevolSys SMTP kit for</A>
49
- &nbsp <B>  <A NAME="tex2html1723"
49
+ &nbsp <B>  <A NAME="tex2html1735"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1736"
30
+<A NAME="tex2html1748"
31 31
   HREF="node83.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1732"
33
+<A NAME="tex2html1744"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1726"
36
+<A NAME="tex2html1738"
37 37
   HREF="node81.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1734"
39
+<A NAME="tex2html1746"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1737"
43
+<B> Next:</B> <A NAME="tex2html1749"
44 44
   HREF="node83.html">Secure Mail Intelligence!</A>
45
-<B> Up:</B> <A NAME="tex2html1733"
45
+<B> Up:</B> <A NAME="tex2html1745"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1727"
47
+<B> Previous:</B> <A NAME="tex2html1739"
48 48
   HREF="node81.html">Sagator</A>
49
- &nbsp <B>  <A NAME="tex2html1735"
49
+ &nbsp <B>  <A NAME="tex2html1747"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
75
+2006-10-15
76 76
 </ADDRESS>
77 77
 </BODY>
78 78
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1748"
30
+<A NAME="tex2html1760"
31 31
   HREF="node84.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1744"
33
+<A NAME="tex2html1756"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1738"
36
+<A NAME="tex2html1750"
37 37
   HREF="node82.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1746"
39
+<A NAME="tex2html1758"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1749"
43
+<B> Next:</B> <A NAME="tex2html1761"
44 44
   HREF="node84.html">simscan</A>
45
-<B> Up:</B> <A NAME="tex2html1745"
45
+<B> Up:</B> <A NAME="tex2html1757"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1739"
47
+<B> Previous:</B> <A NAME="tex2html1751"
48 48
   HREF="node82.html">Scrubber</A>
49
- &nbsp <B>  <A NAME="tex2html1747"
49
+ &nbsp <B>  <A NAME="tex2html1759"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
79
+2006-10-15
80 80
 </ADDRESS>
81 81
 </BODY>
82 82
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1760"
30
+<A NAME="tex2html1772"
31 31
   HREF="node85.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1756"
33
+<A NAME="tex2html1768"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1750"
36
+<A NAME="tex2html1762"
37 37
   HREF="node83.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1758"
39
+<A NAME="tex2html1770"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1761"
43
+<B> Next:</B> <A NAME="tex2html1773"
44 44
   HREF="node85.html">SmarterMail Filter</A>
45
-<B> Up:</B> <A NAME="tex2html1757"
45
+<B> Up:</B> <A NAME="tex2html1769"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1751"
47
+<B> Previous:</B> <A NAME="tex2html1763"
48 48
   HREF="node83.html">Secure Mail Intelligence!</A>
49
- &nbsp <B>  <A NAME="tex2html1759"
49
+ &nbsp <B>  <A NAME="tex2html1771"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1772"
30
+<A NAME="tex2html1784"
31 31
   HREF="node86.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1768"
33
+<A NAME="tex2html1780"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1762"
36
+<A NAME="tex2html1774"
37 37
   HREF="node84.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1770"
39
+<A NAME="tex2html1782"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1773"
43
+<B> Next:</B> <A NAME="tex2html1785"
44 44
   HREF="node86.html">smf-clamd</A>
45
-<B> Up:</B> <A NAME="tex2html1769"
45
+<B> Up:</B> <A NAME="tex2html1781"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1763"
47
+<B> Previous:</B> <A NAME="tex2html1775"
48 48
   HREF="node84.html">simscan</A>
49
- &nbsp <B>  <A NAME="tex2html1771"
49
+ &nbsp <B>  <A NAME="tex2html1783"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1784"
30
+<A NAME="tex2html1796"
31 31
   HREF="node87.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1780"
33
+<A NAME="tex2html1792"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1774"
36
+<A NAME="tex2html1786"
37 37
   HREF="node85.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1782"
39
+<A NAME="tex2html1794"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1785"
43
+<B> Next:</B> <A NAME="tex2html1797"
44 44
   HREF="node87.html">smtpfilter</A>
45
-<B> Up:</B> <A NAME="tex2html1781"
45
+<B> Up:</B> <A NAME="tex2html1793"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1775"
47
+<B> Previous:</B> <A NAME="tex2html1787"
48 48
   HREF="node85.html">SmarterMail Filter</A>
49
- &nbsp <B>  <A NAME="tex2html1783"
49
+ &nbsp <B>  <A NAME="tex2html1795"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -67,7 +67,7 @@ SmartSendmailFilter-clamd is a lightweight filter for Sendmail. It's
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1796"
30
+<A NAME="tex2html1808"
31 31
   HREF="node88.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1792"
33
+<A NAME="tex2html1804"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1786"
36
+<A NAME="tex2html1798"
37 37
   HREF="node86.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1794"
39
+<A NAME="tex2html1806"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1797"
43
+<B> Next:</B> <A NAME="tex2html1809"
44 44
   HREF="node88.html">smtp-gated</A>
45
-<B> Up:</B> <A NAME="tex2html1793"
45
+<B> Up:</B> <A NAME="tex2html1805"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1787"
47
+<B> Previous:</B> <A NAME="tex2html1799"
48 48
   HREF="node86.html">smf-clamd</A>
49
- &nbsp <B>  <A NAME="tex2html1795"
49
+ &nbsp <B>  <A NAME="tex2html1807"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1808"
30
+<A NAME="tex2html1820"
31 31
   HREF="node89.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1804"
33
+<A NAME="tex2html1816"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1798"
36
+<A NAME="tex2html1810"
37 37
   HREF="node87.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1806"
39
+<A NAME="tex2html1818"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1809"
43
+<B> Next:</B> <A NAME="tex2html1821"
44 44
   HREF="node89.html">smtp-vilter</A>
45
-<B> Up:</B> <A NAME="tex2html1805"
45
+<B> Up:</B> <A NAME="tex2html1817"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1799"
47
+<B> Previous:</B> <A NAME="tex2html1811"
48 48
   HREF="node87.html">smtpfilter</A>
49
- &nbsp <B>  <A NAME="tex2html1807"
49
+ &nbsp <B>  <A NAME="tex2html1819"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -69,7 +69,7 @@ smtp-gated is a transparent SMTP proxy supporting: NAT on Linux (netfilter),
69 69
 <BR><HR>
70 70
 <ADDRESS>
71 71
 Tomasz Kojm
72
-2006-07-01
72
+2006-10-15
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1820"
30
+<A NAME="tex2html1832"
31 31
   HREF="node90.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1816"
33
+<A NAME="tex2html1828"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1810"
36
+<A NAME="tex2html1822"
37 37
   HREF="node88.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1818"
39
+<A NAME="tex2html1830"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1821"
43
+<B> Next:</B> <A NAME="tex2html1833"
44 44
   HREF="node90.html">Zabit</A>
45
-<B> Up:</B> <A NAME="tex2html1817"
45
+<B> Up:</B> <A NAME="tex2html1829"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1811"
47
+<B> Previous:</B> <A NAME="tex2html1823"
48 48
   HREF="node88.html">smtp-gated</A>
49
- &nbsp <B>  <A NAME="tex2html1819"
49
+ &nbsp <B>  <A NAME="tex2html1831"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html683"
29
+<A NAME="tex2html695"
30 30
   HREF="node10.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html679"
32
+<A NAME="tex2html691"
33 33
   HREF="node6.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html675"
35
+<A NAME="tex2html687"
36 36
   HREF="node8.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html681"
38
+<A NAME="tex2html693"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html684"
42
+<B> Next:</B> <A NAME="tex2html696"
43 43
   HREF="node10.html">Installation</A>
44
-<B> Up:</B> <A NAME="tex2html680"
44
+<B> Up:</B> <A NAME="tex2html692"
45 45
   HREF="node6.html">Base package</A>
46
-<B> Previous:</B> <A NAME="tex2html676"
46
+<B> Previous:</B> <A NAME="tex2html688"
47 47
   HREF="node8.html">Binary packages</A>
48
- &nbsp <B>  <A NAME="tex2html682"
48
+ &nbsp <B>  <A NAME="tex2html694"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -80,7 +80,7 @@ Daily built snapshots</A>
80 80
 <BR><HR>
81 81
 <ADDRESS>
82 82
 Tomasz Kojm
83
-2006-07-01
83
+2006-10-15
84 84
 </ADDRESS>
85 85
 </BODY>
86 86
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1832"
30
+<A NAME="tex2html1844"
31 31
   HREF="node91.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1828"
33
+<A NAME="tex2html1840"
34 34
   HREF="node48.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1822"
36
+<A NAME="tex2html1834"
37 37
   HREF="node89.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1830"
39
+<A NAME="tex2html1842"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1833"
43
+<B> Next:</B> <A NAME="tex2html1845"
44 44
   HREF="node91.html">zmscanner</A>
45
-<B> Up:</B> <A NAME="tex2html1829"
45
+<B> Up:</B> <A NAME="tex2html1841"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1823"
47
+<B> Previous:</B> <A NAME="tex2html1835"
48 48
   HREF="node89.html">smtp-vilter</A>
49
- &nbsp <B>  <A NAME="tex2html1831"
49
+ &nbsp <B>  <A NAME="tex2html1843"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html1842"
29
+<A NAME="tex2html1854"
30 30
   HREF="node92.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html1838"
32
+<A NAME="tex2html1850"
33 33
   HREF="node48.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html1834"
35
+<A NAME="tex2html1846"
36 36
   HREF="node90.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html1840"
38
+<A NAME="tex2html1852"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html1843"
42
+<B> Next:</B> <A NAME="tex2html1855"
43 43
   HREF="node92.html">MTA + POP3 Proxy</A>
44
-<B> Up:</B> <A NAME="tex2html1839"
44
+<B> Up:</B> <A NAME="tex2html1851"
45 45
   HREF="node48.html">MTA + ClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html1835"
46
+<B> Previous:</B> <A NAME="tex2html1847"
47 47
   HREF="node90.html">Zabit</A>
48
- &nbsp <B>  <A NAME="tex2html1841"
48
+ &nbsp <B>  <A NAME="tex2html1853"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -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
-2006-07-01
69
+2006-10-15
70 70
 </ADDRESS>
71 71
 </BODY>
72 72
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1854"
30
+<A NAME="tex2html1866"
31 31
   HREF="node93.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1850"
33
+<A NAME="tex2html1862"
34 34
   HREF="node47.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1844"
36
+<A NAME="tex2html1856"
37 37
   HREF="node91.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1852"
39
+<A NAME="tex2html1864"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1855"
43
+<B> Next:</B> <A NAME="tex2html1867"
44 44
   HREF="node93.html">ClamMail</A>
45
-<B> Up:</B> <A NAME="tex2html1851"
45
+<B> Up:</B> <A NAME="tex2html1863"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html1845"
47
+<B> Previous:</B> <A NAME="tex2html1857"
48 48
   HREF="node91.html">zmscanner</A>
49
- &nbsp <B>  <A NAME="tex2html1853"
49
+ &nbsp <B>  <A NAME="tex2html1865"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,18 +62,18 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
62 62
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
63 63
 
64 64
 <UL>
65
-<LI><A NAME="tex2html1856"
65
+<LI><A NAME="tex2html1868"
66 66
   HREF="node93.html">ClamMail</A>
67
-<LI><A NAME="tex2html1857"
67
+<LI><A NAME="tex2html1869"
68 68
   HREF="node94.html">POP3 Virus Scanner Daemon</A>
69
-<LI><A NAME="tex2html1858"
69
+<LI><A NAME="tex2html1870"
70 70
   HREF="node95.html">pop3.proxy</A>
71 71
 </UL>
72 72
 <!--End of Table of Child-Links-->
73 73
 <BR><HR>
74 74
 <ADDRESS>
75 75
 Tomasz Kojm
76
-2006-07-01
76
+2006-10-15
77 77
 </ADDRESS>
78 78
 </BODY>
79 79
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1869"
30
+<A NAME="tex2html1881"
31 31
   HREF="node94.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1865"
33
+<A NAME="tex2html1877"
34 34
   HREF="node92.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1859"
36
+<A NAME="tex2html1871"
37 37
   HREF="node92.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1867"
39
+<A NAME="tex2html1879"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1870"
43
+<B> Next:</B> <A NAME="tex2html1882"
44 44
   HREF="node94.html">POP3 Virus Scanner Daemon</A>
45
-<B> Up:</B> <A NAME="tex2html1866"
45
+<B> Up:</B> <A NAME="tex2html1878"
46 46
   HREF="node92.html">MTA + POP3 Proxy</A>
47
-<B> Previous:</B> <A NAME="tex2html1860"
47
+<B> Previous:</B> <A NAME="tex2html1872"
48 48
   HREF="node92.html">MTA + POP3 Proxy</A>
49
- &nbsp <B>  <A NAME="tex2html1868"
49
+ &nbsp <B>  <A NAME="tex2html1880"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
68
+2006-10-15
69 69
 </ADDRESS>
70 70
 </BODY>
71 71
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1881"
30
+<A NAME="tex2html1893"
31 31
   HREF="node95.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1877"
33
+<A NAME="tex2html1889"
34 34
   HREF="node92.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1871"
36
+<A NAME="tex2html1883"
37 37
   HREF="node93.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1879"
39
+<A NAME="tex2html1891"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1882"
43
+<B> Next:</B> <A NAME="tex2html1894"
44 44
   HREF="node95.html">pop3.proxy</A>
45
-<B> Up:</B> <A NAME="tex2html1878"
45
+<B> Up:</B> <A NAME="tex2html1890"
46 46
   HREF="node92.html">MTA + POP3 Proxy</A>
47
-<B> Previous:</B> <A NAME="tex2html1872"
47
+<B> Previous:</B> <A NAME="tex2html1884"
48 48
   HREF="node93.html">ClamMail</A>
49
- &nbsp <B>  <A NAME="tex2html1880"
49
+ &nbsp <B>  <A NAME="tex2html1892"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -70,7 +70,7 @@ This is a fully transparent proxy server for POP3-clients. It runs on
70 70
 <BR><HR>
71 71
 <ADDRESS>
72 72
 Tomasz Kojm
73
-2006-07-01
73
+2006-10-15
74 74
 </ADDRESS>
75 75
 </BODY>
76 76
 </HTML>
... ...
@@ -26,26 +26,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
26 26
 
27 27
 <BODY >
28 28
 <!--Navigation Panel-->
29
-<A NAME="tex2html1891"
29
+<A NAME="tex2html1903"
30 30
   HREF="node96.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html1887"
32
+<A NAME="tex2html1899"
33 33
   HREF="node92.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html1883"
35
+<A NAME="tex2html1895"
36 36
   HREF="node94.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html1889"
38
+<A NAME="tex2html1901"
39 39
   HREF="node1.html">
40 40
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
41 41
 <BR>
42
-<B> Next:</B> <A NAME="tex2html1892"
42
+<B> Next:</B> <A NAME="tex2html1904"
43 43
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
44
-<B> Up:</B> <A NAME="tex2html1888"
44
+<B> Up:</B> <A NAME="tex2html1900"
45 45
   HREF="node92.html">MTA + POP3 Proxy</A>
46
-<B> Previous:</B> <A NAME="tex2html1884"
46
+<B> Previous:</B> <A NAME="tex2html1896"
47 47
   HREF="node94.html">POP3 Virus Scanner Daemon</A>
48
- &nbsp <B>  <A NAME="tex2html1890"
48
+ &nbsp <B>  <A NAME="tex2html1902"
49 49
   HREF="node1.html">Contents</A></B> 
50 50
 <BR>
51 51
 <BR>
... ...
@@ -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
-2006-07-01
74
+2006-10-15
75 75
 </ADDRESS>
76 76
 </BODY>
77 77
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1903"
30
+<A NAME="tex2html1915"
31 31
   HREF="node97.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1899"
33
+<A NAME="tex2html1911"
34 34
   HREF="node47.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1893"
36
+<A NAME="tex2html1905"
37 37
   HREF="node95.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1901"
39
+<A NAME="tex2html1913"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1904"
43
+<B> Next:</B> <A NAME="tex2html1916"
44 44
   HREF="node97.html">DansGuardian Anti-Virus Patch</A>
45
-<B> Up:</B> <A NAME="tex2html1900"
45
+<B> Up:</B> <A NAME="tex2html1912"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html1894"
47
+<B> Previous:</B> <A NAME="tex2html1906"
48 48
   HREF="node95.html">pop3.proxy</A>
49
- &nbsp <B>  <A NAME="tex2html1902"
49
+ &nbsp <B>  <A NAME="tex2html1914"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,30 +62,30 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
62 62
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
63 63
 
64 64
 <UL>
65
-<LI><A NAME="tex2html1905"
65
+<LI><A NAME="tex2html1917"
66 66
   HREF="node97.html">DansGuardian Anti-Virus Patch</A>
67
-<LI><A NAME="tex2html1906"
67
+<LI><A NAME="tex2html1918"
68 68
   HREF="node98.html">Frox</A>
69
-<LI><A NAME="tex2html1907"
69
+<LI><A NAME="tex2html1919"
70 70
   HREF="node99.html">HTTP Anti Virus Proxy</A>
71
-<LI><A NAME="tex2html1908"
71
+<LI><A NAME="tex2html1920"
72 72
   HREF="node100.html">mod_clamav</A>
73
-<LI><A NAME="tex2html1909"
73
+<LI><A NAME="tex2html1921"
74 74
   HREF="node101.html">ClamAV module for ProFTPD</A>
75
-<LI><A NAME="tex2html1910"
75
+<LI><A NAME="tex2html1922"
76 76
   HREF="node102.html">SafeSquid</A>
77
-<LI><A NAME="tex2html1911"
77
+<LI><A NAME="tex2html1923"
78 78
   HREF="node103.html">SquidClamAV Redirector</A>
79
-<LI><A NAME="tex2html1912"
79
+<LI><A NAME="tex2html1924"
80 80
   HREF="node104.html">Squidclam</A>
81
-<LI><A NAME="tex2html1913"
81
+<LI><A NAME="tex2html1925"
82 82
   HREF="node105.html">Viralator</A>
83 83
 </UL>
84 84
 <!--End of Table of Child-Links-->
85 85
 <BR><HR>
86 86
 <ADDRESS>
87 87
 Tomasz Kojm
88
-2006-07-01
88
+2006-10-15
89 89
 </ADDRESS>
90 90
 </BODY>
91 91
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1924"
30
+<A NAME="tex2html1936"
31 31
   HREF="node98.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1920"
33
+<A NAME="tex2html1932"
34 34
   HREF="node96.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1914"
36
+<A NAME="tex2html1926"
37 37
   HREF="node96.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1922"
39
+<A NAME="tex2html1934"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1925"
43
+<B> Next:</B> <A NAME="tex2html1937"
44 44
   HREF="node98.html">Frox</A>
45
-<B> Up:</B> <A NAME="tex2html1921"
45
+<B> Up:</B> <A NAME="tex2html1933"
46 46
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1915"
47
+<B> Previous:</B> <A NAME="tex2html1927"
48 48
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html1923"
49
+ &nbsp <B>  <A NAME="tex2html1935"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
70
+2006-10-15
71 71
 </ADDRESS>
72 72
 </BODY>
73 73
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1936"
30
+<A NAME="tex2html1948"
31 31
   HREF="node99.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1932"
33
+<A NAME="tex2html1944"
34 34
   HREF="node96.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1926"
36
+<A NAME="tex2html1938"
37 37
   HREF="node97.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1934"
39
+<A NAME="tex2html1946"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1937"
43
+<B> Next:</B> <A NAME="tex2html1949"
44 44
   HREF="node99.html">HTTP Anti Virus Proxy</A>
45
-<B> Up:</B> <A NAME="tex2html1933"
45
+<B> Up:</B> <A NAME="tex2html1945"
46 46
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1927"
47
+<B> Previous:</B> <A NAME="tex2html1939"
48 48
   HREF="node97.html">DansGuardian Anti-Virus Patch</A>
49
- &nbsp <B>  <A NAME="tex2html1935"
49
+ &nbsp <B>  <A NAME="tex2html1947"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
72
+2006-10-15
73 73
 </ADDRESS>
74 74
 </BODY>
75 75
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1948"
30
+<A NAME="tex2html1960"
31 31
   HREF="node100.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1944"
33
+<A NAME="tex2html1956"
34 34
   HREF="node96.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1938"
36
+<A NAME="tex2html1950"
37 37
   HREF="node98.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1946"
39
+<A NAME="tex2html1958"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1949"
43
+<B> Next:</B> <A NAME="tex2html1961"
44 44
   HREF="node100.html">mod_clamav</A>
45
-<B> Up:</B> <A NAME="tex2html1945"
45
+<B> Up:</B> <A NAME="tex2html1957"
46 46
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1939"
47
+<B> Previous:</B> <A NAME="tex2html1951"
48 48
   HREF="node98.html">Frox</A>
49
- &nbsp <B>  <A NAME="tex2html1947"
49
+ &nbsp <B>  <A NAME="tex2html1959"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -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
-2006-07-01
71
+2006-10-15
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -439,7 +439,7 @@ int downloaddb(const char *localname, const char *remotename, const char *hostna
439 439
     }
440 440
 
441 441
     if(current->version < dbver) {
442
-	mprintf("@Mirrors are not fully synchronized. Please try again later.\n");
442
+	logg("^Mirror %s is not synchronized.\n", ip);
443 443
     	cl_cvdfree(current);
444 444
 	unlink(tempname);
445 445
 	free(tempname);
... ...
@@ -802,14 +802,18 @@ int get_database(const char *dbfile, int socketfd, const char *file, const char
802 802
     sprintf(cmd, "GET %s/%s HTTP/1.1\r\n"
803 803
 	     "Host: %s\r\n%s"
804 804
 	     "User-Agent: "PACKAGE"/"VERSION"\r\n"
805
+#ifdef FRESHCLAM_NO_CACHE
805 806
 	     "Cache-Control: no-cache\r\n"
807
+#endif
806 808
 	     "Connection: close\r\n"
807 809
 	     "\r\n", (remotename != NULL)?remotename:"", dbfile, hostname, (authorization != NULL)?authorization:"");
808 810
 #else
809 811
     snprintf(cmd, sizeof(cmd), "GET %s/%s HTTP/1.1\r\n"
810 812
 	     "Host: %s\r\n%s"
811 813
 	     "User-Agent: "PACKAGE"/"VERSION"\r\n"
814
+#ifdef FRESHCLAM_NO_CACHE
812 815
 	     "Cache-Control: no-cache\r\n"
816
+#endif
813 817
 	     "Connection: close\r\n"
814 818
 	     "\r\n", (remotename != NULL)?remotename:"", dbfile, hostname, (authorization != NULL)?authorization:"");
815 819
 #endif
... ...
@@ -480,6 +480,11 @@ static int read_chunk_entries(unsigned char *chunk, uint32_t chunk_len,
480 480
 		file_e->next = NULL;
481 481
 		
482 482
 		name_len = read_enc_int(&current, end);
483
+		if (((current + name_len) > end) || ((current + name_len) < chunk)) {
484
+			cli_dbgmsg("Bad CHM name_len detected\n");
485
+			free(file_e);
486
+			return FALSE;
487
+		}
483 488
 		if (name_len > 0xFFFFFF) {
484 489
 			cli_dbgmsg("CHM file name too long: %llu\n", name_len);
485 490
 			file_e->name = (unsigned char *) strdup("truncated");
... ...
@@ -72,7 +72,7 @@ pthread_mutex_t cli_gentemp_mutex = PTHREAD_MUTEX_INITIALIZER;
72 72
 #define	O_BINARY	0
73 73
 #endif
74 74
 
75
-#define CL_FLEVEL 8 /* don't touch it */
75
+#define CL_FLEVEL 9 /* don't touch it */
76 76
 
77 77
 short cli_debug_flag = 0, cli_leavetemps_flag = 0;
78 78
 
... ...
@@ -135,9 +135,16 @@ char *rebuildpe(char *buffer, struct SECTION *sections, int sects, uint32_t base
135 135
   char *pefile=NULL, *curpe;
136 136
   struct IMAGE_PE_HEADER *fakepe;
137 137
 
138
+
139
+  if(sects > 90)
140
+    return NULL;
141
+
138 142
   for (i=0; i < sects; i++)
139 143
       datasize+=sections[i].rsz;
140 144
 
145
+  if(datasize > CLI_MAX_ALLOCATION)
146
+    return NULL;
147
+
141 148
   rawbase = 0x148+0x80+0x28*sects;
142 149
   if((pefile = (char *) cli_malloc(rawbase+datasize))) {
143 150
     memcpy(pefile, HEADERS, 0x148);
... ...
@@ -159,6 +159,7 @@ static int jpeg_check_photoshop(int fd)
159 159
 {
160 160
 	int retval;
161 161
 	unsigned char buffer[14];
162
+	off_t old, new;
162 163
 
163 164
 	if (cli_readn(fd, buffer, 14) != 14) {
164 165
 		return 0;
... ...
@@ -170,7 +171,11 @@ static int jpeg_check_photoshop(int fd)
170 170
 
171 171
 	cli_dbgmsg("Found Photoshop segment\n");
172 172
 	do {
173
+		old = lseek(fd, 0, SEEK_CUR);
173 174
 		retval = jpeg_check_photoshop_8bim(fd);
175
+		new = lseek(fd, 0, SEEK_CUR);
176
+		if(new <= old)
177
+			break;
174 178
 	} while (retval == 0);
175 179
 
176 180
 	if (retval == -1) {
... ...
@@ -273,7 +273,8 @@ cli_untar(const char *dir, int desc, unsigned int posix)
273 273
 			size = octal(osize);
274 274
 			if(size < 0) {
275 275
 				cli_errmsg("Invalid size in tar header\n");
276
-				fclose(outfile);
276
+				if(outfile)
277
+					fclose(outfile);
277 278
 				return CL_EFORMAT;
278 279
 			}
279 280
 			cli_dbgmsg("cli_untar: size = %d\n", size);
... ...
@@ -284,7 +285,8 @@ cli_untar(const char *dir, int desc, unsigned int posix)
284 284
 			if(nwritten != nbytes) {
285 285
 				cli_errmsg("cli_untar: only wrote %d bytes to file %s (out of disk space?)\n",
286 286
 					nwritten, fullname);
287
-				fclose(outfile);
287
+				if(outfile)
288
+					fclose(outfile);
288 289
 				return CL_EIO;
289 290
 			}
290 291
 			size -= nbytes;