Browse code

merge backport fixes for 0.88.2

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

Sven Strickroth authored on 2007/02/18 23:43:12
Showing 188 changed files
... ...
@@ -5,4 +5,4 @@ and enable Foreground option in clamd.conf.
5 5
 Known bugs:
6 6
 -----------
7 7
 
8
--) unrarlib doesn't work on 64-bit systems
8
+-) unrarlib doesn't work on 64-bit systems (FIXED IN CVS!)
... ...
@@ -1,3 +1,23 @@
1
+Sat Apr 29 21:30:47 CEST 2006
2
+-----------------------------
3
+  V 0.88.2
4
+  Bugfixes:
5
+    - freshclam/manager.c: fix possible buffer overflow
6
+      Reported by Ulf Harnhammar <metaur*telia.com> and Peter <remllov_*gmx.de>
7
+      See http://www.clamav.net/security/0.88.2.html for details.
8
+
9
+    - libclamav/zziplib/zzip-zip.c: add missing #include "others.h"
10
+      Patch by Alex Deiter <tiamat*komi.mts.ru>
11
+    - fix other implicit function declarations
12
+      Thanks to Paul Fisher <pnfisher*berkeley.edu>, Ludwig Nussel
13
+      <ludwig.nussel*suse.de> and Stephen Gran <steve*lobefin.net>
14
+    - shared/cfgparser.c: don't use CL_FULLSTR for file directives
15
+      Requested by Tomasz Papszun and others
16
+    - libclamav/mbox.c:	fix compilation error on CYGWIN
17
+    - clamav-milter: Ensure that the quarantine location reported in
18
+      notifications is correct.
19
+      Patch by Simon Munton <simon at nidoran.m5data.com>
20
+
1 21
 Tue Apr  4 12:04:07 CEST 2006
2 22
 -----------------------------
3 23
   V 0.88.1
... ...
@@ -1,8 +1,16 @@
1
-0.88.1
1
+0.88.2
2 2
 ------
3 3
 
4
-This version fixes a number of minor bugs and provides code updates
5
-to improve virus detection.
4
+This release improves virus detection, fixes zip handling on 64-bit
5
+architectures and possible security problem in freshclam.
6
+
7
+Following the 0.88.1 release some portals and security related websites
8
+published incorrect information on security problems of 0.88. To avoid
9
+such incidents in the future, every new ClamAV package will be released
10
+together with detailed information about security bugs it fixes. Details
11
+for this version can be found here:
12
+
13
+    http://www.clamav.net/security/0.88.2.html
6 14
 
7 15
 --
8 16
 The ClamAV team (http://www.clamav.net/team.html)
... ...
@@ -2,6 +2,25 @@ 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
+
6
+0.88.2
7
+------
8
+
9
+This release improves virus detection, fixes zip handling on 64-bit
10
+architectures and possible security problem in freshclam.
11
+
12
+Following the 0.88.1 release some portals and security related websites
13
+published incorrect information on security problems of 0.88. To avoid
14
+such incidents in the future, every new ClamAV package will be released
15
+together with detailed information about security bugs it fixes. Details
16
+for this version can be found here:
17
+
18
+    http://www.clamav.net/security/0.88.2.html
19
+
20
+--
21
+The ClamAV team (http://www.clamav.net/team.html)
22
+
23
+
5 24
 0.88.1
6 25
 ------
7 26
 
... ...
@@ -54,6 +54,9 @@
54 54
 /* os is irix */
55 55
 #undef C_IRIX
56 56
 
57
+/* target is kfreebsd-gnu */
58
+#undef C_KFREEBSD_GNU
59
+
57 60
 /* target is linux */
58 61
 #undef C_LINUX
59 62
 
... ...
@@ -2851,6 +2851,9 @@ clamfi_eom(SMFICTX *ctx)
2851 2851
 			smfi_addheader(ctx, "X-Virus-Status", buf);
2852 2852
 		}
2853 2853
 
2854
+		if(quarantine_dir)
2855
+			qfile(privdata, sendmailId, virusname);
2856
+
2854 2857
 		if(use_syslog) {
2855 2858
 			/*
2856 2859
 			 * Setup err as a list of recipients
... ...
@@ -3017,8 +3020,6 @@ clamfi_eom(SMFICTX *ctx)
3017 3017
 		}
3018 3018
 
3019 3019
 		if(quarantine_dir) {
3020
-			qfile(privdata, sendmailId, virusname);
3021
-
3022 3020
 			/*
3023 3021
 			 * Cleanup filename here otherwise clamfi_free() will
3024 3022
 			 * delete the file that we wish to keep because it
... ...
@@ -30,6 +30,7 @@
30 30
 #include <sys/stat.h>
31 31
 #include <errno.h>
32 32
 #include <sys/time.h>
33
+#include <sys/wait.h>
33 34
 
34 35
 #if HAVE_SYS_PARAM_H
35 36
 #include <sys/param.h>
... ...
@@ -68,6 +69,9 @@
68 68
 #include "memory.h"
69 69
 #include "cfgparser.h"
70 70
 #include "session.h"
71
+#include "others.h"
72
+#include "output.h"
73
+
71 74
 
72 75
 #define ENV_FILE  "CLAM_VIRUSEVENT_FILENAME"
73 76
 #define ENV_VIRUS "CLAM_VIRUSEVENT_VIRUSNAME"
... ...
@@ -81,20 +81,27 @@ int dsresult(int sockd, const struct optstruct *opt)
81 81
 	    logg("%s", buff);
82 82
 	    mprintf("%s", buff);
83 83
 	    if(optl(opt, "move")) {
84
-		pt = strrchr(buff, ':');
85
-		*pt = 0;
86
-		move_infected(buff, opt);
84
+		/* filename: Virus FOUND */
85
+		if((pt = strrchr(buff, ':'))) {
86
+		    *pt = 0;
87
+		    move_infected(buff, opt);
88
+		} else {
89
+		    mprintf("@Broken data format. File not moved.\n");
90
+		}
87 91
 
88 92
 	    } else if(optl(opt, "remove")) {
89
-		pt = strrchr(buff, ':');
90
-		*pt = 0;
91
-		if(unlink(buff)) {
92
-		    mprintf("%s: Can't remove.\n", buff);
93
-		    logg("%s: Can't remove.\n", buff);
94
-		    notremoved++;
93
+		if(!(pt = strrchr(buff, ':'))) {
94
+		    mprintf("@Broken data format. File not removed.\n");
95 95
 		} else {
96
-		    mprintf("%s: Removed.\n", buff);
97
-		    logg("%s: Removed.\n", buff);
96
+		    *pt = 0;
97
+		    if(unlink(buff)) {
98
+			mprintf("%s: Can't remove.\n", buff);
99
+			logg("%s: Can't remove.\n", buff);
100
+			notremoved++;
101
+		    } else {
102
+			mprintf("%s: Removed.\n", buff);
103
+			logg("%s: Removed.\n", buff);
104
+		    }
98 105
 		}
99 106
 	    }
100 107
 	}
... ...
@@ -2073,7 +2073,7 @@ fi
2073 2073
 
2074 2074
 # Define the identity of the package.
2075 2075
  PACKAGE=clamav
2076
- VERSION="0.88.1"
2076
+ VERSION="0.88.2"
2077 2077
 
2078 2078
 
2079 2079
 cat >>confdefs.h <<_ACEOF
... ...
@@ -11741,6 +11741,37 @@ _ACEOF
11741 11741
        ;;
11742 11742
     esac
11743 11743
     ;;
11744
+kfreebsd*-gnu)
11745
+
11746
+cat >>confdefs.h <<\_ACEOF
11747
+#define C_KFREEBSD_GNU 1
11748
+_ACEOF
11749
+
11750
+    if test "$have_pthreads" = "yes"; then
11751
+       LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -lpthread"
11752
+       TH_SAFE="-thread-safe"
11753
+
11754
+cat >>confdefs.h <<\_ACEOF
11755
+#define CL_THREAD_SAFE 1
11756
+_ACEOF
11757
+
11758
+
11759
+cat >>confdefs.h <<\_ACEOF
11760
+#define _REENTRANT 1
11761
+_ACEOF
11762
+
11763
+       CLAMD_LIBS="$CLAMD_LIBS -lpthread"
11764
+       CLAMAV_MILTER_LIBS="$CLAMAV_MILTER_LIBS -lpthread"
11765
+       if test "$want_clamuko" = "yes"; then
11766
+
11767
+cat >>confdefs.h <<\_ACEOF
11768
+#define CLAMUKO 1
11769
+_ACEOF
11770
+
11771
+       fi
11772
+       CLAMSCAN_LIBS="$CLAMSCAN_LIBS -lpthread"
11773
+    fi
11774
+    ;;
11744 11775
 cygwin*)
11745 11776
 
11746 11777
 cat >>confdefs.h <<\_ACEOF
... ...
@@ -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.1")
21
+AM_INIT_AUTOMAKE(clamav, "0.88.2")
22 22
 AM_CONFIG_HEADER(clamav-config.h)
23 23
 
24 24
 LC_CURRENT=1
... ...
@@ -365,6 +365,21 @@ linux*)
365 365
        ;;
366 366
     esac
367 367
     ;;
368
+kfreebsd*-gnu)
369
+    AC_DEFINE(C_KFREEBSD_GNU,1,[target is kfreebsd-gnu])
370
+    if test "$have_pthreads" = "yes"; then
371
+       LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -lpthread"
372
+       TH_SAFE="-thread-safe"
373
+       AC_DEFINE(CL_THREAD_SAFE,1,[thread safe])
374
+       AC_DEFINE(_REENTRANT,1,[thread safe])
375
+       CLAMD_LIBS="$CLAMD_LIBS -lpthread"
376
+       CLAMAV_MILTER_LIBS="$CLAMAV_MILTER_LIBS -lpthread"
377
+       if test "$want_clamuko" = "yes"; then
378
+           AC_DEFINE(CLAMUKO,1,[enable clamuko])
379
+       fi
380
+       CLAMSCAN_LIBS="$CLAMSCAN_LIBS -lpthread"
381
+    fi
382
+    ;;
368 383
 cygwin*)
369 384
     AC_DEFINE(C_CYGWIN,1,[os is cygwin])
370 385
     if test "$test_clamav" = "yes"; then
371 386
Binary files a/docs/clamdoc.pdf and b/docs/clamdoc.pdf differ
... ...
@@ -16,7 +16,8 @@
16 16
 %
17 17
 %  You should have received a copy of the GNU General Public License
18 18
 %  along with this program; if not, write to the Free Software
19
-%  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
+%  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
+%  MA 02110-1301, USA.
20 21
 
21 22
 \documentclass[a4paper,titlepage,12pt]{article}
22 23
 \usepackage{amssymb}
... ...
@@ -69,7 +70,7 @@
69 69
     \vspace{3cm}
70 70
     \begin{flushright}
71 71
 	\rule[-1ex]{8cm}{3pt}\\
72
-	\huge Clam AntiVirus 0.88.1\\
72
+	\huge Clam AntiVirus 0.88.2\\
73 73
 	\huge \emph{User Manual}\\
74 74
     \end{flushright}
75 75
 
... ...
@@ -101,7 +102,8 @@
101 101
 
102 102
     You should have received a copy of the GNU General Public License
103 103
     along with this program; if not, write to the Free Software
104
-    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
104
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
105
+    MA 02110-1301, USA.
105 106
     \end{boxedminipage}
106 107
 
107 108
     \newpage
... ...
@@ -1960,12 +1962,6 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
1960 1960
 	\hline
1961 1961
 	Mirror & IP & Location & Administrator\\ \hline\hline
1962 1962
 
1963
-	\url{avmirror1.prod.rxgsys.com} & 64.74.124.90 & USA & Graham Wooden\\
1964
-					&	       &     & \email{<graham*rxgsys.com>}\\ \hline
1965
-
1966
-	\url{avmirror2.prod.rxgsys.com} & 207.201.202.73 & USA & Graham Wooden\\
1967
-					&		 &     & \email{<graham*rxgsys.com>}\\ \hline
1968
-
1969 1963
 	\url{clamav.power-netz.de} & 212.162.12.159 & Dusseldorf, & Andreas Gietl\\
1970 1964
 				&		 & Germany     & \email{<a.gietl*e-admin.de>}\\ \hline
1971 1965
 
... ...
@@ -1999,9 +1995,6 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
1999 1999
 				 &		 &	   & \email{<mirrors*heanet.ie>}\\ \hline
2000 2000
 	\url{clamav.crysys.hu} & 152.66.249.132 & Hungary & Bencsath Boldizsar\\
2001 2001
 			       &		&	  & \email{<boldi*mail2004.crysys.hit.bme.hu>}\\ \hline
2002
-
2003
-	\url{clamav.rockriver.net} & 209.94.36.5 & Illinois, USA & Thomas D. Harker\\
2004
-				   &		 &		 & \email{<tom*rockriver.net>}\\ \hline
2005 2002
 	\url{clamav.infotex.com} & 66.139.73.146 & Texas, USA & Matthew Jonkman\\
2006 2003
 				 &		 &	      & \email{<matt*infotex.com>}\\ \hline
2007 2004
 	\url{clamav.mirror.transip.nl} & 80.69.67.3 & The Netherlands & Walter Hop\\
... ...
@@ -2047,7 +2040,7 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
2047 2047
 				&		&	    & \email{<myself*lennardseah.com>}\\ \hline
2048 2048
 	\url{clamdb.prolocation.net} & 213.73.255.243 & The Netherlands & Raymond Dijkxhoorn\\
2049 2049
 				     &		      &			& \email{<raymond*prolocation.net>}\\ \hline
2050
-	\url{clamav.xyxx.com} & 65.75.154.69 & San Francisco/Palo Alto & Myron Davis\\
2050
+	\url{clamav.xyxx.com} & 72.21.63.182 & San Francisco/Palo Alto & Myron Davis\\
2051 2051
 			      &		     & California, USA	       & \email{<myrond*xyxx.com>}\\ \hline
2052 2052
 	\url{clamav.walkertek.com} & 38.136.139.7 & USA & Stephen Walker\\
2053 2053
 				   &		  &	& \email{<swalker*walkertek.com>}\\ \hline
... ...
@@ -2258,6 +2251,15 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
2258 2258
 			       &		&	 & \email{<rpa*df.lth.se>}\\ \hline
2259 2259
 	\url{clamav.gueth.net} & 217.160.141.39 & Germany & Volker Gueth\\
2260 2260
 			       &		&	  & \email{<volker*gueth.net>}\\ \hline
2261
+    \end{tabular}}
2262
+    \end{center}
2263
+    % new page
2264
+    \begin{center}
2265
+    {\footnotesize
2266
+    \begin{tabular}{|c|c|c|c|}
2267
+	\hline
2268
+	Mirror & IP & Location & Administrator\\ \hline\hline
2269
+
2261 2270
 	\url{b.clamav.mirror.fizzelpark.com} & 217.115.136.170 & Germany & Thilo Bangert\\
2262 2271
 					     &		       &	 & \email{<bangert*fizzelpark.com>}\\ \hline
2263 2272
 	\url{clamav.dg.net.ua} & 213.186.196.225 & Ukraine & Oleksandr V. Typlynskyi\\
... ...
@@ -2266,6 +2268,13 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
2266 2266
 				     &		     &	      & \email{<renato-clamav*autoservico.com>}\\ \hline
2267 2267
 	\url{clamav.gva.es} & 82.159.137.16 & Spain & Jose Antonio Amador\\
2268 2268
 			    &		    &	    & \email{<jamador*gva.es>}\\ \hline
2269
+	\url{clamav.industrium.ru} & 83.222.15.190 & Russia & Igor Shergin\\
2270
+				   &		   &	    & \email{<igor*shergin.ru>}\\ \hline
2271
+	\url{clamav.myriadnetwork.com} & 209.9.235.98 & USA & Thomas Petersen\\
2272
+				       &	      &	    & \email{<tomp*myriadnetwork.com>}\\ \hline
2273
+	\url{clamav.kazar.org} & 193.218.105.9 & France & Xavier Beaudouin\\
2274
+			       &	       &	& \email{<kiwi*kazar.org>}\\ \hline
2275
+
2269 2276
     \end{tabular}}
2270 2277
     \end{center}
2271 2278
 
... ...
@@ -2545,6 +2554,7 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
2545 2545
 	\item Aaron Begley
2546 2546
 	\item Craig H. Block
2547 2547
 	\item Norman E. Brake, Jr.
2548
+	\item By Design (\url{http://www.by-design.net/})
2548 2549
 	\item Canadian Web Hosting (\url{http://www.canadianwebhosting.com/})
2549 2550
 	\item cedarcreeksoftware.com (\url{http://www.cedarcreeksoftware.com/})
2550 2551
 	\item Thanos Chatziathanassiou
... ...
@@ -2558,6 +2568,7 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
2558 2558
 	\item Steve Donegan (\url{http://www.donegan.org/})
2559 2559
 	\item Dynamic Network Services, Inc (\url{http://www.dyndns.org/})
2560 2560
 	\item EAS Enterprises LLC
2561
+	\item eCoupons.com (\url{http://www.ecoupons.com/})
2561 2562
 	\item Electric Embers (\url{http://electricembers.net})
2562 2563
 	\item John T. Ellis
2563 2564
 	\item Epublica
... ...
@@ -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="tex2html353"
27
+<A NAME="tex2html359"
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="tex2html351"
32
+<A NAME="tex2html357"
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="tex2html354"
36
+<B> Next:</B> <A NAME="tex2html360"
37 37
   HREF="node1.html">Contents</A>
38
- &nbsp <B>  <A NAME="tex2html352"
38
+ &nbsp <B>  <A NAME="tex2html358"
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
62
+<BR>	<FONT SIZE="+3">Clam AntiVirus 0.88.2
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="tex2html355"
74
+<LI><A NAME="tex2html361"
75 75
   HREF="node1.html">Contents</A>
76
-<LI><A NAME="tex2html356"
76
+<LI><A NAME="tex2html362"
77 77
   HREF="node2.html">Introduction</A>
78 78
 <UL>
79
-<LI><A NAME="tex2html357"
79
+<LI><A NAME="tex2html363"
80 80
   HREF="node3.html">Features</A>
81
-<LI><A NAME="tex2html358"
81
+<LI><A NAME="tex2html364"
82 82
   HREF="node4.html">Mailing lists</A>
83
-<LI><A NAME="tex2html359"
83
+<LI><A NAME="tex2html365"
84 84
   HREF="node5.html">Virus submitting</A>
85 85
 </UL>
86
-<LI><A NAME="tex2html360"
86
+<LI><A NAME="tex2html366"
87 87
   HREF="node6.html">Base package</A>
88 88
 <UL>
89
-<LI><A NAME="tex2html361"
89
+<LI><A NAME="tex2html367"
90 90
   HREF="node7.html">Supported platforms</A>
91
-<LI><A NAME="tex2html362"
91
+<LI><A NAME="tex2html368"
92 92
   HREF="node8.html">Binary packages</A>
93
-<LI><A NAME="tex2html363"
93
+<LI><A NAME="tex2html369"
94 94
   HREF="node9.html">Daily built snapshots</A>
95 95
 </UL>
96
-<LI><A NAME="tex2html364"
96
+<LI><A NAME="tex2html370"
97 97
   HREF="node10.html">Installation</A>
98 98
 <UL>
99
-<LI><A NAME="tex2html365"
99
+<LI><A NAME="tex2html371"
100 100
   HREF="node11.html">Requirements</A>
101
-<LI><A NAME="tex2html366"
101
+<LI><A NAME="tex2html372"
102 102
   HREF="node12.html">Installing on a shell account</A>
103
-<LI><A NAME="tex2html367"
103
+<LI><A NAME="tex2html373"
104 104
   HREF="node13.html">Adding new system user and group</A>
105
-<LI><A NAME="tex2html368"
105
+<LI><A NAME="tex2html374"
106 106
   HREF="node14.html">Compilation of base package</A>
107
-<LI><A NAME="tex2html369"
107
+<LI><A NAME="tex2html375"
108 108
   HREF="node15.html">Compilation with clamav-milter enabled</A>
109 109
 </UL>
110
-<LI><A NAME="tex2html370"
110
+<LI><A NAME="tex2html376"
111 111
   HREF="node16.html">Configuration</A>
112 112
 <UL>
113
-<LI><A NAME="tex2html371"
113
+<LI><A NAME="tex2html377"
114 114
   HREF="node17.html">clamd</A>
115 115
 <UL>
116
-<LI><A NAME="tex2html372"
116
+<LI><A NAME="tex2html378"
117 117
   HREF="node18.html">On-access scanning</A>
118 118
 </UL>
119
-<LI><A NAME="tex2html373"
119
+<LI><A NAME="tex2html379"
120 120
   HREF="node19.html">clamav-milter</A>
121
-<LI><A NAME="tex2html374"
121
+<LI><A NAME="tex2html380"
122 122
   HREF="node20.html">Testing</A>
123
-<LI><A NAME="tex2html375"
123
+<LI><A NAME="tex2html381"
124 124
   HREF="node21.html">Setting up auto-updating</A>
125
-<LI><A NAME="tex2html376"
125
+<LI><A NAME="tex2html382"
126 126
   HREF="node22.html">Closest mirrors</A>
127 127
 </UL>
128
-<LI><A NAME="tex2html377"
128
+<LI><A NAME="tex2html383"
129 129
   HREF="node23.html">Usage</A>
130 130
 <UL>
131
-<LI><A NAME="tex2html378"
131
+<LI><A NAME="tex2html384"
132 132
   HREF="node24.html">Clam daemon</A>
133
-<LI><A NAME="tex2html379"
133
+<LI><A NAME="tex2html385"
134 134
   HREF="node25.html">Clam<B>d</B>scan</A>
135
-<LI><A NAME="tex2html380"
135
+<LI><A NAME="tex2html386"
136 136
   HREF="node26.html">Clamuko</A>
137
-<LI><A NAME="tex2html381"
137
+<LI><A NAME="tex2html387"
138 138
   HREF="node27.html">Output format</A>
139 139
 <UL>
140
-<LI><A NAME="tex2html382"
140
+<LI><A NAME="tex2html388"
141 141
   HREF="node28.html">clamscan</A>
142
-<LI><A NAME="tex2html383"
142
+<LI><A NAME="tex2html389"
143 143
   HREF="node29.html">clamd</A>
144 144
 </UL>
145 145
 </UL>
146
-<LI><A NAME="tex2html384"
146
+<LI><A NAME="tex2html390"
147 147
   HREF="node30.html">LibClamAV</A>
148 148
 <UL>
149
-<LI><A NAME="tex2html385"
149
+<LI><A NAME="tex2html391"
150 150
   HREF="node31.html">Licence</A>
151
-<LI><A NAME="tex2html386"
151
+<LI><A NAME="tex2html392"
152 152
   HREF="node32.html">Features</A>
153 153
 <UL>
154
-<LI><A NAME="tex2html387"
154
+<LI><A NAME="tex2html393"
155 155
   HREF="node33.html">Archives and compressed files</A>
156
-<LI><A NAME="tex2html388"
156
+<LI><A NAME="tex2html394"
157 157
   HREF="node34.html">Mail files</A>
158 158
 </UL>
159
-<LI><A NAME="tex2html389"
159
+<LI><A NAME="tex2html395"
160 160
   HREF="node35.html">API</A>
161 161
 <UL>
162
-<LI><A NAME="tex2html390"
162
+<LI><A NAME="tex2html396"
163 163
   HREF="node36.html">Header file</A>
164
-<LI><A NAME="tex2html391"
164
+<LI><A NAME="tex2html397"
165 165
   HREF="node37.html">Database loading</A>
166
-<LI><A NAME="tex2html392"
166
+<LI><A NAME="tex2html398"
167 167
   HREF="node38.html">Error handling</A>
168
-<LI><A NAME="tex2html393"
168
+<LI><A NAME="tex2html399"
169 169
   HREF="node39.html">Database structure</A>
170 170
 </UL>
171
-<LI><A NAME="tex2html394"
171
+<LI><A NAME="tex2html400"
172 172
   HREF="node40.html">Database reloading</A>
173 173
 <UL>
174
-<LI><A NAME="tex2html395"
174
+<LI><A NAME="tex2html401"
175 175
   HREF="node41.html">Data scan functions</A>
176
-<LI><A NAME="tex2html396"
176
+<LI><A NAME="tex2html402"
177 177
   HREF="node42.html">Memory</A>
178
-<LI><A NAME="tex2html397"
178
+<LI><A NAME="tex2html403"
179 179
   HREF="node43.html">clamav-config</A>
180
-<LI><A NAME="tex2html398"
180
+<LI><A NAME="tex2html404"
181 181
   HREF="node44.html">Example</A>
182 182
 </UL>
183
-<LI><A NAME="tex2html399"
183
+<LI><A NAME="tex2html405"
184 184
   HREF="node45.html">CVD format</A>
185 185
 </UL>
186
-<LI><A NAME="tex2html400"
186
+<LI><A NAME="tex2html406"
187 187
   HREF="node46.html">Frequently Asked Questions</A>
188
-<LI><A NAME="tex2html401"
188
+<LI><A NAME="tex2html407"
189 189
   HREF="node47.html">Third party software</A>
190 190
 <UL>
191
-<LI><A NAME="tex2html402"
191
+<LI><A NAME="tex2html408"
192 192
   HREF="node48.html"><I>MTA + ClamAV</I></A>
193 193
 <UL>
194
-<LI><A NAME="tex2html403"
194
+<LI><A NAME="tex2html409"
195 195
   HREF="node49.html">amavisd-new</A>
196
-<LI><A NAME="tex2html404"
196
+<LI><A NAME="tex2html410"
197 197
   HREF="node50.html">AMaViS - "Next Generation"</A>
198
-<LI><A NAME="tex2html405"
198
+<LI><A NAME="tex2html411"
199 199
   HREF="node51.html">ClamdMail</A>
200
-<LI><A NAME="tex2html406"
200
+<LI><A NAME="tex2html412"
201 201
   HREF="node52.html">Clement</A>
202
-<LI><A NAME="tex2html407"
202
+<LI><A NAME="tex2html413"
203 203
   HREF="node53.html">cgpav</A>
204
-<LI><A NAME="tex2html408"
204
+<LI><A NAME="tex2html414"
205 205
   HREF="node54.html">ClamCour</A>
206
-<LI><A NAME="tex2html409"
206
+<LI><A NAME="tex2html415"
207 207
   HREF="node55.html">clamfilter</A>
208
-<LI><A NAME="tex2html410"
208
+<LI><A NAME="tex2html416"
209 209
   HREF="node56.html">ClamSMTP</A>
210
-<LI><A NAME="tex2html411"
210
+<LI><A NAME="tex2html417"
211 211
   HREF="node57.html">clapf</A>
212
-<LI><A NAME="tex2html412"
212
+<LI><A NAME="tex2html418"
213 213
   HREF="node58.html">DSpamPD</A>
214
-<LI><A NAME="tex2html413"
214
+<LI><A NAME="tex2html419"
215 215
   HREF="node59.html">exiscan</A>
216
-<LI><A NAME="tex2html414"
216
+<LI><A NAME="tex2html420"
217 217
   HREF="node60.html">Gadoyanvirus</A>
218
-<LI><A NAME="tex2html415"
218
+<LI><A NAME="tex2html421"
219 219
   HREF="node61.html">hMailServer</A>
220
-<LI><A NAME="tex2html416"
220
+<LI><A NAME="tex2html422"
221 221
   HREF="node62.html">IVS Milter</A>
222
-<LI><A NAME="tex2html417"
222
+<LI><A NAME="tex2html423"
223 223
   HREF="node63.html">j-chkmail</A>
224
-<LI><A NAME="tex2html418"
224
+<LI><A NAME="tex2html424"
225 225
   HREF="node64.html">Mail Avenger</A>
226
-<LI><A NAME="tex2html419"
226
+<LI><A NAME="tex2html425"
227 227
   HREF="node65.html">Mailnees</A>
228
-<LI><A NAME="tex2html420"
228
+<LI><A NAME="tex2html426"
229 229
   HREF="node66.html">MailScanner</A>
230
-<LI><A NAME="tex2html421"
230
+<LI><A NAME="tex2html427"
231 231
   HREF="node67.html">Maverix</A>
232
-<LI><A NAME="tex2html422"
232
+<LI><A NAME="tex2html428"
233 233
   HREF="node68.html">MIMEDefang</A>
234
-<LI><A NAME="tex2html423"
234
+<LI><A NAME="tex2html429"
235 235
   HREF="node69.html">mxGuard for IMail</A>
236
-<LI><A NAME="tex2html424"
236
+<LI><A NAME="tex2html430"
237 237
   HREF="node70.html">OdeiaVir</A>
238
-<LI><A NAME="tex2html425"
238
+<LI><A NAME="tex2html431"
239 239
   HREF="node71.html">OpenProtect</A>
240
-<LI><A NAME="tex2html426"
240
+<LI><A NAME="tex2html432"
241 241
   HREF="node72.html">Protea AntiVirus Tools</A>
242
-<LI><A NAME="tex2html427"
242
+<LI><A NAME="tex2html433"
243 243
   HREF="node73.html">PSCM</A>
244
-<LI><A NAME="tex2html428"
244
+<LI><A NAME="tex2html434"
245 245
   HREF="node74.html">PTSMail Utilities</A>
246
-<LI><A NAME="tex2html429"
246
+<LI><A NAME="tex2html435"
247 247
   HREF="node75.html">pymavis</A>
248
-<LI><A NAME="tex2html430"
248
+<LI><A NAME="tex2html436"
249 249
   HREF="node76.html">Qmail-Scanner</A>
250
-<LI><A NAME="tex2html431"
250
+<LI><A NAME="tex2html437"
251 251
   HREF="node77.html">qpsmtp</A>
252
-<LI><A NAME="tex2html432"
252
+<LI><A NAME="tex2html438"
253 253
   HREF="node78.html">qscanq</A>
254
-<LI><A NAME="tex2html433"
254
+<LI><A NAME="tex2html439"
255 255
   HREF="node79.html">qSheff</A>
256
-<LI><A NAME="tex2html434"
256
+<LI><A NAME="tex2html440"
257 257
   HREF="node80.html">RevolSys SMTP kit for Postfix</A>
258
-<LI><A NAME="tex2html435"
258
+<LI><A NAME="tex2html441"
259 259
   HREF="node81.html">Sagator</A>
260
-<LI><A NAME="tex2html436"
260
+<LI><A NAME="tex2html442"
261 261
   HREF="node82.html">Scrubber</A>
262
-<LI><A NAME="tex2html437"
262
+<LI><A NAME="tex2html443"
263 263
   HREF="node83.html">Secure Mail Intelligence!</A>
264
-<LI><A NAME="tex2html438"
264
+<LI><A NAME="tex2html444"
265 265
   HREF="node84.html">simscan</A>
266
-<LI><A NAME="tex2html439"
266
+<LI><A NAME="tex2html445"
267 267
   HREF="node85.html">SmarterMail Filter</A>
268
-<LI><A NAME="tex2html440"
268
+<LI><A NAME="tex2html446"
269 269
   HREF="node86.html">smf-clamd</A>
270
-<LI><A NAME="tex2html441"
270
+<LI><A NAME="tex2html447"
271 271
   HREF="node87.html">smtpfilter</A>
272
-<LI><A NAME="tex2html442"
272
+<LI><A NAME="tex2html448"
273 273
   HREF="node88.html">smtp-gated</A>
274
-<LI><A NAME="tex2html443"
274
+<LI><A NAME="tex2html449"
275 275
   HREF="node89.html">smtp-vilter</A>
276
-<LI><A NAME="tex2html444"
276
+<LI><A NAME="tex2html450"
277 277
   HREF="node90.html">Zabit</A>
278
-<LI><A NAME="tex2html445"
278
+<LI><A NAME="tex2html451"
279 279
   HREF="node91.html">zmscanner</A>
280 280
 </UL>
281
-<LI><A NAME="tex2html446"
281
+<LI><A NAME="tex2html452"
282 282
   HREF="node92.html"><I>MTA + POP3 Proxy + ClamAV</I></A>
283 283
 <UL>
284
-<LI><A NAME="tex2html447"
284
+<LI><A NAME="tex2html453"
285 285
   HREF="node93.html">ClamMail</A>
286
-<LI><A NAME="tex2html448"
286
+<LI><A NAME="tex2html454"
287 287
   HREF="node94.html">POP3 Virus Scanner Daemon</A>
288
-<LI><A NAME="tex2html449"
288
+<LI><A NAME="tex2html455"
289 289
   HREF="node95.html">pop3.proxy</A>
290 290
 </UL>
291
-<LI><A NAME="tex2html450"
291
+<LI><A NAME="tex2html456"
292 292
   HREF="node96.html"><I>Web/FTP Proxy + ClamAV</I></A>
293 293
 <UL>
294
-<LI><A NAME="tex2html451"
294
+<LI><A NAME="tex2html457"
295 295
   HREF="node97.html">DansGuardian Anti-Virus Patch</A>
296
-<LI><A NAME="tex2html452"
296
+<LI><A NAME="tex2html458"
297 297
   HREF="node98.html">Frox</A>
298
-<LI><A NAME="tex2html453"
298
+<LI><A NAME="tex2html459"
299 299
   HREF="node99.html">HTTP Anti Virus Proxy</A>
300
-<LI><A NAME="tex2html454"
300
+<LI><A NAME="tex2html460"
301 301
   HREF="node100.html">mod_clamav</A>
302
-<LI><A NAME="tex2html455"
302
+<LI><A NAME="tex2html461"
303 303
   HREF="node101.html">ClamAV module for ProFTPD</A>
304
-<LI><A NAME="tex2html456"
304
+<LI><A NAME="tex2html462"
305 305
   HREF="node102.html">SafeSquid</A>
306
-<LI><A NAME="tex2html457"
306
+<LI><A NAME="tex2html463"
307 307
   HREF="node103.html">SquidClamAV Redirector</A>
308
-<LI><A NAME="tex2html458"
308
+<LI><A NAME="tex2html464"
309 309
   HREF="node104.html">Squidclam</A>
310
-<LI><A NAME="tex2html459"
310
+<LI><A NAME="tex2html465"
311 311
   HREF="node105.html">Viralator</A>
312 312
 </UL>
313
-<LI><A NAME="tex2html460"
313
+<LI><A NAME="tex2html466"
314 314
   HREF="node106.html"><I>Filesystem + ClamAV</I></A>
315 315
 <UL>
316
-<LI><A NAME="tex2html461"
316
+<LI><A NAME="tex2html467"
317 317
   HREF="node107.html">Dazuko</A>
318
-<LI><A NAME="tex2html462"
318
+<LI><A NAME="tex2html468"
319 319
   HREF="node108.html">Famuko</A>
320
-<LI><A NAME="tex2html463"
320
+<LI><A NAME="tex2html469"
321 321
   HREF="node109.html">OpenAntiVirus samba-vscan</A>
322 322
 </UL>
323
-<LI><A NAME="tex2html464"
323
+<LI><A NAME="tex2html470"
324 324
   HREF="node110.html"><I>Mail User Agent + ClamAV</I></A>
325 325
 <UL>
326
-<LI><A NAME="tex2html465"
326
+<LI><A NAME="tex2html471"
327 327
   HREF="node111.html">clamailfilter</A>
328
-<LI><A NAME="tex2html466"
328
+<LI><A NAME="tex2html472"
329 329
   HREF="node112.html">ClamAssassin</A>
330
-<LI><A NAME="tex2html467"
330
+<LI><A NAME="tex2html473"
331 331
   HREF="node113.html">clamscan-procfilter</A>
332
-<LI><A NAME="tex2html468"
332
+<LI><A NAME="tex2html474"
333 333
   HREF="node114.html">KMail</A>
334
-<LI><A NAME="tex2html469"
334
+<LI><A NAME="tex2html475"
335 335
   HREF="node115.html">MyClamMailFilter</A>
336
-<LI><A NAME="tex2html470"
336
+<LI><A NAME="tex2html476"
337 337
   HREF="node116.html">OpenWebMail</A>
338
-<LI><A NAME="tex2html471"
338
+<LI><A NAME="tex2html477"
339 339
   HREF="node117.html">QClam</A>
340
-<LI><A NAME="tex2html472"
340
+<LI><A NAME="tex2html478"
341 341
   HREF="node118.html">QMVC - Qmail Mail and Virus Control</A>
342
-<LI><A NAME="tex2html473"
342
+<LI><A NAME="tex2html479"
343 343
   HREF="node119.html">Sylpheed-Claws</A>
344
-<LI><A NAME="tex2html474"
344
+<LI><A NAME="tex2html480"
345 345
   HREF="node120.html">SoftlabsAV</A>
346 346
 </UL>
347
-<LI><A NAME="tex2html475"
347
+<LI><A NAME="tex2html481"
348 348
   HREF="node121.html"><I>Graphical User Interface + ClamAV</I></A>
349 349
 <UL>
350
-<LI><A NAME="tex2html476"
350
+<LI><A NAME="tex2html482"
351 351
   HREF="node122.html">AVScan</A>
352
-<LI><A NAME="tex2html477"
352
+<LI><A NAME="tex2html483"
353 353
   HREF="node123.html">BeClam</A>
354
-<LI><A NAME="tex2html478"
354
+<LI><A NAME="tex2html484"
355 355
   HREF="node124.html">Clamaktion</A>
356
-<LI><A NAME="tex2html479"
356
+<LI><A NAME="tex2html485"
357 357
   HREF="node125.html">ClamShell</A>
358
-<LI><A NAME="tex2html480"
358
+<LI><A NAME="tex2html486"
359 359
   HREF="node126.html">ClamTk</A>
360
-<LI><A NAME="tex2html481"
360
+<LI><A NAME="tex2html487"
361 361
   HREF="node127.html">clamXav</A>
362
-<LI><A NAME="tex2html482"
362
+<LI><A NAME="tex2html488"
363 363
   HREF="node128.html">ClamWin</A>
364
-<LI><A NAME="tex2html483"
364
+<LI><A NAME="tex2html489"
365 365
   HREF="node129.html">FETCAV</A>
366
-<LI><A NAME="tex2html484"
366
+<LI><A NAME="tex2html490"
367 367
   HREF="node130.html">KlamAV</A>
368
-<LI><A NAME="tex2html485"
368
+<LI><A NAME="tex2html491"
369 369
   HREF="node131.html">QtClamAVclient</A>
370
-<LI><A NAME="tex2html486"
370
+<LI><A NAME="tex2html492"
371 371
   HREF="node132.html">wbmclamav</A>
372 372
 </UL>
373
-<LI><A NAME="tex2html487"
373
+<LI><A NAME="tex2html493"
374 374
   HREF="node133.html"><I>Library + ClamAV</I></A>
375 375
 <UL>
376
-<LI><A NAME="tex2html488"
376
+<LI><A NAME="tex2html494"
377 377
   HREF="node134.html">ClamAV-Sharp</A>
378
-<LI><A NAME="tex2html489"
378
+<LI><A NAME="tex2html495"
379 379
   HREF="node135.html">ClamAVPlugin</A>
380
-<LI><A NAME="tex2html490"
380
+<LI><A NAME="tex2html496"
381 381
   HREF="node136.html">clamavr</A>
382
-<LI><A NAME="tex2html491"
382
+<LI><A NAME="tex2html497"
383 383
   HREF="node137.html">D bindings for ClamAV</A>
384
-<LI><A NAME="tex2html492"
384
+<LI><A NAME="tex2html498"
385 385
   HREF="node138.html">File::Scan::ClamAV</A>
386
-<LI><A NAME="tex2html493"
386
+<LI><A NAME="tex2html499"
387 387
   HREF="node139.html">Mail::ClamAV</A>
388
-<LI><A NAME="tex2html494"
388
+<LI><A NAME="tex2html500"
389 389
   HREF="node140.html">PHP ClamAV Lib</A>
390
-<LI><A NAME="tex2html495"
390
+<LI><A NAME="tex2html501"
391 391
   HREF="node141.html">pyclamav</A>
392
-<LI><A NAME="tex2html496"
392
+<LI><A NAME="tex2html502"
393 393
   HREF="node142.html">WRAVLib</A>
394 394
 </UL>
395
-<LI><A NAME="tex2html497"
395
+<LI><A NAME="tex2html503"
396 396
   HREF="node143.html"><I>Miscellaneous + ClamAV</I></A>
397 397
 <UL>
398
-<LI><A NAME="tex2html498"
398
+<LI><A NAME="tex2html504"
399 399
   HREF="node144.html">INSERT</A>
400
-<LI><A NAME="tex2html499"
400
+<LI><A NAME="tex2html505"
401 401
   HREF="node145.html">Local Area Security</A>
402
-<LI><A NAME="tex2html500"
402
+<LI><A NAME="tex2html506"
403 403
   HREF="node146.html">mailgraph</A>
404
-<LI><A NAME="tex2html501"
404
+<LI><A NAME="tex2html507"
405 405
   HREF="node147.html">mailman-clamav</A>
406
-<LI><A NAME="tex2html502"
406
+<LI><A NAME="tex2html508"
407 407
   HREF="node148.html">Moodle</A>
408
-<LI><A NAME="tex2html503"
408
+<LI><A NAME="tex2html509"
409 409
   HREF="node149.html">nclamd</A>
410
-<LI><A NAME="tex2html504"
410
+<LI><A NAME="tex2html510"
411 411
   HREF="node150.html">qmailmrtg7</A>
412
-<LI><A NAME="tex2html505"
412
+<LI><A NAME="tex2html511"
413 413
   HREF="node151.html">redWall Firewall</A>
414
-<LI><A NAME="tex2html506"
414
+<LI><A NAME="tex2html512"
415 415
   HREF="node152.html">Scan Log Analyzer</A>
416
-<LI><A NAME="tex2html507"
416
+<LI><A NAME="tex2html513"
417 417
   HREF="node153.html">snort-inline</A>
418
-<LI><A NAME="tex2html508"
418
+<LI><A NAME="tex2html514"
419 419
   HREF="node154.html">Snort-ClamAV</A>
420 420
 </UL>
421 421
 </UL>
422
-<LI><A NAME="tex2html509"
422
+<LI><A NAME="tex2html515"
423 423
   HREF="node155.html">Credits</A>
424 424
 <UL>
425
-<LI><A NAME="tex2html510"
425
+<LI><A NAME="tex2html516"
426 426
   HREF="node156.html">Database mirrors</A>
427
-<LI><A NAME="tex2html511"
427
+<LI><A NAME="tex2html517"
428 428
   HREF="node157.html">Contributors</A>
429
-<LI><A NAME="tex2html512"
429
+<LI><A NAME="tex2html518"
430 430
   HREF="node158.html">Donors</A>
431
-<LI><A NAME="tex2html513"
431
+<LI><A NAME="tex2html519"
432 432
   HREF="node159.html">Graphics</A>
433
-<LI><A NAME="tex2html514"
433
+<LI><A NAME="tex2html520"
434 434
   HREF="node160.html">OpenAntiVirus</A>
435 435
 </UL>
436
-<LI><A NAME="tex2html515"
436
+<LI><A NAME="tex2html521"
437 437
   HREF="node161.html">Authors</A>
438
-<LI><A NAME="tex2html516"
438
+<LI><A NAME="tex2html522"
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-01-09
445
+2006-04-29
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="tex2html353"
27
+<A NAME="tex2html359"
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="tex2html351"
32
+<A NAME="tex2html357"
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="tex2html354"
36
+<B> Next:</B> <A NAME="tex2html360"
37 37
   HREF="node1.html">Contents</A>
38
- &nbsp <B>  <A NAME="tex2html352"
38
+ &nbsp <B>  <A NAME="tex2html358"
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
62
+<BR>	<FONT SIZE="+3">Clam AntiVirus 0.88.2
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="tex2html355"
74
+<LI><A NAME="tex2html361"
75 75
   HREF="node1.html">Contents</A>
76
-<LI><A NAME="tex2html356"
76
+<LI><A NAME="tex2html362"
77 77
   HREF="node2.html">Introduction</A>
78 78
 <UL>
79
-<LI><A NAME="tex2html357"
79
+<LI><A NAME="tex2html363"
80 80
   HREF="node3.html">Features</A>
81
-<LI><A NAME="tex2html358"
81
+<LI><A NAME="tex2html364"
82 82
   HREF="node4.html">Mailing lists</A>
83
-<LI><A NAME="tex2html359"
83
+<LI><A NAME="tex2html365"
84 84
   HREF="node5.html">Virus submitting</A>
85 85
 </UL>
86
-<LI><A NAME="tex2html360"
86
+<LI><A NAME="tex2html366"
87 87
   HREF="node6.html">Base package</A>
88 88
 <UL>
89
-<LI><A NAME="tex2html361"
89
+<LI><A NAME="tex2html367"
90 90
   HREF="node7.html">Supported platforms</A>
91
-<LI><A NAME="tex2html362"
91
+<LI><A NAME="tex2html368"
92 92
   HREF="node8.html">Binary packages</A>
93
-<LI><A NAME="tex2html363"
93
+<LI><A NAME="tex2html369"
94 94
   HREF="node9.html">Daily built snapshots</A>
95 95
 </UL>
96
-<LI><A NAME="tex2html364"
96
+<LI><A NAME="tex2html370"
97 97
   HREF="node10.html">Installation</A>
98 98
 <UL>
99
-<LI><A NAME="tex2html365"
99
+<LI><A NAME="tex2html371"
100 100
   HREF="node11.html">Requirements</A>
101
-<LI><A NAME="tex2html366"
101
+<LI><A NAME="tex2html372"
102 102
   HREF="node12.html">Installing on a shell account</A>
103
-<LI><A NAME="tex2html367"
103
+<LI><A NAME="tex2html373"
104 104
   HREF="node13.html">Adding new system user and group</A>
105
-<LI><A NAME="tex2html368"
105
+<LI><A NAME="tex2html374"
106 106
   HREF="node14.html">Compilation of base package</A>
107
-<LI><A NAME="tex2html369"
107
+<LI><A NAME="tex2html375"
108 108
   HREF="node15.html">Compilation with clamav-milter enabled</A>
109 109
 </UL>
110
-<LI><A NAME="tex2html370"
110
+<LI><A NAME="tex2html376"
111 111
   HREF="node16.html">Configuration</A>
112 112
 <UL>
113
-<LI><A NAME="tex2html371"
113
+<LI><A NAME="tex2html377"
114 114
   HREF="node17.html">clamd</A>
115 115
 <UL>
116
-<LI><A NAME="tex2html372"
116
+<LI><A NAME="tex2html378"
117 117
   HREF="node18.html">On-access scanning</A>
118 118
 </UL>
119
-<LI><A NAME="tex2html373"
119
+<LI><A NAME="tex2html379"
120 120
   HREF="node19.html">clamav-milter</A>
121
-<LI><A NAME="tex2html374"
121
+<LI><A NAME="tex2html380"
122 122
   HREF="node20.html">Testing</A>
123
-<LI><A NAME="tex2html375"
123
+<LI><A NAME="tex2html381"
124 124
   HREF="node21.html">Setting up auto-updating</A>
125
-<LI><A NAME="tex2html376"
125
+<LI><A NAME="tex2html382"
126 126
   HREF="node22.html">Closest mirrors</A>
127 127
 </UL>
128
-<LI><A NAME="tex2html377"
128
+<LI><A NAME="tex2html383"
129 129
   HREF="node23.html">Usage</A>
130 130
 <UL>
131
-<LI><A NAME="tex2html378"
131
+<LI><A NAME="tex2html384"
132 132
   HREF="node24.html">Clam daemon</A>
133
-<LI><A NAME="tex2html379"
133
+<LI><A NAME="tex2html385"
134 134
   HREF="node25.html">Clam<B>d</B>scan</A>
135
-<LI><A NAME="tex2html380"
135
+<LI><A NAME="tex2html386"
136 136
   HREF="node26.html">Clamuko</A>
137
-<LI><A NAME="tex2html381"
137
+<LI><A NAME="tex2html387"
138 138
   HREF="node27.html">Output format</A>
139 139
 <UL>
140
-<LI><A NAME="tex2html382"
140
+<LI><A NAME="tex2html388"
141 141
   HREF="node28.html">clamscan</A>
142
-<LI><A NAME="tex2html383"
142
+<LI><A NAME="tex2html389"
143 143
   HREF="node29.html">clamd</A>
144 144
 </UL>
145 145
 </UL>
146
-<LI><A NAME="tex2html384"
146
+<LI><A NAME="tex2html390"
147 147
   HREF="node30.html">LibClamAV</A>
148 148
 <UL>
149
-<LI><A NAME="tex2html385"
149
+<LI><A NAME="tex2html391"
150 150
   HREF="node31.html">Licence</A>
151
-<LI><A NAME="tex2html386"
151
+<LI><A NAME="tex2html392"
152 152
   HREF="node32.html">Features</A>
153 153
 <UL>
154
-<LI><A NAME="tex2html387"
154
+<LI><A NAME="tex2html393"
155 155
   HREF="node33.html">Archives and compressed files</A>
156
-<LI><A NAME="tex2html388"
156
+<LI><A NAME="tex2html394"
157 157
   HREF="node34.html">Mail files</A>
158 158
 </UL>
159
-<LI><A NAME="tex2html389"
159
+<LI><A NAME="tex2html395"
160 160
   HREF="node35.html">API</A>
161 161
 <UL>
162
-<LI><A NAME="tex2html390"
162
+<LI><A NAME="tex2html396"
163 163
   HREF="node36.html">Header file</A>
164
-<LI><A NAME="tex2html391"
164
+<LI><A NAME="tex2html397"
165 165
   HREF="node37.html">Database loading</A>
166
-<LI><A NAME="tex2html392"
166
+<LI><A NAME="tex2html398"
167 167
   HREF="node38.html">Error handling</A>
168
-<LI><A NAME="tex2html393"
168
+<LI><A NAME="tex2html399"
169 169
   HREF="node39.html">Database structure</A>
170 170
 </UL>
171
-<LI><A NAME="tex2html394"
171
+<LI><A NAME="tex2html400"
172 172
   HREF="node40.html">Database reloading</A>
173 173
 <UL>
174
-<LI><A NAME="tex2html395"
174
+<LI><A NAME="tex2html401"
175 175
   HREF="node41.html">Data scan functions</A>
176
-<LI><A NAME="tex2html396"
176
+<LI><A NAME="tex2html402"
177 177
   HREF="node42.html">Memory</A>
178
-<LI><A NAME="tex2html397"
178
+<LI><A NAME="tex2html403"
179 179
   HREF="node43.html">clamav-config</A>
180
-<LI><A NAME="tex2html398"
180
+<LI><A NAME="tex2html404"
181 181
   HREF="node44.html">Example</A>
182 182
 </UL>
183
-<LI><A NAME="tex2html399"
183
+<LI><A NAME="tex2html405"
184 184
   HREF="node45.html">CVD format</A>
185 185
 </UL>
186
-<LI><A NAME="tex2html400"
186
+<LI><A NAME="tex2html406"
187 187
   HREF="node46.html">Frequently Asked Questions</A>
188
-<LI><A NAME="tex2html401"
188
+<LI><A NAME="tex2html407"
189 189
   HREF="node47.html">Third party software</A>
190 190
 <UL>
191
-<LI><A NAME="tex2html402"
191
+<LI><A NAME="tex2html408"
192 192
   HREF="node48.html"><I>MTA + ClamAV</I></A>
193 193
 <UL>
194
-<LI><A NAME="tex2html403"
194
+<LI><A NAME="tex2html409"
195 195
   HREF="node49.html">amavisd-new</A>
196
-<LI><A NAME="tex2html404"
196
+<LI><A NAME="tex2html410"
197 197
   HREF="node50.html">AMaViS - "Next Generation"</A>
198
-<LI><A NAME="tex2html405"
198
+<LI><A NAME="tex2html411"
199 199
   HREF="node51.html">ClamdMail</A>
200
-<LI><A NAME="tex2html406"
200
+<LI><A NAME="tex2html412"
201 201
   HREF="node52.html">Clement</A>
202
-<LI><A NAME="tex2html407"
202
+<LI><A NAME="tex2html413"
203 203
   HREF="node53.html">cgpav</A>
204
-<LI><A NAME="tex2html408"
204
+<LI><A NAME="tex2html414"
205 205
   HREF="node54.html">ClamCour</A>
206
-<LI><A NAME="tex2html409"
206
+<LI><A NAME="tex2html415"
207 207
   HREF="node55.html">clamfilter</A>
208
-<LI><A NAME="tex2html410"
208
+<LI><A NAME="tex2html416"
209 209
   HREF="node56.html">ClamSMTP</A>
210
-<LI><A NAME="tex2html411"
210
+<LI><A NAME="tex2html417"
211 211
   HREF="node57.html">clapf</A>
212
-<LI><A NAME="tex2html412"
212
+<LI><A NAME="tex2html418"
213 213
   HREF="node58.html">DSpamPD</A>
214
-<LI><A NAME="tex2html413"
214
+<LI><A NAME="tex2html419"
215 215
   HREF="node59.html">exiscan</A>
216
-<LI><A NAME="tex2html414"
216
+<LI><A NAME="tex2html420"
217 217
   HREF="node60.html">Gadoyanvirus</A>
218
-<LI><A NAME="tex2html415"
218
+<LI><A NAME="tex2html421"
219 219
   HREF="node61.html">hMailServer</A>
220
-<LI><A NAME="tex2html416"
220
+<LI><A NAME="tex2html422"
221 221
   HREF="node62.html">IVS Milter</A>
222
-<LI><A NAME="tex2html417"
222
+<LI><A NAME="tex2html423"
223 223
   HREF="node63.html">j-chkmail</A>
224
-<LI><A NAME="tex2html418"
224
+<LI><A NAME="tex2html424"
225 225
   HREF="node64.html">Mail Avenger</A>
226
-<LI><A NAME="tex2html419"
226
+<LI><A NAME="tex2html425"
227 227
   HREF="node65.html">Mailnees</A>
228
-<LI><A NAME="tex2html420"
228
+<LI><A NAME="tex2html426"
229 229
   HREF="node66.html">MailScanner</A>
230
-<LI><A NAME="tex2html421"
230
+<LI><A NAME="tex2html427"
231 231
   HREF="node67.html">Maverix</A>
232
-<LI><A NAME="tex2html422"
232
+<LI><A NAME="tex2html428"
233 233
   HREF="node68.html">MIMEDefang</A>
234
-<LI><A NAME="tex2html423"
234
+<LI><A NAME="tex2html429"
235 235
   HREF="node69.html">mxGuard for IMail</A>
236
-<LI><A NAME="tex2html424"
236
+<LI><A NAME="tex2html430"
237 237
   HREF="node70.html">OdeiaVir</A>
238
-<LI><A NAME="tex2html425"
238
+<LI><A NAME="tex2html431"
239 239
   HREF="node71.html">OpenProtect</A>
240
-<LI><A NAME="tex2html426"
240
+<LI><A NAME="tex2html432"
241 241
   HREF="node72.html">Protea AntiVirus Tools</A>
242
-<LI><A NAME="tex2html427"
242
+<LI><A NAME="tex2html433"
243 243
   HREF="node73.html">PSCM</A>
244
-<LI><A NAME="tex2html428"
244
+<LI><A NAME="tex2html434"
245 245
   HREF="node74.html">PTSMail Utilities</A>
246
-<LI><A NAME="tex2html429"
246
+<LI><A NAME="tex2html435"
247 247
   HREF="node75.html">pymavis</A>
248
-<LI><A NAME="tex2html430"
248
+<LI><A NAME="tex2html436"
249 249
   HREF="node76.html">Qmail-Scanner</A>
250
-<LI><A NAME="tex2html431"
250
+<LI><A NAME="tex2html437"
251 251
   HREF="node77.html">qpsmtp</A>
252
-<LI><A NAME="tex2html432"
252
+<LI><A NAME="tex2html438"
253 253
   HREF="node78.html">qscanq</A>
254
-<LI><A NAME="tex2html433"
254
+<LI><A NAME="tex2html439"
255 255
   HREF="node79.html">qSheff</A>
256
-<LI><A NAME="tex2html434"
256
+<LI><A NAME="tex2html440"
257 257
   HREF="node80.html">RevolSys SMTP kit for Postfix</A>
258
-<LI><A NAME="tex2html435"
258
+<LI><A NAME="tex2html441"
259 259
   HREF="node81.html">Sagator</A>
260
-<LI><A NAME="tex2html436"
260
+<LI><A NAME="tex2html442"
261 261
   HREF="node82.html">Scrubber</A>
262
-<LI><A NAME="tex2html437"
262
+<LI><A NAME="tex2html443"
263 263
   HREF="node83.html">Secure Mail Intelligence!</A>
264
-<LI><A NAME="tex2html438"
264
+<LI><A NAME="tex2html444"
265 265
   HREF="node84.html">simscan</A>
266
-<LI><A NAME="tex2html439"
266
+<LI><A NAME="tex2html445"
267 267
   HREF="node85.html">SmarterMail Filter</A>
268
-<LI><A NAME="tex2html440"
268
+<LI><A NAME="tex2html446"
269 269
   HREF="node86.html">smf-clamd</A>
270
-<LI><A NAME="tex2html441"
270
+<LI><A NAME="tex2html447"
271 271
   HREF="node87.html">smtpfilter</A>
272
-<LI><A NAME="tex2html442"
272
+<LI><A NAME="tex2html448"
273 273
   HREF="node88.html">smtp-gated</A>
274
-<LI><A NAME="tex2html443"
274
+<LI><A NAME="tex2html449"
275 275
   HREF="node89.html">smtp-vilter</A>
276
-<LI><A NAME="tex2html444"
276
+<LI><A NAME="tex2html450"
277 277
   HREF="node90.html">Zabit</A>
278
-<LI><A NAME="tex2html445"
278
+<LI><A NAME="tex2html451"
279 279
   HREF="node91.html">zmscanner</A>
280 280
 </UL>
281
-<LI><A NAME="tex2html446"
281
+<LI><A NAME="tex2html452"
282 282
   HREF="node92.html"><I>MTA + POP3 Proxy + ClamAV</I></A>
283 283
 <UL>
284
-<LI><A NAME="tex2html447"
284
+<LI><A NAME="tex2html453"
285 285
   HREF="node93.html">ClamMail</A>
286
-<LI><A NAME="tex2html448"
286
+<LI><A NAME="tex2html454"
287 287
   HREF="node94.html">POP3 Virus Scanner Daemon</A>
288
-<LI><A NAME="tex2html449"
288
+<LI><A NAME="tex2html455"
289 289
   HREF="node95.html">pop3.proxy</A>
290 290
 </UL>
291
-<LI><A NAME="tex2html450"
291
+<LI><A NAME="tex2html456"
292 292
   HREF="node96.html"><I>Web/FTP Proxy + ClamAV</I></A>
293 293
 <UL>
294
-<LI><A NAME="tex2html451"
294
+<LI><A NAME="tex2html457"
295 295
   HREF="node97.html">DansGuardian Anti-Virus Patch</A>
296
-<LI><A NAME="tex2html452"
296
+<LI><A NAME="tex2html458"
297 297
   HREF="node98.html">Frox</A>
298
-<LI><A NAME="tex2html453"
298
+<LI><A NAME="tex2html459"
299 299
   HREF="node99.html">HTTP Anti Virus Proxy</A>
300
-<LI><A NAME="tex2html454"
300
+<LI><A NAME="tex2html460"
301 301
   HREF="node100.html">mod_clamav</A>
302
-<LI><A NAME="tex2html455"
302
+<LI><A NAME="tex2html461"
303 303
   HREF="node101.html">ClamAV module for ProFTPD</A>
304
-<LI><A NAME="tex2html456"
304
+<LI><A NAME="tex2html462"
305 305
   HREF="node102.html">SafeSquid</A>
306
-<LI><A NAME="tex2html457"
306
+<LI><A NAME="tex2html463"
307 307
   HREF="node103.html">SquidClamAV Redirector</A>
308
-<LI><A NAME="tex2html458"
308
+<LI><A NAME="tex2html464"
309 309
   HREF="node104.html">Squidclam</A>
310
-<LI><A NAME="tex2html459"
310
+<LI><A NAME="tex2html465"
311 311
   HREF="node105.html">Viralator</A>
312 312
 </UL>
313
-<LI><A NAME="tex2html460"
313
+<LI><A NAME="tex2html466"
314 314
   HREF="node106.html"><I>Filesystem + ClamAV</I></A>
315 315
 <UL>
316
-<LI><A NAME="tex2html461"
316
+<LI><A NAME="tex2html467"
317 317
   HREF="node107.html">Dazuko</A>
318
-<LI><A NAME="tex2html462"
318
+<LI><A NAME="tex2html468"
319 319
   HREF="node108.html">Famuko</A>
320
-<LI><A NAME="tex2html463"
320
+<LI><A NAME="tex2html469"
321 321
   HREF="node109.html">OpenAntiVirus samba-vscan</A>
322 322
 </UL>
323
-<LI><A NAME="tex2html464"
323
+<LI><A NAME="tex2html470"
324 324
   HREF="node110.html"><I>Mail User Agent + ClamAV</I></A>
325 325
 <UL>
326
-<LI><A NAME="tex2html465"
326
+<LI><A NAME="tex2html471"
327 327
   HREF="node111.html">clamailfilter</A>
328
-<LI><A NAME="tex2html466"
328
+<LI><A NAME="tex2html472"
329 329
   HREF="node112.html">ClamAssassin</A>
330
-<LI><A NAME="tex2html467"
330
+<LI><A NAME="tex2html473"
331 331
   HREF="node113.html">clamscan-procfilter</A>
332
-<LI><A NAME="tex2html468"
332
+<LI><A NAME="tex2html474"
333 333
   HREF="node114.html">KMail</A>
334
-<LI><A NAME="tex2html469"
334
+<LI><A NAME="tex2html475"
335 335
   HREF="node115.html">MyClamMailFilter</A>
336
-<LI><A NAME="tex2html470"
336
+<LI><A NAME="tex2html476"
337 337
   HREF="node116.html">OpenWebMail</A>
338
-<LI><A NAME="tex2html471"
338
+<LI><A NAME="tex2html477"
339 339
   HREF="node117.html">QClam</A>
340
-<LI><A NAME="tex2html472"
340
+<LI><A NAME="tex2html478"
341 341
   HREF="node118.html">QMVC - Qmail Mail and Virus Control</A>
342
-<LI><A NAME="tex2html473"
342
+<LI><A NAME="tex2html479"
343 343
   HREF="node119.html">Sylpheed-Claws</A>
344
-<LI><A NAME="tex2html474"
344
+<LI><A NAME="tex2html480"
345 345
   HREF="node120.html">SoftlabsAV</A>
346 346
 </UL>
347
-<LI><A NAME="tex2html475"
347
+<LI><A NAME="tex2html481"
348 348
   HREF="node121.html"><I>Graphical User Interface + ClamAV</I></A>
349 349
 <UL>
350
-<LI><A NAME="tex2html476"
350
+<LI><A NAME="tex2html482"
351 351
   HREF="node122.html">AVScan</A>
352
-<LI><A NAME="tex2html477"
352
+<LI><A NAME="tex2html483"
353 353
   HREF="node123.html">BeClam</A>
354
-<LI><A NAME="tex2html478"
354
+<LI><A NAME="tex2html484"
355 355
   HREF="node124.html">Clamaktion</A>
356
-<LI><A NAME="tex2html479"
356
+<LI><A NAME="tex2html485"
357 357
   HREF="node125.html">ClamShell</A>
358
-<LI><A NAME="tex2html480"
358
+<LI><A NAME="tex2html486"
359 359
   HREF="node126.html">ClamTk</A>
360
-<LI><A NAME="tex2html481"
360
+<LI><A NAME="tex2html487"
361 361
   HREF="node127.html">clamXav</A>
362
-<LI><A NAME="tex2html482"
362
+<LI><A NAME="tex2html488"
363 363
   HREF="node128.html">ClamWin</A>
364
-<LI><A NAME="tex2html483"
364
+<LI><A NAME="tex2html489"
365 365
   HREF="node129.html">FETCAV</A>
366
-<LI><A NAME="tex2html484"
366
+<LI><A NAME="tex2html490"
367 367
   HREF="node130.html">KlamAV</A>
368
-<LI><A NAME="tex2html485"
368
+<LI><A NAME="tex2html491"
369 369
   HREF="node131.html">QtClamAVclient</A>
370
-<LI><A NAME="tex2html486"
370
+<LI><A NAME="tex2html492"
371 371
   HREF="node132.html">wbmclamav</A>
372 372
 </UL>
373
-<LI><A NAME="tex2html487"
373
+<LI><A NAME="tex2html493"
374 374
   HREF="node133.html"><I>Library + ClamAV</I></A>
375 375
 <UL>
376
-<LI><A NAME="tex2html488"
376
+<LI><A NAME="tex2html494"
377 377
   HREF="node134.html">ClamAV-Sharp</A>
378
-<LI><A NAME="tex2html489"
378
+<LI><A NAME="tex2html495"
379 379
   HREF="node135.html">ClamAVPlugin</A>
380
-<LI><A NAME="tex2html490"
380
+<LI><A NAME="tex2html496"
381 381
   HREF="node136.html">clamavr</A>
382
-<LI><A NAME="tex2html491"
382
+<LI><A NAME="tex2html497"
383 383
   HREF="node137.html">D bindings for ClamAV</A>
384
-<LI><A NAME="tex2html492"
384
+<LI><A NAME="tex2html498"
385 385
   HREF="node138.html">File::Scan::ClamAV</A>
386
-<LI><A NAME="tex2html493"
386
+<LI><A NAME="tex2html499"
387 387
   HREF="node139.html">Mail::ClamAV</A>
388
-<LI><A NAME="tex2html494"
388
+<LI><A NAME="tex2html500"
389 389
   HREF="node140.html">PHP ClamAV Lib</A>
390
-<LI><A NAME="tex2html495"
390
+<LI><A NAME="tex2html501"
391 391
   HREF="node141.html">pyclamav</A>
392
-<LI><A NAME="tex2html496"
392
+<LI><A NAME="tex2html502"
393 393
   HREF="node142.html">WRAVLib</A>
394 394
 </UL>
395
-<LI><A NAME="tex2html497"
395
+<LI><A NAME="tex2html503"
396 396
   HREF="node143.html"><I>Miscellaneous + ClamAV</I></A>
397 397
 <UL>
398
-<LI><A NAME="tex2html498"
398
+<LI><A NAME="tex2html504"
399 399
   HREF="node144.html">INSERT</A>
400
-<LI><A NAME="tex2html499"
400
+<LI><A NAME="tex2html505"
401 401
   HREF="node145.html">Local Area Security</A>
402
-<LI><A NAME="tex2html500"
402
+<LI><A NAME="tex2html506"
403 403
   HREF="node146.html">mailgraph</A>
404
-<LI><A NAME="tex2html501"
404
+<LI><A NAME="tex2html507"
405 405
   HREF="node147.html">mailman-clamav</A>
406
-<LI><A NAME="tex2html502"
406
+<LI><A NAME="tex2html508"
407 407
   HREF="node148.html">Moodle</A>
408
-<LI><A NAME="tex2html503"
408
+<LI><A NAME="tex2html509"
409 409
   HREF="node149.html">nclamd</A>
410
-<LI><A NAME="tex2html504"
410
+<LI><A NAME="tex2html510"
411 411
   HREF="node150.html">qmailmrtg7</A>
412
-<LI><A NAME="tex2html505"
412
+<LI><A NAME="tex2html511"
413 413
   HREF="node151.html">redWall Firewall</A>
414
-<LI><A NAME="tex2html506"
414
+<LI><A NAME="tex2html512"
415 415
   HREF="node152.html">Scan Log Analyzer</A>
416
-<LI><A NAME="tex2html507"
416
+<LI><A NAME="tex2html513"
417 417
   HREF="node153.html">snort-inline</A>
418
-<LI><A NAME="tex2html508"
418
+<LI><A NAME="tex2html514"
419 419
   HREF="node154.html">Snort-ClamAV</A>
420 420
 </UL>
421 421
 </UL>
422
-<LI><A NAME="tex2html509"
422
+<LI><A NAME="tex2html515"
423 423
   HREF="node155.html">Credits</A>
424 424
 <UL>
425
-<LI><A NAME="tex2html510"
425
+<LI><A NAME="tex2html516"
426 426
   HREF="node156.html">Database mirrors</A>
427
-<LI><A NAME="tex2html511"
427
+<LI><A NAME="tex2html517"
428 428
   HREF="node157.html">Contributors</A>
429
-<LI><A NAME="tex2html512"
429
+<LI><A NAME="tex2html518"
430 430
   HREF="node158.html">Donors</A>
431
-<LI><A NAME="tex2html513"
431
+<LI><A NAME="tex2html519"
432 432
   HREF="node159.html">Graphics</A>
433
-<LI><A NAME="tex2html514"
433
+<LI><A NAME="tex2html520"
434 434
   HREF="node160.html">OpenAntiVirus</A>
435 435
 </UL>
436
-<LI><A NAME="tex2html515"
436
+<LI><A NAME="tex2html521"
437 437
   HREF="node161.html">Authors</A>
438
-<LI><A NAME="tex2html516"
438
+<LI><A NAME="tex2html522"
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-01-09
445
+2006-04-29
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="tex2html525"
30
+<A NAME="tex2html531"
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="tex2html523"
33
+<A NAME="tex2html529"
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="tex2html517"
36
+<A NAME="tex2html523"
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="tex2html526"
40
+<B> Next:</B> <A NAME="tex2html532"
41 41
   HREF="node2.html">Introduction</A>
42
-<B> Up:</B> <A NAME="tex2html524"
42
+<B> Up:</B> <A NAME="tex2html530"
43 43
   HREF="clamdoc.html">clamdoc</A>
44
-<B> Previous:</B> <A NAME="tex2html518"
44
+<B> Previous:</B> <A NAME="tex2html524"
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="tex2html527"
57
+<LI><A NAME="tex2html533"
58 58
   HREF="node2.html">Introduction</A>
59 59
 <UL>
60
-<LI><A NAME="tex2html528"
60
+<LI><A NAME="tex2html534"
61 61
   HREF="node3.html">Features</A>
62
-<LI><A NAME="tex2html529"
62
+<LI><A NAME="tex2html535"
63 63
   HREF="node4.html">Mailing lists</A>
64
-<LI><A NAME="tex2html530"
64
+<LI><A NAME="tex2html536"
65 65
   HREF="node5.html">Virus submitting</A>
66 66
 </UL>
67
-<LI><A NAME="tex2html531"
67
+<LI><A NAME="tex2html537"
68 68
   HREF="node6.html">Base package</A>
69 69
 <UL>
70
-<LI><A NAME="tex2html532"
70
+<LI><A NAME="tex2html538"
71 71
   HREF="node7.html">Supported platforms</A>
72
-<LI><A NAME="tex2html533"
72
+<LI><A NAME="tex2html539"
73 73
   HREF="node8.html">Binary packages</A>
74
-<LI><A NAME="tex2html534"
74
+<LI><A NAME="tex2html540"
75 75
   HREF="node9.html">Daily built snapshots</A>
76 76
 </UL>
77
-<LI><A NAME="tex2html535"
77
+<LI><A NAME="tex2html541"
78 78
   HREF="node10.html">Installation</A>
79 79
 <UL>
80
-<LI><A NAME="tex2html536"
80
+<LI><A NAME="tex2html542"
81 81
   HREF="node11.html">Requirements</A>
82
-<LI><A NAME="tex2html537"
82
+<LI><A NAME="tex2html543"
83 83
   HREF="node12.html">Installing on a shell account</A>
84
-<LI><A NAME="tex2html538"
84
+<LI><A NAME="tex2html544"
85 85
   HREF="node13.html">Adding new system user and group</A>
86
-<LI><A NAME="tex2html539"
86
+<LI><A NAME="tex2html545"
87 87
   HREF="node14.html">Compilation of base package</A>
88
-<LI><A NAME="tex2html540"
88
+<LI><A NAME="tex2html546"
89 89
   HREF="node15.html">Compilation with clamav-milter enabled</A>
90 90
 </UL>
91
-<LI><A NAME="tex2html541"
91
+<LI><A NAME="tex2html547"
92 92
   HREF="node16.html">Configuration</A>
93 93
 <UL>
94
-<LI><A NAME="tex2html542"
94
+<LI><A NAME="tex2html548"
95 95
   HREF="node17.html">clamd</A>
96
-<LI><A NAME="tex2html543"
96
+<LI><A NAME="tex2html549"
97 97
   HREF="node19.html">clamav-milter</A>
98
-<LI><A NAME="tex2html544"
98
+<LI><A NAME="tex2html550"
99 99
   HREF="node20.html">Testing</A>
100
-<LI><A NAME="tex2html545"
100
+<LI><A NAME="tex2html551"
101 101
   HREF="node21.html">Setting up auto-updating</A>
102
-<LI><A NAME="tex2html546"
102
+<LI><A NAME="tex2html552"
103 103
   HREF="node22.html">Closest mirrors</A>
104 104
 </UL>
105
-<LI><A NAME="tex2html547"
105
+<LI><A NAME="tex2html553"
106 106
   HREF="node23.html">Usage</A>
107 107
 <UL>
108
-<LI><A NAME="tex2html548"
108
+<LI><A NAME="tex2html554"
109 109
   HREF="node24.html">Clam daemon</A>
110
-<LI><A NAME="tex2html549"
110
+<LI><A NAME="tex2html555"
111 111
   HREF="node25.html">Clam<B>d</B>scan</A>
112
-<LI><A NAME="tex2html550"
112
+<LI><A NAME="tex2html556"
113 113
   HREF="node26.html">Clamuko</A>
114
-<LI><A NAME="tex2html551"
114
+<LI><A NAME="tex2html557"
115 115
   HREF="node27.html">Output format</A>
116 116
 </UL>
117
-<LI><A NAME="tex2html552"
117
+<LI><A NAME="tex2html558"
118 118
   HREF="node30.html">LibClamAV</A>
119 119
 <UL>
120
-<LI><A NAME="tex2html553"
120
+<LI><A NAME="tex2html559"
121 121
   HREF="node31.html">Licence</A>
122
-<LI><A NAME="tex2html554"
122
+<LI><A NAME="tex2html560"
123 123
   HREF="node32.html">Features</A>
124
-<LI><A NAME="tex2html555"
124
+<LI><A NAME="tex2html561"
125 125
   HREF="node35.html">API</A>
126
-<LI><A NAME="tex2html556"
126
+<LI><A NAME="tex2html562"
127 127
   HREF="node40.html">Database reloading</A>
128
-<LI><A NAME="tex2html557"
128
+<LI><A NAME="tex2html563"
129 129
   HREF="node45.html">CVD format</A>
130 130
 </UL>
131
-<LI><A NAME="tex2html558"
131
+<LI><A NAME="tex2html564"
132 132
   HREF="node46.html">Frequently Asked Questions</A>
133
-<LI><A NAME="tex2html559"
133
+<LI><A NAME="tex2html565"
134 134
   HREF="node47.html">Third party software</A>
135 135
 <UL>
136
-<LI><A NAME="tex2html560"
136
+<LI><A NAME="tex2html566"
137 137
   HREF="node48.html"><I>MTA + ClamAV</I></A>
138
-<LI><A NAME="tex2html561"
138
+<LI><A NAME="tex2html567"
139 139
   HREF="node92.html"><I>MTA + POP3 Proxy + ClamAV</I></A>
140
-<LI><A NAME="tex2html562"
140
+<LI><A NAME="tex2html568"
141 141
   HREF="node96.html"><I>Web/FTP Proxy + ClamAV</I></A>
142
-<LI><A NAME="tex2html563"
142
+<LI><A NAME="tex2html569"
143 143
   HREF="node106.html"><I>Filesystem + ClamAV</I></A>
144
-<LI><A NAME="tex2html564"
144
+<LI><A NAME="tex2html570"
145 145
   HREF="node110.html"><I>Mail User Agent + ClamAV</I></A>
146
-<LI><A NAME="tex2html565"
146
+<LI><A NAME="tex2html571"
147 147
   HREF="node121.html"><I>Graphical User Interface + ClamAV</I></A>
148
-<LI><A NAME="tex2html566"
148
+<LI><A NAME="tex2html572"
149 149
   HREF="node133.html"><I>Library + ClamAV</I></A>
150
-<LI><A NAME="tex2html567"
150
+<LI><A NAME="tex2html573"
151 151
   HREF="node143.html"><I>Miscellaneous + ClamAV</I></A>
152 152
 </UL>
153
-<LI><A NAME="tex2html568"
153
+<LI><A NAME="tex2html574"
154 154
   HREF="node155.html">Credits</A>
155 155
 <UL>
156
-<LI><A NAME="tex2html569"
156
+<LI><A NAME="tex2html575"
157 157
   HREF="node156.html">Database mirrors</A>
158
-<LI><A NAME="tex2html570"
158
+<LI><A NAME="tex2html576"
159 159
   HREF="node157.html">Contributors</A>
160
-<LI><A NAME="tex2html571"
160
+<LI><A NAME="tex2html577"
161 161
   HREF="node158.html">Donors</A>
162
-<LI><A NAME="tex2html572"
162
+<LI><A NAME="tex2html578"
163 163
   HREF="node159.html">Graphics</A>
164
-<LI><A NAME="tex2html573"
164
+<LI><A NAME="tex2html579"
165 165
   HREF="node160.html">OpenAntiVirus</A>
166 166
 </UL>
167
-<LI><A NAME="tex2html574"
167
+<LI><A NAME="tex2html580"
168 168
   HREF="node161.html">Authors</A>
169
-<LI><A NAME="tex2html575"
169
+<LI><A NAME="tex2html581"
170 170
   HREF="node162.html">About this document ...</A>
171 171
 </UL>
172 172
 <!--End of Table of Contents-->    <BR>
... ...
@@ -215,12 +215,12 @@ Public License v2.
215 215
 
216 216
     <BR>
217 217
 <IMG
218
- WIDTH="556" HEIGHT="259" ALIGN="BOTTOM" BORDER="0"
218
+ WIDTH="556" HEIGHT="257" ALIGN="BOTTOM" BORDER="0"
219 219
  SRC="img4.png"
220 220
  ALT="\begin{boxedminipage}[b]{\textwidth}
221 221
 Clam AntiVirus is free software; you can r...
222
-...
223
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
222
+... Franklin Street, Fifth Floor, Boston,
223
+MA 02110-1301, USA.
224 224
 \end{boxedminipage}">
225 225
 <BR>
226 226
 
... ...
@@ -230,7 +230,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
230 230
 <BR><HR>
231 231
 <ADDRESS>
232 232
 Tomasz Kojm
233
-2006-01-09
233
+2006-04-29
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="tex2html684"
30
+<A NAME="tex2html690"
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="tex2html680"
33
+<A NAME="tex2html686"
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="tex2html674"
36
+<A NAME="tex2html680"
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="tex2html682"
39
+<A NAME="tex2html688"
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="tex2html685"
43
+<B> Next:</B> <A NAME="tex2html691"
44 44
   HREF="node11.html">Requirements</A>
45
-<B> Up:</B> <A NAME="tex2html681"
45
+<B> Up:</B> <A NAME="tex2html687"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html675"
47
+<B> Previous:</B> <A NAME="tex2html681"
48 48
   HREF="node9.html">Daily built snapshots</A>
49
- &nbsp <B>  <A NAME="tex2html683"
49
+ &nbsp <B>  <A NAME="tex2html689"
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="tex2html686"
65
+<LI><A NAME="tex2html692"
66 66
   HREF="node11.html">Requirements</A>
67
-<LI><A NAME="tex2html687"
67
+<LI><A NAME="tex2html693"
68 68
   HREF="node12.html">Installing on a shell account</A>
69
-<LI><A NAME="tex2html688"
69
+<LI><A NAME="tex2html694"
70 70
   HREF="node13.html">Adding new system user and group</A>
71
-<LI><A NAME="tex2html689"
71
+<LI><A NAME="tex2html695"
72 72
   HREF="node14.html">Compilation of base package</A>
73
-<LI><A NAME="tex2html690"
73
+<LI><A NAME="tex2html696"
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-01-09
80
+2006-04-29
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="tex2html1949"
30
+<A NAME="tex2html1955"
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="tex2html1945"
33
+<A NAME="tex2html1951"
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="tex2html1939"
36
+<A NAME="tex2html1945"
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="tex2html1947"
39
+<A NAME="tex2html1953"
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="tex2html1950"
43
+<B> Next:</B> <A NAME="tex2html1956"
44 44
   HREF="node101.html">ClamAV module for ProFTPD</A>
45
-<B> Up:</B> <A NAME="tex2html1946"
45
+<B> Up:</B> <A NAME="tex2html1952"
46 46
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1940"
47
+<B> Previous:</B> <A NAME="tex2html1946"
48 48
   HREF="node99.html">HTTP Anti Virus Proxy</A>
49
- &nbsp <B>  <A NAME="tex2html1948"
49
+ &nbsp <B>  <A NAME="tex2html1954"
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-01-09
69
+2006-04-29
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="tex2html1961"
30
+<A NAME="tex2html1967"
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="tex2html1957"
33
+<A NAME="tex2html1963"
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="tex2html1951"
36
+<A NAME="tex2html1957"
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="tex2html1959"
39
+<A NAME="tex2html1965"
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="tex2html1962"
43
+<B> Next:</B> <A NAME="tex2html1968"
44 44
   HREF="node102.html">SafeSquid</A>
45
-<B> Up:</B> <A NAME="tex2html1958"
45
+<B> Up:</B> <A NAME="tex2html1964"
46 46
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1952"
47
+<B> Previous:</B> <A NAME="tex2html1958"
48 48
   HREF="node100.html">mod_clamav</A>
49
- &nbsp <B>  <A NAME="tex2html1960"
49
+ &nbsp <B>  <A NAME="tex2html1966"
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-01-09
71
+2006-04-29
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="tex2html1973"
30
+<A NAME="tex2html1979"
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="tex2html1969"
33
+<A NAME="tex2html1975"
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="tex2html1963"
36
+<A NAME="tex2html1969"
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="tex2html1971"
39
+<A NAME="tex2html1977"
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="tex2html1974"
43
+<B> Next:</B> <A NAME="tex2html1980"
44 44
   HREF="node103.html">SquidClamAV Redirector</A>
45
-<B> Up:</B> <A NAME="tex2html1970"
45
+<B> Up:</B> <A NAME="tex2html1976"
46 46
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1964"
47
+<B> Previous:</B> <A NAME="tex2html1970"
48 48
   HREF="node101.html">ClamAV module for ProFTPD</A>
49
- &nbsp <B>  <A NAME="tex2html1972"
49
+ &nbsp <B>  <A NAME="tex2html1978"
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-01-09
78
+2006-04-29
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="tex2html1985"
30
+<A NAME="tex2html1991"
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="tex2html1981"
33
+<A NAME="tex2html1987"
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="tex2html1975"
36
+<A NAME="tex2html1981"
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="tex2html1983"
39
+<A NAME="tex2html1989"
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="tex2html1986"
43
+<B> Next:</B> <A NAME="tex2html1992"
44 44
   HREF="node104.html">Squidclam</A>
45
-<B> Up:</B> <A NAME="tex2html1982"
45
+<B> Up:</B> <A NAME="tex2html1988"
46 46
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1976"
47
+<B> Previous:</B> <A NAME="tex2html1982"
48 48
   HREF="node102.html">SafeSquid</A>
49
- &nbsp <B>  <A NAME="tex2html1984"
49
+ &nbsp <B>  <A NAME="tex2html1990"
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-01-09
73
+2006-04-29
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="tex2html1997"
30
+<A NAME="tex2html2003"
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="tex2html1993"
33
+<A NAME="tex2html1999"
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="tex2html1987"
36
+<A NAME="tex2html1993"
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="tex2html1995"
39
+<A NAME="tex2html2001"
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="tex2html1998"
43
+<B> Next:</B> <A NAME="tex2html2004"
44 44
   HREF="node105.html">Viralator</A>
45
-<B> Up:</B> <A NAME="tex2html1994"
45
+<B> Up:</B> <A NAME="tex2html2000"
46 46
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1988"
47
+<B> Previous:</B> <A NAME="tex2html1994"
48 48
   HREF="node103.html">SquidClamAV Redirector</A>
49
- &nbsp <B>  <A NAME="tex2html1996"
49
+ &nbsp <B>  <A NAME="tex2html2002"
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-01-09
69
+2006-04-29
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="tex2html2007"
29
+<A NAME="tex2html2013"
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="tex2html2003"
32
+<A NAME="tex2html2009"
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="tex2html1999"
35
+<A NAME="tex2html2005"
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="tex2html2005"
38
+<A NAME="tex2html2011"
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="tex2html2008"
42
+<B> Next:</B> <A NAME="tex2html2014"
43 43
   HREF="node106.html">Filesystem + ClamAV</A>
44
-<B> Up:</B> <A NAME="tex2html2004"
44
+<B> Up:</B> <A NAME="tex2html2010"
45 45
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html2000"
46
+<B> Previous:</B> <A NAME="tex2html2006"
47 47
   HREF="node104.html">Squidclam</A>
48
- &nbsp <B>  <A NAME="tex2html2006"
48
+ &nbsp <B>  <A NAME="tex2html2012"
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-01-09
68
+2006-04-29
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="tex2html2019"
30
+<A NAME="tex2html2025"
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="tex2html2015"
33
+<A NAME="tex2html2021"
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="tex2html2009"
36
+<A NAME="tex2html2015"
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="tex2html2017"
39
+<A NAME="tex2html2023"
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="tex2html2020"
43
+<B> Next:</B> <A NAME="tex2html2026"
44 44
   HREF="node107.html">Dazuko</A>
45
-<B> Up:</B> <A NAME="tex2html2016"
45
+<B> Up:</B> <A NAME="tex2html2022"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html2010"
47
+<B> Previous:</B> <A NAME="tex2html2016"
48 48
   HREF="node105.html">Viralator</A>
49
- &nbsp <B>  <A NAME="tex2html2018"
49
+ &nbsp <B>  <A NAME="tex2html2024"
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="tex2html2021"
65
+<LI><A NAME="tex2html2027"
66 66
   HREF="node107.html">Dazuko</A>
67
-<LI><A NAME="tex2html2022"
67
+<LI><A NAME="tex2html2028"
68 68
   HREF="node108.html">Famuko</A>
69
-<LI><A NAME="tex2html2023"
69
+<LI><A NAME="tex2html2029"
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-01-09
76
+2006-04-29
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="tex2html2034"
30
+<A NAME="tex2html2040"
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="tex2html2030"
33
+<A NAME="tex2html2036"
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="tex2html2024"
36
+<A NAME="tex2html2030"
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="tex2html2032"
39
+<A NAME="tex2html2038"
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="tex2html2035"
43
+<B> Next:</B> <A NAME="tex2html2041"
44 44
   HREF="node108.html">Famuko</A>
45
-<B> Up:</B> <A NAME="tex2html2031"
45
+<B> Up:</B> <A NAME="tex2html2037"
46 46
   HREF="node106.html">Filesystem + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2025"
47
+<B> Previous:</B> <A NAME="tex2html2031"
48 48
   HREF="node106.html">Filesystem + ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2033"
49
+ &nbsp <B>  <A NAME="tex2html2039"
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-01-09
76
+2006-04-29
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="tex2html2046"
30
+<A NAME="tex2html2052"
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="tex2html2042"
33
+<A NAME="tex2html2048"
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="tex2html2036"
36
+<A NAME="tex2html2042"
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="tex2html2044"
39
+<A NAME="tex2html2050"
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="tex2html2047"
43
+<B> Next:</B> <A NAME="tex2html2053"
44 44
   HREF="node109.html">OpenAntiVirus samba-vscan</A>
45
-<B> Up:</B> <A NAME="tex2html2043"
45
+<B> Up:</B> <A NAME="tex2html2049"
46 46
   HREF="node106.html">Filesystem + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2037"
47
+<B> Previous:</B> <A NAME="tex2html2043"
48 48
   HREF="node107.html">Dazuko</A>
49
- &nbsp <B>  <A NAME="tex2html2045"
49
+ &nbsp <B>  <A NAME="tex2html2051"
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-01-09
68
+2006-04-29
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="tex2html2056"
29
+<A NAME="tex2html2062"
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="tex2html2052"
32
+<A NAME="tex2html2058"
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="tex2html2048"
35
+<A NAME="tex2html2054"
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="tex2html2054"
38
+<A NAME="tex2html2060"
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="tex2html2057"
42
+<B> Next:</B> <A NAME="tex2html2063"
43 43
   HREF="node110.html">Mail User Agent +</A>
44
-<B> Up:</B> <A NAME="tex2html2053"
44
+<B> Up:</B> <A NAME="tex2html2059"
45 45
   HREF="node106.html">Filesystem + ClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html2049"
46
+<B> Previous:</B> <A NAME="tex2html2055"
47 47
   HREF="node108.html">Famuko</A>
48
- &nbsp <B>  <A NAME="tex2html2055"
48
+ &nbsp <B>  <A NAME="tex2html2061"
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-01-09
69
+2006-04-29
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="tex2html701"
30
+<A NAME="tex2html707"
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="tex2html697"
33
+<A NAME="tex2html703"
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="tex2html691"
36
+<A NAME="tex2html697"
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="tex2html699"
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="tex2html702"
43
+<B> Next:</B> <A NAME="tex2html708"
44 44
   HREF="node12.html">Installing on a shell</A>
45
-<B> Up:</B> <A NAME="tex2html698"
45
+<B> Up:</B> <A NAME="tex2html704"
46 46
   HREF="node10.html">Installation</A>
47
-<B> Previous:</B> <A NAME="tex2html692"
47
+<B> Previous:</B> <A NAME="tex2html698"
48 48
   HREF="node10.html">Installation</A>
49
- &nbsp <B>  <A NAME="tex2html700"
49
+ &nbsp <B>  <A NAME="tex2html706"
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-01-09
92
+2006-04-29
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="tex2html2068"
30
+<A NAME="tex2html2074"
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="tex2html2064"
33
+<A NAME="tex2html2070"
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="tex2html2058"
36
+<A NAME="tex2html2064"
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="tex2html2066"
39
+<A NAME="tex2html2072"
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="tex2html2069"
43
+<B> Next:</B> <A NAME="tex2html2075"
44 44
   HREF="node111.html">clamailfilter</A>
45
-<B> Up:</B> <A NAME="tex2html2065"
45
+<B> Up:</B> <A NAME="tex2html2071"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html2059"
47
+<B> Previous:</B> <A NAME="tex2html2065"
48 48
   HREF="node109.html">OpenAntiVirus samba-vscan</A>
49
- &nbsp <B>  <A NAME="tex2html2067"
49
+ &nbsp <B>  <A NAME="tex2html2073"
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="tex2html2070"
65
+<LI><A NAME="tex2html2076"
66 66
   HREF="node111.html">clamailfilter</A>
67
-<LI><A NAME="tex2html2071"
67
+<LI><A NAME="tex2html2077"
68 68
   HREF="node112.html">ClamAssassin</A>
69
-<LI><A NAME="tex2html2072"
69
+<LI><A NAME="tex2html2078"
70 70
   HREF="node113.html">clamscan-procfilter</A>
71
-<LI><A NAME="tex2html2073"
71
+<LI><A NAME="tex2html2079"
72 72
   HREF="node114.html">KMail</A>
73
-<LI><A NAME="tex2html2074"
73
+<LI><A NAME="tex2html2080"
74 74
   HREF="node115.html">MyClamMailFilter</A>
75
-<LI><A NAME="tex2html2075"
75
+<LI><A NAME="tex2html2081"
76 76
   HREF="node116.html">OpenWebMail</A>
77
-<LI><A NAME="tex2html2076"
77
+<LI><A NAME="tex2html2082"
78 78
   HREF="node117.html">QClam</A>
79
-<LI><A NAME="tex2html2077"
79
+<LI><A NAME="tex2html2083"
80 80
   HREF="node118.html">QMVC - Qmail Mail and Virus Control</A>
81
-<LI><A NAME="tex2html2078"
81
+<LI><A NAME="tex2html2084"
82 82
   HREF="node119.html">Sylpheed-Claws</A>
83
-<LI><A NAME="tex2html2079"
83
+<LI><A NAME="tex2html2085"
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-01-09
90
+2006-04-29
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="tex2html2090"
30
+<A NAME="tex2html2096"
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="tex2html2086"
33
+<A NAME="tex2html2092"
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="tex2html2080"
36
+<A NAME="tex2html2086"
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="tex2html2088"
39
+<A NAME="tex2html2094"
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="tex2html2091"
43
+<B> Next:</B> <A NAME="tex2html2097"
44 44
   HREF="node112.html">ClamAssassin</A>
45
-<B> Up:</B> <A NAME="tex2html2087"
45
+<B> Up:</B> <A NAME="tex2html2093"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2081"
47
+<B> Previous:</B> <A NAME="tex2html2087"
48 48
   HREF="node110.html">Mail User Agent +</A>
49
- &nbsp <B>  <A NAME="tex2html2089"
49
+ &nbsp <B>  <A NAME="tex2html2095"
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-01-09
69
+2006-04-29
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="tex2html2102"
30
+<A NAME="tex2html2108"
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="tex2html2098"
33
+<A NAME="tex2html2104"
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="tex2html2092"
36
+<A NAME="tex2html2098"
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="tex2html2100"
39
+<A NAME="tex2html2106"
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="tex2html2103"
43
+<B> Next:</B> <A NAME="tex2html2109"
44 44
   HREF="node113.html">clamscan-procfilter</A>
45
-<B> Up:</B> <A NAME="tex2html2099"
45
+<B> Up:</B> <A NAME="tex2html2105"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2093"
47
+<B> Previous:</B> <A NAME="tex2html2099"
48 48
   HREF="node111.html">clamailfilter</A>
49
- &nbsp <B>  <A NAME="tex2html2101"
49
+ &nbsp <B>  <A NAME="tex2html2107"
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-01-09
70
+2006-04-29
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="tex2html2114"
30
+<A NAME="tex2html2120"
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="tex2html2110"
33
+<A NAME="tex2html2116"
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="tex2html2104"
36
+<A NAME="tex2html2110"
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="tex2html2112"
39
+<A NAME="tex2html2118"
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="tex2html2115"
43
+<B> Next:</B> <A NAME="tex2html2121"
44 44
   HREF="node114.html">KMail</A>
45
-<B> Up:</B> <A NAME="tex2html2111"
45
+<B> Up:</B> <A NAME="tex2html2117"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2105"
47
+<B> Previous:</B> <A NAME="tex2html2111"
48 48
   HREF="node112.html">ClamAssassin</A>
49
- &nbsp <B>  <A NAME="tex2html2113"
49
+ &nbsp <B>  <A NAME="tex2html2119"
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-01-09
70
+2006-04-29
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="tex2html2126"
30
+<A NAME="tex2html2132"
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="tex2html2122"
33
+<A NAME="tex2html2128"
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="tex2html2116"
36
+<A NAME="tex2html2122"
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="tex2html2124"
39
+<A NAME="tex2html2130"
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="tex2html2127"
43
+<B> Next:</B> <A NAME="tex2html2133"
44 44
   HREF="node115.html">MyClamMailFilter</A>
45
-<B> Up:</B> <A NAME="tex2html2123"
45
+<B> Up:</B> <A NAME="tex2html2129"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2117"
47
+<B> Previous:</B> <A NAME="tex2html2123"
48 48
   HREF="node113.html">clamscan-procfilter</A>
49
- &nbsp <B>  <A NAME="tex2html2125"
49
+ &nbsp <B>  <A NAME="tex2html2131"
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-01-09
69
+2006-04-29
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="tex2html2138"
30
+<A NAME="tex2html2144"
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="tex2html2134"
33
+<A NAME="tex2html2140"
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="tex2html2128"
36
+<A NAME="tex2html2134"
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="tex2html2136"
39
+<A NAME="tex2html2142"
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="tex2html2139"
43
+<B> Next:</B> <A NAME="tex2html2145"
44 44
   HREF="node116.html">OpenWebMail</A>
45
-<B> Up:</B> <A NAME="tex2html2135"
45
+<B> Up:</B> <A NAME="tex2html2141"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2129"
47
+<B> Previous:</B> <A NAME="tex2html2135"
48 48
   HREF="node114.html">KMail</A>
49
- &nbsp <B>  <A NAME="tex2html2137"
49
+ &nbsp <B>  <A NAME="tex2html2143"
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-01-09
71
+2006-04-29
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="tex2html2150"
30
+<A NAME="tex2html2156"
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="tex2html2146"
33
+<A NAME="tex2html2152"
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="tex2html2140"
36
+<A NAME="tex2html2146"
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="tex2html2148"
39
+<A NAME="tex2html2154"
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="tex2html2151"
43
+<B> Next:</B> <A NAME="tex2html2157"
44 44
   HREF="node117.html">QClam</A>
45
-<B> Up:</B> <A NAME="tex2html2147"
45
+<B> Up:</B> <A NAME="tex2html2153"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2141"
47
+<B> Previous:</B> <A NAME="tex2html2147"
48 48
   HREF="node115.html">MyClamMailFilter</A>
49
- &nbsp <B>  <A NAME="tex2html2149"
49
+ &nbsp <B>  <A NAME="tex2html2155"
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-01-09
71
+2006-04-29
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="tex2html2162"
30
+<A NAME="tex2html2168"
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="tex2html2158"
33
+<A NAME="tex2html2164"
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="tex2html2152"
36
+<A NAME="tex2html2158"
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="tex2html2160"
39
+<A NAME="tex2html2166"
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="tex2html2163"
43
+<B> Next:</B> <A NAME="tex2html2169"
44 44
   HREF="node118.html">QMVC - Qmail Mail</A>
45
-<B> Up:</B> <A NAME="tex2html2159"
45
+<B> Up:</B> <A NAME="tex2html2165"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2153"
47
+<B> Previous:</B> <A NAME="tex2html2159"
48 48
   HREF="node116.html">OpenWebMail</A>
49
- &nbsp <B>  <A NAME="tex2html2161"
49
+ &nbsp <B>  <A NAME="tex2html2167"
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-01-09
72
+2006-04-29
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="tex2html2174"
30
+<A NAME="tex2html2180"
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="tex2html2170"
33
+<A NAME="tex2html2176"
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="tex2html2164"
36
+<A NAME="tex2html2170"
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="tex2html2172"
39
+<A NAME="tex2html2178"
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="tex2html2175"
43
+<B> Next:</B> <A NAME="tex2html2181"
44 44
   HREF="node119.html">Sylpheed-Claws</A>
45
-<B> Up:</B> <A NAME="tex2html2171"
45
+<B> Up:</B> <A NAME="tex2html2177"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2165"
47
+<B> Previous:</B> <A NAME="tex2html2171"
48 48
   HREF="node117.html">QClam</A>
49
- &nbsp <B>  <A NAME="tex2html2173"
49
+ &nbsp <B>  <A NAME="tex2html2179"
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-01-09
70
+2006-04-29
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="tex2html2186"
30
+<A NAME="tex2html2192"
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="tex2html2182"
33
+<A NAME="tex2html2188"
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="tex2html2176"
36
+<A NAME="tex2html2182"
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="tex2html2184"
39
+<A NAME="tex2html2190"
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="tex2html2187"
43
+<B> Next:</B> <A NAME="tex2html2193"
44 44
   HREF="node120.html">SoftlabsAV</A>
45
-<B> Up:</B> <A NAME="tex2html2183"
45
+<B> Up:</B> <A NAME="tex2html2189"
46 46
   HREF="node110.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2177"
47
+<B> Previous:</B> <A NAME="tex2html2183"
48 48
   HREF="node118.html">QMVC - Qmail Mail</A>
49
- &nbsp <B>  <A NAME="tex2html2185"
49
+ &nbsp <B>  <A NAME="tex2html2191"
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-01-09
71
+2006-04-29
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="tex2html713"
30
+<A NAME="tex2html719"
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="tex2html709"
33
+<A NAME="tex2html715"
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="tex2html703"
36
+<A NAME="tex2html709"
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="tex2html711"
39
+<A NAME="tex2html717"
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="tex2html714"
43
+<B> Next:</B> <A NAME="tex2html720"
44 44
   HREF="node13.html">Adding new system user</A>
45
-<B> Up:</B> <A NAME="tex2html710"
45
+<B> Up:</B> <A NAME="tex2html716"
46 46
   HREF="node10.html">Installation</A>
47
-<B> Previous:</B> <A NAME="tex2html704"
47
+<B> Previous:</B> <A NAME="tex2html710"
48 48
   HREF="node11.html">Requirements</A>
49
- &nbsp <B>  <A NAME="tex2html712"
49
+ &nbsp <B>  <A NAME="tex2html718"
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-01-09
78
+2006-04-29
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="tex2html2196"
29
+<A NAME="tex2html2202"
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="tex2html2192"
32
+<A NAME="tex2html2198"
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="tex2html2188"
35
+<A NAME="tex2html2194"
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="tex2html2194"
38
+<A NAME="tex2html2200"
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="tex2html2197"
42
+<B> Next:</B> <A NAME="tex2html2203"
43 43
   HREF="node121.html">Graphical User Interface +</A>
44
-<B> Up:</B> <A NAME="tex2html2193"
44
+<B> Up:</B> <A NAME="tex2html2199"
45 45
   HREF="node110.html">Mail User Agent +</A>
46
-<B> Previous:</B> <A NAME="tex2html2189"
46
+<B> Previous:</B> <A NAME="tex2html2195"
47 47
   HREF="node119.html">Sylpheed-Claws</A>
48
- &nbsp <B>  <A NAME="tex2html2195"
48
+ &nbsp <B>  <A NAME="tex2html2201"
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-01-09
69
+2006-04-29
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="tex2html2208"
30
+<A NAME="tex2html2214"
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="tex2html2204"
33
+<A NAME="tex2html2210"
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="tex2html2198"
36
+<A NAME="tex2html2204"
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="tex2html2206"
39
+<A NAME="tex2html2212"
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="tex2html2209"
43
+<B> Next:</B> <A NAME="tex2html2215"
44 44
   HREF="node122.html">AVScan</A>
45
-<B> Up:</B> <A NAME="tex2html2205"
45
+<B> Up:</B> <A NAME="tex2html2211"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html2199"
47
+<B> Previous:</B> <A NAME="tex2html2205"
48 48
   HREF="node120.html">SoftlabsAV</A>
49
- &nbsp <B>  <A NAME="tex2html2207"
49
+ &nbsp <B>  <A NAME="tex2html2213"
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="tex2html2210"
65
+<LI><A NAME="tex2html2216"
66 66
   HREF="node122.html">AVScan</A>
67
-<LI><A NAME="tex2html2211"
67
+<LI><A NAME="tex2html2217"
68 68
   HREF="node123.html">BeClam</A>
69
-<LI><A NAME="tex2html2212"
69
+<LI><A NAME="tex2html2218"
70 70
   HREF="node124.html">Clamaktion</A>
71
-<LI><A NAME="tex2html2213"
71
+<LI><A NAME="tex2html2219"
72 72
   HREF="node125.html">ClamShell</A>
73
-<LI><A NAME="tex2html2214"
73
+<LI><A NAME="tex2html2220"
74 74
   HREF="node126.html">ClamTk</A>
75
-<LI><A NAME="tex2html2215"
75
+<LI><A NAME="tex2html2221"
76 76
   HREF="node127.html">clamXav</A>
77
-<LI><A NAME="tex2html2216"
77
+<LI><A NAME="tex2html2222"
78 78
   HREF="node128.html">ClamWin</A>
79
-<LI><A NAME="tex2html2217"
79
+<LI><A NAME="tex2html2223"
80 80
   HREF="node129.html">FETCAV</A>
81
-<LI><A NAME="tex2html2218"
81
+<LI><A NAME="tex2html2224"
82 82
   HREF="node130.html">KlamAV</A>
83
-<LI><A NAME="tex2html2219"
83
+<LI><A NAME="tex2html2225"
84 84
   HREF="node131.html">QtClamAVclient</A>
85
-<LI><A NAME="tex2html2220"
85
+<LI><A NAME="tex2html2226"
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-01-09
92
+2006-04-29
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="tex2html2231"
30
+<A NAME="tex2html2237"
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="tex2html2227"
33
+<A NAME="tex2html2233"
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="tex2html2221"
36
+<A NAME="tex2html2227"
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="tex2html2229"
39
+<A NAME="tex2html2235"
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="tex2html2232"
43
+<B> Next:</B> <A NAME="tex2html2238"
44 44
   HREF="node123.html">BeClam</A>
45
-<B> Up:</B> <A NAME="tex2html2228"
45
+<B> Up:</B> <A NAME="tex2html2234"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2222"
47
+<B> Previous:</B> <A NAME="tex2html2228"
48 48
   HREF="node121.html">Graphical User Interface +</A>
49
- &nbsp <B>  <A NAME="tex2html2230"
49
+ &nbsp <B>  <A NAME="tex2html2236"
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-01-09
71
+2006-04-29
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="tex2html2243"
30
+<A NAME="tex2html2249"
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="tex2html2239"
33
+<A NAME="tex2html2245"
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="tex2html2233"
36
+<A NAME="tex2html2239"
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="tex2html2241"
39
+<A NAME="tex2html2247"
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="tex2html2244"
43
+<B> Next:</B> <A NAME="tex2html2250"
44 44
   HREF="node124.html">Clamaktion</A>
45
-<B> Up:</B> <A NAME="tex2html2240"
45
+<B> Up:</B> <A NAME="tex2html2246"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2234"
47
+<B> Previous:</B> <A NAME="tex2html2240"
48 48
   HREF="node122.html">AVScan</A>
49
- &nbsp <B>  <A NAME="tex2html2242"
49
+ &nbsp <B>  <A NAME="tex2html2248"
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-01-09
68
+2006-04-29
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="tex2html2255"
30
+<A NAME="tex2html2261"
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="tex2html2251"
33
+<A NAME="tex2html2257"
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="tex2html2245"
36
+<A NAME="tex2html2251"
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="tex2html2253"
39
+<A NAME="tex2html2259"
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="tex2html2256"
43
+<B> Next:</B> <A NAME="tex2html2262"
44 44
   HREF="node125.html">ClamShell</A>
45
-<B> Up:</B> <A NAME="tex2html2252"
45
+<B> Up:</B> <A NAME="tex2html2258"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2246"
47
+<B> Previous:</B> <A NAME="tex2html2252"
48 48
   HREF="node123.html">BeClam</A>
49
- &nbsp <B>  <A NAME="tex2html2254"
49
+ &nbsp <B>  <A NAME="tex2html2260"
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-01-09
69
+2006-04-29
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="tex2html2267"
30
+<A NAME="tex2html2273"
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="tex2html2263"
33
+<A NAME="tex2html2269"
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="tex2html2257"
36
+<A NAME="tex2html2263"
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="tex2html2265"
39
+<A NAME="tex2html2271"
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="tex2html2268"
43
+<B> Next:</B> <A NAME="tex2html2274"
44 44
   HREF="node126.html">ClamTk</A>
45
-<B> Up:</B> <A NAME="tex2html2264"
45
+<B> Up:</B> <A NAME="tex2html2270"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2258"
47
+<B> Previous:</B> <A NAME="tex2html2264"
48 48
   HREF="node124.html">Clamaktion</A>
49
- &nbsp <B>  <A NAME="tex2html2266"
49
+ &nbsp <B>  <A NAME="tex2html2272"
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-01-09
69
+2006-04-29
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="tex2html2279"
30
+<A NAME="tex2html2285"
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="tex2html2275"
33
+<A NAME="tex2html2281"
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="tex2html2269"
36
+<A NAME="tex2html2275"
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="tex2html2277"
39
+<A NAME="tex2html2283"
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="tex2html2280"
43
+<B> Next:</B> <A NAME="tex2html2286"
44 44
   HREF="node127.html">clamXav</A>
45
-<B> Up:</B> <A NAME="tex2html2276"
45
+<B> Up:</B> <A NAME="tex2html2282"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2270"
47
+<B> Previous:</B> <A NAME="tex2html2276"
48 48
   HREF="node125.html">ClamShell</A>
49
- &nbsp <B>  <A NAME="tex2html2278"
49
+ &nbsp <B>  <A NAME="tex2html2284"
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-01-09
68
+2006-04-29
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="tex2html2291"
30
+<A NAME="tex2html2297"
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="tex2html2287"
33
+<A NAME="tex2html2293"
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="tex2html2281"
36
+<A NAME="tex2html2287"
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="tex2html2289"
39
+<A NAME="tex2html2295"
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="tex2html2292"
43
+<B> Next:</B> <A NAME="tex2html2298"
44 44
   HREF="node128.html">ClamWin</A>
45
-<B> Up:</B> <A NAME="tex2html2288"
45
+<B> Up:</B> <A NAME="tex2html2294"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2282"
47
+<B> Previous:</B> <A NAME="tex2html2288"
48 48
   HREF="node126.html">ClamTk</A>
49
- &nbsp <B>  <A NAME="tex2html2290"
49
+ &nbsp <B>  <A NAME="tex2html2296"
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-01-09
69
+2006-04-29
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="tex2html2303"
30
+<A NAME="tex2html2309"
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="tex2html2299"
33
+<A NAME="tex2html2305"
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="tex2html2293"
36
+<A NAME="tex2html2299"
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="tex2html2301"
39
+<A NAME="tex2html2307"
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="tex2html2304"
43
+<B> Next:</B> <A NAME="tex2html2310"
44 44
   HREF="node129.html">FETCAV</A>
45
-<B> Up:</B> <A NAME="tex2html2300"
45
+<B> Up:</B> <A NAME="tex2html2306"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2294"
47
+<B> Previous:</B> <A NAME="tex2html2300"
48 48
   HREF="node127.html">clamXav</A>
49
- &nbsp <B>  <A NAME="tex2html2302"
49
+ &nbsp <B>  <A NAME="tex2html2308"
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-01-09
75
+2006-04-29
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="tex2html2315"
30
+<A NAME="tex2html2321"
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="tex2html2311"
33
+<A NAME="tex2html2317"
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="tex2html2305"
36
+<A NAME="tex2html2311"
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="tex2html2313"
39
+<A NAME="tex2html2319"
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="tex2html2316"
43
+<B> Next:</B> <A NAME="tex2html2322"
44 44
   HREF="node130.html">KlamAV</A>
45
-<B> Up:</B> <A NAME="tex2html2312"
45
+<B> Up:</B> <A NAME="tex2html2318"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2306"
47
+<B> Previous:</B> <A NAME="tex2html2312"
48 48
   HREF="node128.html">ClamWin</A>
49
- &nbsp <B>  <A NAME="tex2html2314"
49
+ &nbsp <B>  <A NAME="tex2html2320"
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-01-09
69
+2006-04-29
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="tex2html725"
30
+<A NAME="tex2html731"
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="tex2html721"
33
+<A NAME="tex2html727"
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="tex2html715"
36
+<A NAME="tex2html721"
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="tex2html723"
39
+<A NAME="tex2html729"
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="tex2html726"
43
+<B> Next:</B> <A NAME="tex2html732"
44 44
   HREF="node14.html">Compilation of base package</A>
45
-<B> Up:</B> <A NAME="tex2html722"
45
+<B> Up:</B> <A NAME="tex2html728"
46 46
   HREF="node10.html">Installation</A>
47
-<B> Previous:</B> <A NAME="tex2html716"
47
+<B> Previous:</B> <A NAME="tex2html722"
48 48
   HREF="node12.html">Installing on a shell</A>
49
- &nbsp <B>  <A NAME="tex2html724"
49
+ &nbsp <B>  <A NAME="tex2html730"
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-01-09
72
+2006-04-29
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="tex2html2327"
30
+<A NAME="tex2html2333"
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="tex2html2323"
33
+<A NAME="tex2html2329"
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="tex2html2317"
36
+<A NAME="tex2html2323"
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="tex2html2325"
39
+<A NAME="tex2html2331"
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="tex2html2328"
43
+<B> Next:</B> <A NAME="tex2html2334"
44 44
   HREF="node131.html">QtClamAVclient</A>
45
-<B> Up:</B> <A NAME="tex2html2324"
45
+<B> Up:</B> <A NAME="tex2html2330"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2318"
47
+<B> Previous:</B> <A NAME="tex2html2324"
48 48
   HREF="node129.html">FETCAV</A>
49
- &nbsp <B>  <A NAME="tex2html2326"
49
+ &nbsp <B>  <A NAME="tex2html2332"
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-01-09
71
+2006-04-29
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="tex2html2339"
30
+<A NAME="tex2html2345"
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="tex2html2335"
33
+<A NAME="tex2html2341"
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="tex2html2329"
36
+<A NAME="tex2html2335"
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="tex2html2337"
39
+<A NAME="tex2html2343"
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="tex2html2340"
43
+<B> Next:</B> <A NAME="tex2html2346"
44 44
   HREF="node132.html">wbmclamav</A>
45
-<B> Up:</B> <A NAME="tex2html2336"
45
+<B> Up:</B> <A NAME="tex2html2342"
46 46
   HREF="node121.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2330"
47
+<B> Previous:</B> <A NAME="tex2html2336"
48 48
   HREF="node130.html">KlamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2338"
49
+ &nbsp <B>  <A NAME="tex2html2344"
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-01-09
70
+2006-04-29
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="tex2html2349"
29
+<A NAME="tex2html2355"
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="tex2html2345"
32
+<A NAME="tex2html2351"
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="tex2html2341"
35
+<A NAME="tex2html2347"
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="tex2html2347"
38
+<A NAME="tex2html2353"
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="tex2html2350"
42
+<B> Next:</B> <A NAME="tex2html2356"
43 43
   HREF="node133.html">Library + ClamAV</A>
44
-<B> Up:</B> <A NAME="tex2html2346"
44
+<B> Up:</B> <A NAME="tex2html2352"
45 45
   HREF="node121.html">Graphical User Interface +</A>
46
-<B> Previous:</B> <A NAME="tex2html2342"
46
+<B> Previous:</B> <A NAME="tex2html2348"
47 47
   HREF="node131.html">QtClamAVclient</A>
48
- &nbsp <B>  <A NAME="tex2html2348"
48
+ &nbsp <B>  <A NAME="tex2html2354"
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-01-09
68
+2006-04-29
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="tex2html2361"
30
+<A NAME="tex2html2367"
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="tex2html2357"
33
+<A NAME="tex2html2363"
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="tex2html2351"
36
+<A NAME="tex2html2357"
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="tex2html2359"
39
+<A NAME="tex2html2365"
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="tex2html2362"
43
+<B> Next:</B> <A NAME="tex2html2368"
44 44
   HREF="node134.html">ClamAV-Sharp</A>
45
-<B> Up:</B> <A NAME="tex2html2358"
45
+<B> Up:</B> <A NAME="tex2html2364"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html2352"
47
+<B> Previous:</B> <A NAME="tex2html2358"
48 48
   HREF="node132.html">wbmclamav</A>
49
- &nbsp <B>  <A NAME="tex2html2360"
49
+ &nbsp <B>  <A NAME="tex2html2366"
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="tex2html2363"
65
+<LI><A NAME="tex2html2369"
66 66
   HREF="node134.html">ClamAV-Sharp</A>
67
-<LI><A NAME="tex2html2364"
67
+<LI><A NAME="tex2html2370"
68 68
   HREF="node135.html">ClamAVPlugin</A>
69
-<LI><A NAME="tex2html2365"
69
+<LI><A NAME="tex2html2371"
70 70
   HREF="node136.html">clamavr</A>
71
-<LI><A NAME="tex2html2366"
71
+<LI><A NAME="tex2html2372"
72 72
   HREF="node137.html">D bindings for ClamAV</A>
73
-<LI><A NAME="tex2html2367"
73
+<LI><A NAME="tex2html2373"
74 74
   HREF="node138.html">File::Scan::ClamAV</A>
75
-<LI><A NAME="tex2html2368"
75
+<LI><A NAME="tex2html2374"
76 76
   HREF="node139.html">Mail::ClamAV</A>
77
-<LI><A NAME="tex2html2369"
77
+<LI><A NAME="tex2html2375"
78 78
   HREF="node140.html">PHP ClamAV Lib</A>
79
-<LI><A NAME="tex2html2370"
79
+<LI><A NAME="tex2html2376"
80 80
   HREF="node141.html">pyclamav</A>
81
-<LI><A NAME="tex2html2371"
81
+<LI><A NAME="tex2html2377"
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-01-09
88
+2006-04-29
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="tex2html2382"
30
+<A NAME="tex2html2388"
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="tex2html2378"
33
+<A NAME="tex2html2384"
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="tex2html2372"
36
+<A NAME="tex2html2378"
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="tex2html2380"
39
+<A NAME="tex2html2386"
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="tex2html2383"
43
+<B> Next:</B> <A NAME="tex2html2389"
44 44
   HREF="node135.html">ClamAVPlugin</A>
45
-<B> Up:</B> <A NAME="tex2html2379"
45
+<B> Up:</B> <A NAME="tex2html2385"
46 46
   HREF="node133.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2373"
47
+<B> Previous:</B> <A NAME="tex2html2379"
48 48
   HREF="node133.html">Library + ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2381"
49
+ &nbsp <B>  <A NAME="tex2html2387"
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-01-09
68
+2006-04-29
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="tex2html2394"
30
+<A NAME="tex2html2400"
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="tex2html2390"
33
+<A NAME="tex2html2396"
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="tex2html2384"
36
+<A NAME="tex2html2390"
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="tex2html2392"
39
+<A NAME="tex2html2398"
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="tex2html2395"
43
+<B> Next:</B> <A NAME="tex2html2401"
44 44
   HREF="node136.html">clamavr</A>
45
-<B> Up:</B> <A NAME="tex2html2391"
45
+<B> Up:</B> <A NAME="tex2html2397"
46 46
   HREF="node133.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2385"
47
+<B> Previous:</B> <A NAME="tex2html2391"
48 48
   HREF="node134.html">ClamAV-Sharp</A>
49
- &nbsp <B>  <A NAME="tex2html2393"
49
+ &nbsp <B>  <A NAME="tex2html2399"
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-01-09
68
+2006-04-29
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="tex2html2406"
30
+<A NAME="tex2html2412"
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="tex2html2402"
33
+<A NAME="tex2html2408"
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="tex2html2396"
36
+<A NAME="tex2html2402"
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="tex2html2404"
39
+<A NAME="tex2html2410"
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="tex2html2407"
43
+<B> Next:</B> <A NAME="tex2html2413"
44 44
   HREF="node137.html">D bindings for ClamAV</A>
45
-<B> Up:</B> <A NAME="tex2html2403"
45
+<B> Up:</B> <A NAME="tex2html2409"
46 46
   HREF="node133.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2397"
47
+<B> Previous:</B> <A NAME="tex2html2403"
48 48
   HREF="node135.html">ClamAVPlugin</A>
49
- &nbsp <B>  <A NAME="tex2html2405"
49
+ &nbsp <B>  <A NAME="tex2html2411"
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-01-09
68
+2006-04-29
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="tex2html2418"
30
+<A NAME="tex2html2424"
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="tex2html2414"
33
+<A NAME="tex2html2420"
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="tex2html2408"
36
+<A NAME="tex2html2414"
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="tex2html2416"
39
+<A NAME="tex2html2422"
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="tex2html2419"
43
+<B> Next:</B> <A NAME="tex2html2425"
44 44
   HREF="node138.html">File::Scan::ClamAV</A>
45
-<B> Up:</B> <A NAME="tex2html2415"
45
+<B> Up:</B> <A NAME="tex2html2421"
46 46
   HREF="node133.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2409"
47
+<B> Previous:</B> <A NAME="tex2html2415"
48 48
   HREF="node136.html">clamavr</A>
49
- &nbsp <B>  <A NAME="tex2html2417"
49
+ &nbsp <B>  <A NAME="tex2html2423"
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-01-09
70
+2006-04-29
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="tex2html2430"
30
+<A NAME="tex2html2436"
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="tex2html2426"
33
+<A NAME="tex2html2432"
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="tex2html2420"
36
+<A NAME="tex2html2426"
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="tex2html2428"
39
+<A NAME="tex2html2434"
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="tex2html2431"
43
+<B> Next:</B> <A NAME="tex2html2437"
44 44
   HREF="node139.html">Mail::ClamAV</A>
45
-<B> Up:</B> <A NAME="tex2html2427"
45
+<B> Up:</B> <A NAME="tex2html2433"
46 46
   HREF="node133.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2421"
47
+<B> Previous:</B> <A NAME="tex2html2427"
48 48
   HREF="node137.html">D bindings for ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2429"
49
+ &nbsp <B>  <A NAME="tex2html2435"
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-01-09
68
+2006-04-29
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="tex2html2442"
30
+<A NAME="tex2html2448"
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="tex2html2438"
33
+<A NAME="tex2html2444"
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="tex2html2432"
36
+<A NAME="tex2html2438"
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="tex2html2440"
39
+<A NAME="tex2html2446"
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="tex2html2443"
43
+<B> Next:</B> <A NAME="tex2html2449"
44 44
   HREF="node140.html">PHP ClamAV Lib</A>
45
-<B> Up:</B> <A NAME="tex2html2439"
45
+<B> Up:</B> <A NAME="tex2html2445"
46 46
   HREF="node133.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2433"
47
+<B> Previous:</B> <A NAME="tex2html2439"
48 48
   HREF="node138.html">File::Scan::ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2441"
49
+ &nbsp <B>  <A NAME="tex2html2447"
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-01-09
68
+2006-04-29
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="tex2html737"
30
+<A NAME="tex2html743"
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="tex2html733"
33
+<A NAME="tex2html739"
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="tex2html727"
36
+<A NAME="tex2html733"
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="tex2html735"
39
+<A NAME="tex2html741"
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="tex2html738"
43
+<B> Next:</B> <A NAME="tex2html744"
44 44
   HREF="node15.html">Compilation with clamav-milter enabled</A>
45
-<B> Up:</B> <A NAME="tex2html734"
45
+<B> Up:</B> <A NAME="tex2html740"
46 46
   HREF="node10.html">Installation</A>
47
-<B> Previous:</B> <A NAME="tex2html728"
47
+<B> Previous:</B> <A NAME="tex2html734"
48 48
   HREF="node13.html">Adding new system user</A>
49
- &nbsp <B>  <A NAME="tex2html736"
49
+ &nbsp <B>  <A NAME="tex2html742"
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-01-09
81
+2006-04-29
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="tex2html2454"
30
+<A NAME="tex2html2460"
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="tex2html2450"
33
+<A NAME="tex2html2456"
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="tex2html2444"
36
+<A NAME="tex2html2450"
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="tex2html2452"
39
+<A NAME="tex2html2458"
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="tex2html2455"
43
+<B> Next:</B> <A NAME="tex2html2461"
44 44
   HREF="node141.html">pyclamav</A>
45
-<B> Up:</B> <A NAME="tex2html2451"
45
+<B> Up:</B> <A NAME="tex2html2457"
46 46
   HREF="node133.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2445"
47
+<B> Previous:</B> <A NAME="tex2html2451"
48 48
   HREF="node139.html">Mail::ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2453"
49
+ &nbsp <B>  <A NAME="tex2html2459"
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-01-09
69
+2006-04-29
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="tex2html2466"
30
+<A NAME="tex2html2472"
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="tex2html2462"
33
+<A NAME="tex2html2468"
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="tex2html2456"
36
+<A NAME="tex2html2462"
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="tex2html2464"
39
+<A NAME="tex2html2470"
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="tex2html2467"
43
+<B> Next:</B> <A NAME="tex2html2473"
44 44
   HREF="node142.html">WRAVLib</A>
45
-<B> Up:</B> <A NAME="tex2html2463"
45
+<B> Up:</B> <A NAME="tex2html2469"
46 46
   HREF="node133.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2457"
47
+<B> Previous:</B> <A NAME="tex2html2463"
48 48
   HREF="node140.html">PHP ClamAV Lib</A>
49
- &nbsp <B>  <A NAME="tex2html2465"
49
+ &nbsp <B>  <A NAME="tex2html2471"
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-01-09
68
+2006-04-29
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="tex2html2476"
29
+<A NAME="tex2html2482"
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="tex2html2472"
32
+<A NAME="tex2html2478"
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="tex2html2468"
35
+<A NAME="tex2html2474"
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="tex2html2474"
38
+<A NAME="tex2html2480"
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="tex2html2477"
42
+<B> Next:</B> <A NAME="tex2html2483"
43 43
   HREF="node143.html">Miscellaneous + ClamAV</A>
44
-<B> Up:</B> <A NAME="tex2html2473"
44
+<B> Up:</B> <A NAME="tex2html2479"
45 45
   HREF="node133.html">Library + ClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html2469"
46
+<B> Previous:</B> <A NAME="tex2html2475"
47 47
   HREF="node141.html">pyclamav</A>
48
- &nbsp <B>  <A NAME="tex2html2475"
48
+ &nbsp <B>  <A NAME="tex2html2481"
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-01-09
69
+2006-04-29
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="tex2html2486"
29
+<A NAME="tex2html2492"
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="tex2html2482"
32
+<A NAME="tex2html2488"
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="tex2html2478"
35
+<A NAME="tex2html2484"
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="tex2html2484"
38
+<A NAME="tex2html2490"
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="tex2html2487"
42
+<B> Next:</B> <A NAME="tex2html2493"
43 43
   HREF="node144.html">INSERT</A>
44
-<B> Up:</B> <A NAME="tex2html2483"
44
+<B> Up:</B> <A NAME="tex2html2489"
45 45
   HREF="node47.html">Third party software</A>
46
-<B> Previous:</B> <A NAME="tex2html2479"
46
+<B> Previous:</B> <A NAME="tex2html2485"
47 47
   HREF="node142.html">WRAVLib</A>
48
- &nbsp <B>  <A NAME="tex2html2485"
48
+ &nbsp <B>  <A NAME="tex2html2491"
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="tex2html2488"
64
+<LI><A NAME="tex2html2494"
65 65
   HREF="node144.html">INSERT</A>
66
-<LI><A NAME="tex2html2489"
66
+<LI><A NAME="tex2html2495"
67 67
   HREF="node145.html">Local Area Security</A>
68
-<LI><A NAME="tex2html2490"
68
+<LI><A NAME="tex2html2496"
69 69
   HREF="node146.html">mailgraph</A>
70
-<LI><A NAME="tex2html2491"
70
+<LI><A NAME="tex2html2497"
71 71
   HREF="node147.html">mailman-clamav</A>
72
-<LI><A NAME="tex2html2492"
72
+<LI><A NAME="tex2html2498"
73 73
   HREF="node148.html">Moodle</A>
74
-<LI><A NAME="tex2html2493"
74
+<LI><A NAME="tex2html2499"
75 75
   HREF="node149.html">nclamd</A>
76
-<LI><A NAME="tex2html2494"
76
+<LI><A NAME="tex2html2500"
77 77
   HREF="node150.html">qmailmrtg7</A>
78
-<LI><A NAME="tex2html2495"
78
+<LI><A NAME="tex2html2501"
79 79
   HREF="node151.html">redWall Firewall</A>
80
-<LI><A NAME="tex2html2496"
80
+<LI><A NAME="tex2html2502"
81 81
   HREF="node152.html">Scan Log Analyzer</A>
82
-<LI><A NAME="tex2html2497"
82
+<LI><A NAME="tex2html2503"
83 83
   HREF="node153.html">snort-inline</A>
84
-<LI><A NAME="tex2html2498"
84
+<LI><A NAME="tex2html2504"
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-01-09
91
+2006-04-29
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="tex2html2509"
30
+<A NAME="tex2html2515"
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="tex2html2505"
33
+<A NAME="tex2html2511"
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="tex2html2499"
36
+<A NAME="tex2html2505"
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="tex2html2507"
39
+<A NAME="tex2html2513"
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="tex2html2510"
43
+<B> Next:</B> <A NAME="tex2html2516"
44 44
   HREF="node145.html">Local Area Security</A>
45
-<B> Up:</B> <A NAME="tex2html2506"
45
+<B> Up:</B> <A NAME="tex2html2512"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2500"
47
+<B> Previous:</B> <A NAME="tex2html2506"
48 48
   HREF="node143.html">Miscellaneous + ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2508"
49
+ &nbsp <B>  <A NAME="tex2html2514"
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-01-09
74
+2006-04-29
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="tex2html2521"
30
+<A NAME="tex2html2527"
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="tex2html2517"
33
+<A NAME="tex2html2523"
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="tex2html2511"
36
+<A NAME="tex2html2517"
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="tex2html2519"
39
+<A NAME="tex2html2525"
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="tex2html2522"
43
+<B> Next:</B> <A NAME="tex2html2528"
44 44
   HREF="node146.html">mailgraph</A>
45
-<B> Up:</B> <A NAME="tex2html2518"
45
+<B> Up:</B> <A NAME="tex2html2524"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2512"
47
+<B> Previous:</B> <A NAME="tex2html2518"
48 48
   HREF="node144.html">INSERT</A>
49
- &nbsp <B>  <A NAME="tex2html2520"
49
+ &nbsp <B>  <A NAME="tex2html2526"
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-01-09
70
+2006-04-29
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="tex2html2533"
30
+<A NAME="tex2html2539"
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="tex2html2529"
33
+<A NAME="tex2html2535"
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="tex2html2523"
36
+<A NAME="tex2html2529"
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="tex2html2531"
39
+<A NAME="tex2html2537"
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="tex2html2534"
43
+<B> Next:</B> <A NAME="tex2html2540"
44 44
   HREF="node147.html">mailman-clamav</A>
45
-<B> Up:</B> <A NAME="tex2html2530"
45
+<B> Up:</B> <A NAME="tex2html2536"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2524"
47
+<B> Previous:</B> <A NAME="tex2html2530"
48 48
   HREF="node145.html">Local Area Security</A>
49
- &nbsp <B>  <A NAME="tex2html2532"
49
+ &nbsp <B>  <A NAME="tex2html2538"
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-01-09
70
+2006-04-29
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="tex2html2545"
30
+<A NAME="tex2html2551"
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="tex2html2541"
33
+<A NAME="tex2html2547"
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="tex2html2535"
36
+<A NAME="tex2html2541"
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="tex2html2543"
39
+<A NAME="tex2html2549"
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="tex2html2546"
43
+<B> Next:</B> <A NAME="tex2html2552"
44 44
   HREF="node148.html">Moodle</A>
45
-<B> Up:</B> <A NAME="tex2html2542"
45
+<B> Up:</B> <A NAME="tex2html2548"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2536"
47
+<B> Previous:</B> <A NAME="tex2html2542"
48 48
   HREF="node146.html">mailgraph</A>
49
- &nbsp <B>  <A NAME="tex2html2544"
49
+ &nbsp <B>  <A NAME="tex2html2550"
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-01-09
72
+2006-04-29
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="tex2html2557"
30
+<A NAME="tex2html2563"
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="tex2html2553"
33
+<A NAME="tex2html2559"
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="tex2html2547"
36
+<A NAME="tex2html2553"
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="tex2html2555"
39
+<A NAME="tex2html2561"
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="tex2html2558"
43
+<B> Next:</B> <A NAME="tex2html2564"
44 44
   HREF="node149.html">nclamd</A>
45
-<B> Up:</B> <A NAME="tex2html2554"
45
+<B> Up:</B> <A NAME="tex2html2560"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2548"
47
+<B> Previous:</B> <A NAME="tex2html2554"
48 48
   HREF="node147.html">mailman-clamav</A>
49
- &nbsp <B>  <A NAME="tex2html2556"
49
+ &nbsp <B>  <A NAME="tex2html2562"
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-01-09
70
+2006-04-29
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="tex2html2569"
30
+<A NAME="tex2html2575"
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="tex2html2565"
33
+<A NAME="tex2html2571"
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="tex2html2559"
36
+<A NAME="tex2html2565"
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="tex2html2567"
39
+<A NAME="tex2html2573"
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="tex2html2570"
43
+<B> Next:</B> <A NAME="tex2html2576"
44 44
   HREF="node150.html">qmailmrtg7</A>
45
-<B> Up:</B> <A NAME="tex2html2566"
45
+<B> Up:</B> <A NAME="tex2html2572"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2560"
47
+<B> Previous:</B> <A NAME="tex2html2566"
48 48
   HREF="node148.html">Moodle</A>
49
- &nbsp <B>  <A NAME="tex2html2568"
49
+ &nbsp <B>  <A NAME="tex2html2574"
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-01-09
70
+2006-04-29
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="tex2html747"
29
+<A NAME="tex2html753"
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="tex2html743"
32
+<A NAME="tex2html749"
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="tex2html739"
35
+<A NAME="tex2html745"
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="tex2html745"
38
+<A NAME="tex2html751"
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="tex2html748"
42
+<B> Next:</B> <A NAME="tex2html754"
43 43
   HREF="node16.html">Configuration</A>
44
-<B> Up:</B> <A NAME="tex2html744"
44
+<B> Up:</B> <A NAME="tex2html750"
45 45
   HREF="node10.html">Installation</A>
46
-<B> Previous:</B> <A NAME="tex2html740"
46
+<B> Previous:</B> <A NAME="tex2html746"
47 47
   HREF="node14.html">Compilation of base package</A>
48
- &nbsp <B>  <A NAME="tex2html746"
48
+ &nbsp <B>  <A NAME="tex2html752"
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-01-09
67
+2006-04-29
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="tex2html2581"
30
+<A NAME="tex2html2587"
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="tex2html2577"
33
+<A NAME="tex2html2583"
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="tex2html2571"
36
+<A NAME="tex2html2577"
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="tex2html2579"
39
+<A NAME="tex2html2585"
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="tex2html2582"
43
+<B> Next:</B> <A NAME="tex2html2588"
44 44
   HREF="node151.html">redWall Firewall</A>
45
-<B> Up:</B> <A NAME="tex2html2578"
45
+<B> Up:</B> <A NAME="tex2html2584"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2572"
47
+<B> Previous:</B> <A NAME="tex2html2578"
48 48
   HREF="node149.html">nclamd</A>
49
- &nbsp <B>  <A NAME="tex2html2580"
49
+ &nbsp <B>  <A NAME="tex2html2586"
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-01-09
70
+2006-04-29
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="tex2html2593"
30
+<A NAME="tex2html2599"
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="tex2html2589"
33
+<A NAME="tex2html2595"
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="tex2html2583"
36
+<A NAME="tex2html2589"
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="tex2html2591"
39
+<A NAME="tex2html2597"
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="tex2html2594"
43
+<B> Next:</B> <A NAME="tex2html2600"
44 44
   HREF="node152.html">Scan Log Analyzer</A>
45
-<B> Up:</B> <A NAME="tex2html2590"
45
+<B> Up:</B> <A NAME="tex2html2596"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2584"
47
+<B> Previous:</B> <A NAME="tex2html2590"
48 48
   HREF="node150.html">qmailmrtg7</A>
49
- &nbsp <B>  <A NAME="tex2html2592"
49
+ &nbsp <B>  <A NAME="tex2html2598"
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-01-09
70
+2006-04-29
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="tex2html2605"
30
+<A NAME="tex2html2611"
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="tex2html2601"
33
+<A NAME="tex2html2607"
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="tex2html2595"
36
+<A NAME="tex2html2601"
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="tex2html2603"
39
+<A NAME="tex2html2609"
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="tex2html2606"
43
+<B> Next:</B> <A NAME="tex2html2612"
44 44
   HREF="node153.html">snort-inline</A>
45
-<B> Up:</B> <A NAME="tex2html2602"
45
+<B> Up:</B> <A NAME="tex2html2608"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2596"
47
+<B> Previous:</B> <A NAME="tex2html2602"
48 48
   HREF="node151.html">redWall Firewall</A>
49
- &nbsp <B>  <A NAME="tex2html2604"
49
+ &nbsp <B>  <A NAME="tex2html2610"
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-01-09
69
+2006-04-29
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="tex2html2617"
30
+<A NAME="tex2html2623"
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="tex2html2613"
33
+<A NAME="tex2html2619"
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="tex2html2607"
36
+<A NAME="tex2html2613"
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="tex2html2615"
39
+<A NAME="tex2html2621"
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="tex2html2618"
43
+<B> Next:</B> <A NAME="tex2html2624"
44 44
   HREF="node154.html">Snort-ClamAV</A>
45
-<B> Up:</B> <A NAME="tex2html2614"
45
+<B> Up:</B> <A NAME="tex2html2620"
46 46
   HREF="node143.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2608"
47
+<B> Previous:</B> <A NAME="tex2html2614"
48 48
   HREF="node152.html">Scan Log Analyzer</A>
49
- &nbsp <B>  <A NAME="tex2html2616"
49
+ &nbsp <B>  <A NAME="tex2html2622"
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-01-09
71
+2006-04-29
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="tex2html2627"
29
+<A NAME="tex2html2633"
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="tex2html2623"
32
+<A NAME="tex2html2629"
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="tex2html2619"
35
+<A NAME="tex2html2625"
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="tex2html2625"
38
+<A NAME="tex2html2631"
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="tex2html2628"
42
+<B> Next:</B> <A NAME="tex2html2634"
43 43
   HREF="node155.html">Credits</A>
44
-<B> Up:</B> <A NAME="tex2html2624"
44
+<B> Up:</B> <A NAME="tex2html2630"
45 45
   HREF="node143.html">Miscellaneous + ClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html2620"
46
+<B> Previous:</B> <A NAME="tex2html2626"
47 47
   HREF="node153.html">snort-inline</A>
48
- &nbsp <B>  <A NAME="tex2html2626"
48
+ &nbsp <B>  <A NAME="tex2html2632"
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-01-09
67
+2006-04-29
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="tex2html2639"
30
+<A NAME="tex2html2645"
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="tex2html2635"
33
+<A NAME="tex2html2641"
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="tex2html2629"
36
+<A NAME="tex2html2635"
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="tex2html2637"
39
+<A NAME="tex2html2643"
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="tex2html2640"
43
+<B> Next:</B> <A NAME="tex2html2646"
44 44
   HREF="node156.html">Database mirrors</A>
45
-<B> Up:</B> <A NAME="tex2html2636"
45
+<B> Up:</B> <A NAME="tex2html2642"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html2630"
47
+<B> Previous:</B> <A NAME="tex2html2636"
48 48
   HREF="node154.html">Snort-ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2638"
49
+ &nbsp <B>  <A NAME="tex2html2644"
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="tex2html2641"
65
+<LI><A NAME="tex2html2647"
66 66
   HREF="node156.html">Database mirrors</A>
67
-<LI><A NAME="tex2html2642"
67
+<LI><A NAME="tex2html2648"
68 68
   HREF="node157.html">Contributors</A>
69
-<LI><A NAME="tex2html2643"
69
+<LI><A NAME="tex2html2649"
70 70
   HREF="node158.html">Donors</A>
71
-<LI><A NAME="tex2html2644"
71
+<LI><A NAME="tex2html2650"
72 72
   HREF="node159.html">Graphics</A>
73
-<LI><A NAME="tex2html2645"
73
+<LI><A NAME="tex2html2651"
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-01-09
80
+2006-04-29
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="tex2html2656"
30
+<A NAME="tex2html2662"
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="tex2html2652"
33
+<A NAME="tex2html2658"
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="tex2html2646"
36
+<A NAME="tex2html2652"
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="tex2html2654"
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="tex2html2657"
43
+<B> Next:</B> <A NAME="tex2html2663"
44 44
   HREF="node157.html">Contributors</A>
45
-<B> Up:</B> <A NAME="tex2html2653"
45
+<B> Up:</B> <A NAME="tex2html2659"
46 46
   HREF="node155.html">Credits</A>
47
-<B> Previous:</B> <A NAME="tex2html2647"
47
+<B> Previous:</B> <A NAME="tex2html2653"
48 48
   HREF="node155.html">Credits</A>
49
- &nbsp <B>  <A NAME="tex2html2655"
49
+ &nbsp <B>  <A NAME="tex2html2661"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -69,30 +69,6 @@ Database mirrors
69 69
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Administrator</FONT></TD>
70 70
 </TR>
71 71
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html151"
72
-  HREF="avmirror1.prod.rxgsys.com">avmirror1.prod.rxgsys.com</A></TT> </FONT></TD>
73
-<TD ALIGN="CENTER"><FONT SIZE="-1"> 64.74.124.90 </FONT></TD>
74
-<TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
75
-<TD ALIGN="CENTER"><FONT SIZE="-1"> Graham Wooden</FONT></TD>
76
-</TR>
77
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
78
-					</FONT></TD>
79
-<TD ALIGN="CENTER"><FONT SIZE="-1">	       </FONT></TD>
80
-<TD ALIGN="CENTER"><FONT SIZE="-1">     </FONT></TD>
81
-<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;graham*rxgsys.com&gt;</FONT></TD>
82
-</TR>
83
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html152"
84
-  HREF="avmirror2.prod.rxgsys.com">avmirror2.prod.rxgsys.com</A></TT> </FONT></TD>
85
-<TD ALIGN="CENTER"><FONT SIZE="-1"> 207.201.202.73 </FONT></TD>
86
-<TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
87
-<TD ALIGN="CENTER"><FONT SIZE="-1"> Graham Wooden</FONT></TD>
88
-</TR>
89
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
90
-					</FONT></TD>
91
-<TD ALIGN="CENTER"><FONT SIZE="-1">		 </FONT></TD>
92
-<TD ALIGN="CENTER"><FONT SIZE="-1">     </FONT></TD>
93
-<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;graham*rxgsys.com&gt;</FONT></TD>
94
-</TR>
95
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html153"
96 72
   HREF="clamav.power-netz.de">clamav.power-netz.de</A></TT> </FONT></TD>
97 73
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 212.162.12.159 </FONT></TD>
98 74
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Dusseldorf, </FONT></TD>
... ...
@@ -104,7 +80,7 @@ Database mirrors
104 104
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany     </FONT></TD>
105 105
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;a.gietl*e-admin.de&gt;</FONT></TD>
106 106
 </TR>
107
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html154"
107
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html152"
108 108
   HREF="clamav.essentkabel.com">clamav.essentkabel.com</A></TT> </FONT></TD>
109 109
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 195.85.130.84 </FONT></TD>
110 110
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Netherlands </FONT></TD>
... ...
@@ -116,7 +92,7 @@ Database mirrors
116 116
 <TD ALIGN="CENTER"><FONT SIZE="-1">		   </FONT></TD>
117 117
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mirror*essentkabel.com&gt;</FONT></TD>
118 118
 </TR>
119
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html155"
119
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html153"
120 120
   HREF="clamav.inet6.fr">clamav.inet6.fr</A></TT> </FONT></TD>
121 121
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 62.210.153.201 </FONT></TD>
122 122
 <TD ALIGN="CENTER"><FONT SIZE="-1"> France </FONT></TD>
... ...
@@ -128,7 +104,7 @@ Database mirrors
128 128
 <TD ALIGN="CENTER"><FONT SIZE="-1">        </FONT></TD>
129 129
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;clamavdb*inet6.fr&gt;</FONT></TD>
130 130
 </TR>
131
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html156"
131
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html154"
132 132
   HREF="clamav.netopia.pt">clamav.netopia.pt</A></TT> </FONT></TD>
133 133
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.126.14.29 </FONT></TD>
134 134
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Portugal </FONT></TD>
... ...
@@ -140,7 +116,7 @@ Database mirrors
140 140
 <TD ALIGN="CENTER"><FONT SIZE="-1">	   </FONT></TD>
141 141
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mbd*netopia.pt&gt;</FONT></TD>
142 142
 </TR>
143
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html157"
143
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html155"
144 144
   HREF="clamav.sonic.net">clamav.sonic.net</A></TT> </FONT></TD>
145 145
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 209.204.175.217 </FONT></TD>
146 146
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -152,7 +128,7 @@ Database mirrors
152 152
 <TD ALIGN="CENTER"><FONT SIZE="-1">     </FONT></TD>
153 153
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;kgc*sonic.net&gt;</FONT></TD>
154 154
 </TR>
155
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html158"
155
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html156"
156 156
   HREF="clamav.gossamer-threads.com">clamav.gossamer-threads.com</A></TT> </FONT></TD>
157 157
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 64.69.64.158 </FONT></TD>
158 158
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Canada </FONT></TD>
... ...
@@ -164,7 +140,7 @@ Database mirrors
164 164
 <TD ALIGN="CENTER"><FONT SIZE="-1">	  </FONT></TD>
165 165
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mirrors*gossamer-threads.com&gt;</FONT></TD>
166 166
 </TR>
167
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html159"
167
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html157"
168 168
   HREF="clamav.catt.com">clamav.catt.com</A></TT> </FONT></TD>
169 169
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 64.18.100.4 </FONT></TD>
170 170
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -176,7 +152,7 @@ Database mirrors
176 176
 <TD ALIGN="CENTER"><FONT SIZE="-1">	  </FONT></TD>
177 177
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mirrors*catt.com&gt;</FONT></TD>
178 178
 </TR>
179
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html160"
179
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html158"
180 180
   HREF="db.clamav.or.id">db.clamav.or.id</A></TT> </FONT></TD>
181 181
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 202.134.0.71 </FONT></TD>
182 182
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Indonesia </FONT></TD>
... ...
@@ -189,7 +165,7 @@ Database mirrors
189 189
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;fajar*telkom.co.id&gt;</FONT></TD>
190 190
 </TR>
191 191
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
192
-	<TT><A NAME="tex2html161"
192
+	<TT><A NAME="tex2html159"
193 193
   HREF="clamav-du.viaverio.com">clamav-du.viaverio.com</A></TT> </FONT></TD>
194 194
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 199.239.233.95 </FONT></TD>
195 195
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -202,7 +178,7 @@ Database mirrors
202 202
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;scott*perlcode.org&gt;</FONT></TD>
203 203
 </TR>
204 204
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
205
-	<TT><A NAME="tex2html162"
205
+	<TT><A NAME="tex2html160"
206 206
   HREF="clamav-sj.viaverio.com">clamav-sj.viaverio.com</A></TT> </FONT></TD>
207 207
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 128.121.60.235 </FONT></TD>
208 208
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -215,7 +191,7 @@ Database mirrors
215 215
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;scott*perlcode.org&gt;</FONT></TD>
216 216
 </TR>
217 217
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
218
-	<TT><A NAME="tex2html163"
218
+	<TT><A NAME="tex2html161"
219 219
   HREF="clamavdb.heanet.ie">clamavdb.heanet.ie</A></TT> </FONT></TD>
220 220
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.1.193.64 </FONT></TD>
221 221
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Ireland </FONT></TD>
... ...
@@ -228,7 +204,7 @@ Database mirrors
228 228
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mirrors*heanet.ie&gt;</FONT></TD>
229 229
 </TR>
230 230
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
231
-	<TT><A NAME="tex2html164"
231
+	<TT><A NAME="tex2html162"
232 232
   HREF="clamav.crysys.hu">clamav.crysys.hu</A></TT> </FONT></TD>
233 233
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 152.66.249.132 </FONT></TD>
234 234
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Hungary </FONT></TD>
... ...
@@ -240,20 +216,8 @@ Database mirrors
240 240
 <TD ALIGN="CENTER"><FONT SIZE="-1">	  </FONT></TD>
241 241
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;boldi*mail2004.crysys.hit.bme.hu&gt;</FONT></TD>
242 242
 </TR>
243
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html165"
244
-  HREF="clamav.rockriver.net">clamav.rockriver.net</A></TT> </FONT></TD>
245
-<TD ALIGN="CENTER"><FONT SIZE="-1"> 209.94.36.5 </FONT></TD>
246
-<TD ALIGN="CENTER"><FONT SIZE="-1"> Illinois, USA </FONT></TD>
247
-<TD ALIGN="CENTER"><FONT SIZE="-1"> Thomas D. Harker</FONT></TD>
248
-</TR>
249
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
250
-				   </FONT></TD>
251
-<TD ALIGN="CENTER"><FONT SIZE="-1">		 </FONT></TD>
252
-<TD ALIGN="CENTER"><FONT SIZE="-1">		 </FONT></TD>
253
-<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;tom*rockriver.net&gt;</FONT></TD>
254
-</TR>
255 243
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
256
-	<TT><A NAME="tex2html166"
244
+	<TT><A NAME="tex2html163"
257 245
   HREF="clamav.infotex.com">clamav.infotex.com</A></TT> </FONT></TD>
258 246
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 66.139.73.146 </FONT></TD>
259 247
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Texas, USA </FONT></TD>
... ...
@@ -266,7 +230,7 @@ Database mirrors
266 266
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;matt*infotex.com&gt;</FONT></TD>
267 267
 </TR>
268 268
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
269
-	<TT><A NAME="tex2html167"
269
+	<TT><A NAME="tex2html164"
270 270
   HREF="clamav.mirror.transip.nl">clamav.mirror.transip.nl</A></TT> </FONT></TD>
271 271
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 80.69.67.3 </FONT></TD>
272 272
 <TD ALIGN="CENTER"><FONT SIZE="-1"> The Netherlands </FONT></TD>
... ...
@@ -279,7 +243,7 @@ Database mirrors
279 279
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;walter*transip.nl&gt;</FONT></TD>
280 280
 </TR>
281 281
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
282
-	<TT><A NAME="tex2html168"
282
+	<TT><A NAME="tex2html165"
283 283
   HREF="clamavdb.osj.net">clamavdb.osj.net</A></TT> </FONT></TD>
284 284
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 218.44.253.75 </FONT></TD>
285 285
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Japan </FONT></TD>
... ...
@@ -291,7 +255,7 @@ Database mirrors
291 291
 <TD ALIGN="CENTER"><FONT SIZE="-1">       </FONT></TD>
292 292
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;masaki*orange.co.jp&gt;</FONT></TD>
293 293
 </TR>
294
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html169"
294
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html166"
295 295
   HREF="clamav.ialfa.net">clamav.ialfa.net</A></TT> </FONT></TD>
296 296
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 210.22.201.152 </FONT></TD>
297 297
 <TD ALIGN="CENTER"><FONT SIZE="-1"> People's Republic </FONT></TD>
... ...
@@ -303,9 +267,9 @@ Database mirrors
303 303
 <TD ALIGN="CENTER"><FONT SIZE="-1"> of China	    </FONT></TD>
304 304
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;alfa*ialfa.net&gt;</FONT></TD>
305 305
 </TR>
306
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html170"
306
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html167"
307 307
   HREF="clamavdb.ikk.sztaki.hu">clamavdb.ikk.sztaki.hu</A></TT> </FONT></TD>
308
-<TD ALIGN="CENTER"><FONT SIZE="-1"> 193.225.86.3 </FONT></TD>
308
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 193.225.12.21 </FONT></TD>
309 309
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Hungary </FONT></TD>
310 310
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Gabor Kiss</FONT></TD>
311 311
 </TR>
... ...
@@ -315,7 +279,7 @@ Database mirrors
315 315
 <TD ALIGN="CENTER"><FONT SIZE="-1">	      </FONT></TD>
316 316
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;kissg*debella.ikk.sztaki.hu&gt;</FONT></TD>
317 317
 </TR>
318
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html171"
318
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html168"
319 319
   HREF="clamav.mirrors.nks.net">clamav.mirrors.nks.net</A></TT> </FONT></TD>
320 320
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 24.73.112.74 </FONT></TD>
321 321
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Florida, USA </FONT></TD>
... ...
@@ -327,7 +291,7 @@ Database mirrors
327 327
 <TD ALIGN="CENTER"><FONT SIZE="-1">		   </FONT></TD>
328 328
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;clam-admin*nks.net&gt;</FONT></TD>
329 329
 </TR>
330
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html172"
330
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html169"
331 331
   HREF="clamav.kratern.se">clamav.kratern.se</A></TT> </FONT></TD>
332 332
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 212.31.160.239 </FONT></TD>
333 333
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Sweden </FONT></TD>
... ...
@@ -339,7 +303,7 @@ Database mirrors
339 339
 <TD ALIGN="CENTER"><FONT SIZE="-1">	  </FONT></TD>
340 340
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;emil*kratern.se&gt;</FONT></TD>
341 341
 </TR>
342
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html173"
342
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html170"
343 343
   HREF="clamav.dif.dk">clamav.dif.dk</A></TT> </FONT></TD>
344 344
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.138.115.108 </FONT></TD>
345 345
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Denmark </FONT></TD>
... ...
@@ -351,7 +315,7 @@ Database mirrors
351 351
 <TD ALIGN="CENTER"><FONT SIZE="-1">		</FONT></TD>
352 352
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;juhl*dif.dk&gt;</FONT></TD>
353 353
 </TR>
354
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html174"
354
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html171"
355 355
   HREF="clamav.dbplc.com">clamav.dbplc.com</A></TT> </FONT></TD>
356 356
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 217.154.108.81 </FONT></TD>
357 357
 <TD ALIGN="CENTER"><FONT SIZE="-1"> United Kingdom </FONT></TD>
... ...
@@ -379,7 +343,7 @@ Database mirrors
379 379
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Location </FONT></TD>
380 380
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Administrator</FONT></TD>
381 381
 </TR>
382
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html175"
382
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html172"
383 383
   HREF="clamav.unet.brandeis.edu">clamav.unet.brandeis.edu</A></TT> </FONT></TD>
384 384
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 129.64.99.170 </FONT></TD>
385 385
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -391,7 +355,7 @@ Database mirrors
391 391
 <TD ALIGN="CENTER"><FONT SIZE="-1">     </FONT></TD>
392 392
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ekendall*brandeis.edu&gt;</FONT></TD>
393 393
 </TR>
394
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html176"
394
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html173"
395 395
   HREF="clamav.im1.net">clamav.im1.net</A></TT> </FONT></TD>
396 396
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 65.77.42.207 </FONT></TD>
397 397
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Florida, US </FONT></TD>
... ...
@@ -403,7 +367,7 @@ Database mirrors
403 403
 <TD ALIGN="CENTER"><FONT SIZE="-1">		  </FONT></TD>
404 404
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;dmitri*im1.com&gt;</FONT></TD>
405 405
 </TR>
406
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html177"
406
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html174"
407 407
   HREF="clamav.acnova.com">clamav.acnova.com</A></TT> </FONT></TD>
408 408
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 203.81.40.167 </FONT></TD>
409 409
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Singapore </FONT></TD>
... ...
@@ -416,7 +380,7 @@ Database mirrors
416 416
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;myself*lennardseah.com&gt;</FONT></TD>
417 417
 </TR>
418 418
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
419
-	<TT><A NAME="tex2html178"
419
+	<TT><A NAME="tex2html175"
420 420
   HREF="clamdb.prolocation.net">clamdb.prolocation.net</A></TT> </FONT></TD>
421 421
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.73.255.243 </FONT></TD>
422 422
 <TD ALIGN="CENTER"><FONT SIZE="-1"> The Netherlands </FONT></TD>
... ...
@@ -429,9 +393,9 @@ Database mirrors
429 429
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;raymond*prolocation.net&gt;</FONT></TD>
430 430
 </TR>
431 431
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
432
-	<TT><A NAME="tex2html179"
432
+	<TT><A NAME="tex2html176"
433 433
   HREF="clamav.xyxx.com">clamav.xyxx.com</A></TT> </FONT></TD>
434
-<TD ALIGN="CENTER"><FONT SIZE="-1"> 65.75.154.69 </FONT></TD>
434
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 72.21.63.182 </FONT></TD>
435 435
 <TD ALIGN="CENTER"><FONT SIZE="-1"> San Francisco/Palo Alto </FONT></TD>
436 436
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Myron Davis</FONT></TD>
437 437
 </TR>
... ...
@@ -442,7 +406,7 @@ Database mirrors
442 442
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;myrond*xyxx.com&gt;</FONT></TD>
443 443
 </TR>
444 444
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
445
-	<TT><A NAME="tex2html180"
445
+	<TT><A NAME="tex2html177"
446 446
   HREF="clamav.walkertek.com">clamav.walkertek.com</A></TT> </FONT></TD>
447 447
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 38.136.139.7 </FONT></TD>
448 448
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -455,7 +419,7 @@ Database mirrors
455 455
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;swalker*walkertek.com&gt;</FONT></TD>
456 456
 </TR>
457 457
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
458
-	<TT><A NAME="tex2html181"
458
+	<TT><A NAME="tex2html178"
459 459
   HREF="clamav.mirror.rafal.ca">clamav.mirror.rafal.ca</A></TT> </FONT></TD>
460 460
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 24.215.0.24 </FONT></TD>
461 461
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Burlington, </FONT></TD>
... ...
@@ -468,7 +432,7 @@ Database mirrors
468 468
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;webmaster*mirror.rafal.ca&gt;</FONT></TD>
469 469
 </TR>
470 470
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
471
-	<TT><A NAME="tex2html182"
471
+	<TT><A NAME="tex2html179"
472 472
   HREF="clamav.securityminded.net">clamav.securityminded.net</A></TT> </FONT></TD>
473 473
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 209.8.40.140 </FONT></TD>
474 474
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Ashburn, USA </FONT></TD>
... ...
@@ -481,7 +445,7 @@ Database mirrors
481 481
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;tomp*securityminded.net&gt;</FONT></TD>
482 482
 </TR>
483 483
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
484
-	<TT><A NAME="tex2html183"
484
+	<TT><A NAME="tex2html180"
485 485
   HREF="clamav.island.net.au">clamav.island.net.au</A></TT> </FONT></TD>
486 486
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 203.28.142.36 </FONT></TD>
487 487
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Sydney    </FONT></TD>
... ...
@@ -494,7 +458,7 @@ Database mirrors
494 494
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;hugh*island.net.au&gt;</FONT></TD>
495 495
 </TR>
496 496
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
497
-	<TT><A NAME="tex2html184"
497
+	<TT><A NAME="tex2html181"
498 498
   HREF="clamav.iol.cz">clamav.iol.cz</A></TT> </FONT></TD>
499 499
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 194.228.2.38 </FONT></TD>
500 500
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Czech Republic </FONT></TD>
... ...
@@ -507,7 +471,7 @@ Database mirrors
507 507
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;lenka.sevcikova*ct.cz&gt;</FONT></TD>
508 508
 </TR>
509 509
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
510
-	<TT><A NAME="tex2html185"
510
+	<TT><A NAME="tex2html182"
511 511
   HREF="clamav.securitywonks.net">clamav.securitywonks.net</A></TT> </FONT></TD>
512 512
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 66.197.159.213 </FONT></TD>
513 513
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -520,7 +484,7 @@ Database mirrors
520 520
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;clamav*zyserver.net&gt;</FONT></TD>
521 521
 </TR>
522 522
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
523
-	<TT><A NAME="tex2html186"
523
+	<TT><A NAME="tex2html183"
524 524
   HREF="clamav.pcn.de">clamav.pcn.de</A></TT> </FONT></TD>
525 525
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.203.254.4 </FONT></TD>
526 526
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Hamburg, </FONT></TD>
... ...
@@ -533,7 +497,7 @@ Database mirrors
533 533
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;karsten*pcn.de&gt;</FONT></TD>
534 534
 </TR>
535 535
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
536
-	<TT><A NAME="tex2html187"
536
+	<TT><A NAME="tex2html184"
537 537
   HREF="clamav.enderunix.org">clamav.enderunix.org</A></TT> </FONT></TD>
538 538
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.140.143.23 </FONT></TD>
539 539
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Turkey </FONT></TD>
... ...
@@ -546,7 +510,7 @@ Database mirrors
546 546
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ofsen*enderunix.org&gt;</FONT></TD>
547 547
 </TR>
548 548
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
549
-	<TT><A NAME="tex2html188"
549
+	<TT><A NAME="tex2html185"
550 550
   HREF="clamav.ovh.net">clamav.ovh.net</A></TT> </FONT></TD>
551 551
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.186.33.38 </FONT></TD>
552 552
 <TD ALIGN="CENTER"><FONT SIZE="-1"> France </FONT></TD>
... ...
@@ -559,7 +523,7 @@ Database mirrors
559 559
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;germain.masse*ovh.net&gt;</FONT></TD>
560 560
 </TR>
561 561
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
562
-	<TT><A NAME="tex2html189"
562
+	<TT><A NAME="tex2html186"
563 563
   HREF="clamav.spod.org">clamav.spod.org</A></TT> </FONT></TD>
564 564
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 195.92.99.99 </FONT></TD>
565 565
 <TD ALIGN="CENTER"><FONT SIZE="-1"> United Kingdom </FONT></TD>
... ...
@@ -572,7 +536,7 @@ Database mirrors
572 572
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;blob*blob.co.uk&gt;</FONT></TD>
573 573
 </TR>
574 574
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
575
-	<TT><A NAME="tex2html190"
575
+	<TT><A NAME="tex2html187"
576 576
   HREF="clamav.intercom.net.ua">clamav.intercom.net.ua</A></TT> </FONT></TD>
577 577
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 83.218.226.76 </FONT></TD>
578 578
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Ukraine </FONT></TD>
... ...
@@ -585,7 +549,7 @@ Database mirrors
585 585
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;kadjy*intercom.net.ua&gt;</FONT></TD>
586 586
 </TR>
587 587
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
588
-	<TT><A NAME="tex2html191"
588
+	<TT><A NAME="tex2html188"
589 589
   HREF="clamav.mirror.vutbr.cz">clamav.mirror.vutbr.cz</A></TT> </FONT></TD>
590 590
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 147.229.3.16 </FONT></TD>
591 591
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Czech Republic </FONT></TD>
... ...
@@ -598,7 +562,7 @@ Database mirrors
598 598
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mirror-adm*cis.vutbr.cz&gt;</FONT></TD>
599 599
 </TR>
600 600
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
601
-	<TT><A NAME="tex2html192"
601
+	<TT><A NAME="tex2html189"
602 602
   HREF="database.clamav.ps.pl">database.clamav.ps.pl</A></TT> </FONT></TD>
603 603
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 212.14.28.36 </FONT></TD>
604 604
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Poland </FONT></TD>
... ...
@@ -611,7 +575,7 @@ Database mirrors
611 611
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;adam*popik.pl&gt;</FONT></TD>
612 612
 </TR>
613 613
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
614
-	<TT><A NAME="tex2html193"
614
+	<TT><A NAME="tex2html190"
615 615
   HREF="clamav.fx-services.com">clamav.fx-services.com</A></TT> </FONT></TD>
616 616
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 69.93.108.98 </FONT></TD>
617 617
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -624,7 +588,7 @@ Database mirrors
624 624
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;robin*fx-services.com&gt;</FONT></TD>
625 625
 </TR>
626 626
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
627
-	<TT><A NAME="tex2html194"
627
+	<TT><A NAME="tex2html191"
628 628
   HREF="clamav.univ-nantes.fr">clamav.univ-nantes.fr</A></TT> </FONT></TD>
629 629
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.52.101.131 </FONT></TD>
630 630
 <TD ALIGN="CENTER"><FONT SIZE="-1"> France </FONT></TD>
... ...
@@ -637,7 +601,7 @@ Database mirrors
637 637
 <TD ALIGN="CENTER"><FONT SIZE="-1">	&lt;yann.dupont*univ-nantes.fr&gt;</FONT></TD>
638 638
 </TR>
639 639
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
640
-	<TT><A NAME="tex2html195"
640
+	<TT><A NAME="tex2html192"
641 641
   HREF="clamav.blackroute.net">clamav.blackroute.net</A></TT> </FONT></TD>
642 642
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 64.246.44.108 </FONT></TD>
643 643
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Texas, USA </FONT></TD>
... ...
@@ -650,7 +614,7 @@ Database mirrors
650 650
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;maarten*daemon.be&gt;</FONT></TD>
651 651
 </TR>
652 652
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
653
-	<TT><A NAME="tex2html196"
653
+	<TT><A NAME="tex2html193"
654 654
   HREF="clamavdb.mithril-linux.org">clamavdb.mithril-linux.org</A></TT> </FONT></TD>
655 655
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 211.10.155.48 </FONT></TD>
656 656
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Japan </FONT></TD>
... ...
@@ -663,7 +627,7 @@ Database mirrors
663 663
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;henrich*samba.gr.jp&gt;</FONT></TD>
664 664
 </TR>
665 665
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
666
-	<TT><A NAME="tex2html197"
666
+	<TT><A NAME="tex2html194"
667 667
   HREF="clamavdb.planetmirror.com">clamavdb.planetmirror.com</A></TT> </FONT></TD>
668 668
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 203.16.234.78 </FONT></TD>
669 669
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Australia </FONT></TD>
... ...
@@ -676,7 +640,7 @@ Database mirrors
676 676
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;support*planetmirror.com&gt;</FONT></TD>
677 677
 </TR>
678 678
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
679
-	<TT><A NAME="tex2html198"
679
+	<TT><A NAME="tex2html195"
680 680
   HREF="clamav.pathlink.com">clamav.pathlink.com</A></TT> </FONT></TD>
681 681
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 129.250.169.81 </FONT></TD>
682 682
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -699,7 +663,7 @@ Database mirrors
699 699
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Location </FONT></TD>
700 700
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Administrator</FONT></TD>
701 701
 </TR>
702
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html199"
702
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html196"
703 703
   HREF="clamav.mirror.camelnetwork.com">clamav.mirror.camelnetwork.com</A></TT> </FONT></TD>
704 704
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.230.200.242 </FONT></TD>
705 705
 <TD ALIGN="CENTER"><FONT SIZE="-1"> UK </FONT></TD>
... ...
@@ -712,7 +676,7 @@ Database mirrors
712 712
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;clamav.mirror*camelnetwork.com&gt;</FONT></TD>
713 713
 </TR>
714 714
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
715
-	<TT><A NAME="tex2html200"
715
+	<TT><A NAME="tex2html197"
716 716
   HREF="clamav.unnet.nl">clamav.unnet.nl</A></TT> </FONT></TD>
717 717
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 62.133.206.90 </FONT></TD>
718 718
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Netherlands </FONT></TD>
... ...
@@ -725,7 +689,7 @@ Database mirrors
725 725
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;cliff*unilogicnetworks.net&gt;</FONT></TD>
726 726
 </TR>
727 727
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
728
-	<TT><A NAME="tex2html201"
728
+	<TT><A NAME="tex2html198"
729 729
   HREF="clamav.easynet.fr">clamav.easynet.fr</A></TT> </FONT></TD>
730 730
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 212.180.1.29 </FONT></TD>
731 731
 <TD ALIGN="CENTER"><FONT SIZE="-1"> France </FONT></TD>
... ...
@@ -738,7 +702,7 @@ Database mirrors
738 738
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mailadmin*easynet.fr&gt;</FONT></TD>
739 739
 </TR>
740 740
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
741
-	<TT><A NAME="tex2html202"
741
+	<TT><A NAME="tex2html199"
742 742
   HREF="clamav.edebris.com">clamav.edebris.com</A></TT> </FONT></TD>
743 743
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 216.24.174.245 </FONT></TD>
744 744
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -751,7 +715,7 @@ Database mirrors
751 751
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ed*hp.uab.edu&gt;</FONT></TD>
752 752
 </TR>
753 753
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
754
-	<TT><A NAME="tex2html203"
754
+	<TT><A NAME="tex2html200"
755 755
   HREF="clamav.inoc.net">clamav.inoc.net</A></TT> </FONT></TD>
756 756
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 64.246.134.133 </FONT></TD>
757 757
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -764,7 +728,7 @@ Database mirrors
764 764
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;noc*inoc.net&gt;</FONT></TD>
765 765
 </TR>
766 766
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
767
-	<TT><A NAME="tex2html204"
767
+	<TT><A NAME="tex2html201"
768 768
   HREF="clamav.devolution.com">clamav.devolution.com</A></TT> </FONT></TD>
769 769
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 206.58.251.131 </FONT></TD>
770 770
 <TD ALIGN="CENTER"><FONT SIZE="-1"> California, </FONT></TD>
... ...
@@ -777,7 +741,7 @@ Database mirrors
777 777
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;scall*atgi.net&gt;</FONT></TD>
778 778
 </TR>
779 779
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
780
-	<TT><A NAME="tex2html205"
780
+	<TT><A NAME="tex2html202"
781 781
   HREF="clamavdb.hostlink.com.hk">clamavdb.hostlink.com.hk</A></TT> </FONT></TD>
782 782
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 210.245.160.22 </FONT></TD>
783 783
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Hong Kong </FONT></TD>
... ...
@@ -790,7 +754,7 @@ Database mirrors
790 790
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;alexfkl*hostlink.com.hk&gt;</FONT></TD>
791 791
 </TR>
792 792
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
793
-	<TT><A NAME="tex2html206"
793
+	<TT><A NAME="tex2html203"
794 794
   HREF="clamav.clearfield.com">clamav.clearfield.com</A></TT> </FONT></TD>
795 795
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 65.110.48.11 </FONT></TD>
796 796
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -803,7 +767,7 @@ Database mirrors
803 803
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;jfp*clearfield.com&gt;</FONT></TD>
804 804
 </TR>
805 805
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
806
-	<TT><A NAME="tex2html207"
806
+	<TT><A NAME="tex2html204"
807 807
   HREF="clamav.oltrelinux.com">clamav.oltrelinux.com</A></TT> </FONT></TD>
808 808
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 194.242.226.43 </FONT></TD>
809 809
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Italy </FONT></TD>
... ...
@@ -816,7 +780,7 @@ Database mirrors
816 816
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;l.gibelli*oltrelinux.com&gt;</FONT></TD>
817 817
 </TR>
818 818
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
819
-	<TT><A NAME="tex2html208"
819
+	<TT><A NAME="tex2html205"
820 820
   HREF="xarch.clamav.net">xarch.clamav.net</A></TT> </FONT></TD>
821 821
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 129.27.62.129 </FONT></TD>
822 822
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Austria </FONT></TD>
... ...
@@ -829,7 +793,7 @@ Database mirrors
829 829
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;rurban*x-ray.at&gt;</FONT></TD>
830 830
 </TR>
831 831
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
832
-	<TT><A NAME="tex2html209"
832
+	<TT><A NAME="tex2html206"
833 833
   HREF="clamav.linux.it">clamav.linux.it</A></TT> </FONT></TD>
834 834
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.92.8.5 </FONT></TD>
835 835
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Italy </FONT></TD>
... ...
@@ -842,7 +806,7 @@ Database mirrors
842 842
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;md*linux.it&gt;</FONT></TD>
843 843
 </TR>
844 844
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
845
-	<TT><A NAME="tex2html210"
845
+	<TT><A NAME="tex2html207"
846 846
   HREF="clamav.eastweb.ru">clamav.eastweb.ru</A></TT> </FONT></TD>
847 847
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.219.245.4 </FONT></TD>
848 848
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Russia </FONT></TD>
... ...
@@ -855,7 +819,7 @@ Database mirrors
855 855
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;lenni*eastweb.ru&gt;</FONT></TD>
856 856
 </TR>
857 857
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
858
-	<TT><A NAME="tex2html211"
858
+	<TT><A NAME="tex2html208"
859 859
   HREF="clamav.mirrors.webpartner.dk">clamav.mirrors.webpartner.dk</A></TT> </FONT></TD>
860 860
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 195.184.96.15 </FONT></TD>
861 861
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Denmark </FONT></TD>
... ...
@@ -868,7 +832,7 @@ Database mirrors
868 868
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Lasse Brandt &lt;lb*webpartner.dk&gt;</FONT></TD>
869 869
 </TR>
870 870
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
871
-	<TT><A NAME="tex2html212"
871
+	<TT><A NAME="tex2html209"
872 872
   HREF="mirror.etf.bg.ac.yu">mirror.etf.bg.ac.yu</A></TT> </FONT></TD>
873 873
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 147.91.8.58 </FONT></TD>
874 874
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Belgrade, Serbia </FONT></TD>
... ...
@@ -881,7 +845,7 @@ Database mirrors
881 881
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ljubisa*etf.bg.ac.yu&gt;</FONT></TD>
882 882
 </TR>
883 883
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
884
-	<TT><A NAME="tex2html213"
884
+	<TT><A NAME="tex2html210"
885 885
   HREF="clamav.bridgeband.net">clamav.bridgeband.net</A></TT> </FONT></TD>
886 886
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 63.166.28.8 </FONT></TD>
887 887
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Montana, </FONT></TD>
... ...
@@ -894,7 +858,7 @@ Database mirrors
894 894
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mikel*bridgeband.net&gt;</FONT></TD>
895 895
 </TR>
896 896
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
897
-	<TT><A NAME="tex2html214"
897
+	<TT><A NAME="tex2html211"
898 898
   HREF="clamav.kgt.org">clamav.kgt.org</A></TT> </FONT></TD>
899 899
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 62.112.154.203 </FONT></TD>
900 900
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -907,7 +871,7 @@ Database mirrors
907 907
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;thomas*kgt.org&gt;</FONT></TD>
908 908
 </TR>
909 909
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
910
-	<TT><A NAME="tex2html215"
910
+	<TT><A NAME="tex2html212"
911 911
   HREF="clamav.mirror.waycom.net">clamav.mirror.waycom.net</A></TT> </FONT></TD>
912 912
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 195.214.240.53 </FONT></TD>
913 913
 <TD ALIGN="CENTER"><FONT SIZE="-1"> France </FONT></TD>
... ...
@@ -920,7 +884,7 @@ Database mirrors
920 920
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;fd*waycom.net&gt;</FONT></TD>
921 921
 </TR>
922 922
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
923
-	<TT><A NAME="tex2html216"
923
+	<TT><A NAME="tex2html213"
924 924
   HREF="clamav.cryms.info">clamav.cryms.info</A></TT> </FONT></TD>
925 925
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 194.29.5.19 </FONT></TD>
926 926
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Lugano,	    </FONT></TD>
... ...
@@ -933,7 +897,7 @@ Database mirrors
933 933
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;lorenzo.patocchi*cryms.com&gt;</FONT></TD>
934 934
 </TR>
935 935
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
936
-	<TT><A NAME="tex2html217"
936
+	<TT><A NAME="tex2html214"
937 937
   HREF="clamav-mirror.wiseknot.co.jp">clamav-mirror.wiseknot.co.jp</A></TT> </FONT></TD>
938 938
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 59.87.0.36 </FONT></TD>
939 939
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Japan </FONT></TD>
... ...
@@ -946,7 +910,7 @@ Database mirrors
946 946
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;m-tada*wiseknot.co.jp&gt;</FONT></TD>
947 947
 </TR>
948 948
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
949
-	<TT><A NAME="tex2html218"
949
+	<TT><A NAME="tex2html215"
950 950
   HREF="clamav.host.bg">clamav.host.bg</A></TT> </FONT></TD>
951 951
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 87.120.40.28 </FONT></TD>
952 952
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Bulgaria </FONT></TD>
... ...
@@ -959,7 +923,7 @@ Database mirrors
959 959
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;a.titov*host.bg&gt;</FONT></TD>
960 960
 </TR>
961 961
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
962
-	<TT><A NAME="tex2html219"
962
+	<TT><A NAME="tex2html216"
963 963
   HREF="clamav.yukiguni.net">clamav.yukiguni.net</A></TT> </FONT></TD>
964 964
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 219.127.68.136 </FONT></TD>
965 965
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Japan </FONT></TD>
... ...
@@ -972,7 +936,7 @@ Database mirrors
972 972
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;indytech*yukiguni.net&gt;</FONT></TD>
973 973
 </TR>
974 974
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
975
-	<TT><A NAME="tex2html220"
975
+	<TT><A NAME="tex2html217"
976 976
   HREF="clamav.begi.net">clamav.begi.net</A></TT> </FONT></TD>
977 977
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 219.106.242.51 </FONT></TD>
978 978
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Japan </FONT></TD>
... ...
@@ -985,7 +949,7 @@ Database mirrors
985 985
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ito*begi.net&gt;</FONT></TD>
986 986
 </TR>
987 987
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
988
-	<TT><A NAME="tex2html221"
988
+	<TT><A NAME="tex2html218"
989 989
   HREF="clamav.meiwing.com">clamav.meiwing.com</A></TT> </FONT></TD>
990 990
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 210.245.226.117 </FONT></TD>
991 991
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Hong Kong </FONT></TD>
... ...
@@ -998,20 +962,7 @@ Database mirrors
998 998
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;thomas*meiwing.com&gt;</FONT></TD>
999 999
 </TR>
1000 1000
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1001
-	<TT><A NAME="tex2html222"
1002
-  HREF="clamav.mtcnet.jp">clamav.mtcnet.jp</A></TT> </FONT></TD>
1003
-<TD ALIGN="CENTER"><FONT SIZE="-1"> 221.246.94.244 </FONT></TD>
1004
-<TD ALIGN="CENTER"><FONT SIZE="-1"> Japan </FONT></TD>
1005
-<TD ALIGN="CENTER"><FONT SIZE="-1"> Masahiro Kawai</FONT></TD>
1006
-</TR>
1007
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1008
-			       </FONT></TD>
1009
-<TD ALIGN="CENTER"><FONT SIZE="-1">		</FONT></TD>
1010
-<TD ALIGN="CENTER"><FONT SIZE="-1">	</FONT></TD>
1011
-<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;kawai*mtcnet.co.jp&gt;</FONT></TD>
1012
-</TR>
1013
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1014
-	<TT><A NAME="tex2html223"
1001
+	<TT><A NAME="tex2html219"
1015 1002
   HREF="clamav.unix.su">clamav.unix.su</A></TT> </FONT></TD>
1016 1003
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 62.181.41.8 </FONT></TD>
1017 1004
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Russian Federation </FONT></TD>
... ...
@@ -1034,7 +985,7 @@ Database mirrors
1034 1034
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Location </FONT></TD>
1035 1035
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Administrator</FONT></TD>
1036 1036
 </TR>
1037
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html224"
1037
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html220"
1038 1038
   HREF="clamav.mirror.pacific.net.au">clamav.mirror.pacific.net.au</A></TT> </FONT></TD>
1039 1039
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 61.8.0.16 </FONT></TD>
1040 1040
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Australia </FONT></TD>
... ...
@@ -1047,7 +998,7 @@ Database mirrors
1047 1047
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mirror-team*pacific.net.au&gt;</FONT></TD>
1048 1048
 </TR>
1049 1049
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1050
-	<TT><A NAME="tex2html225"
1050
+	<TT><A NAME="tex2html221"
1051 1051
   HREF="clamavdb.mirrors.net.ru">clamavdb.mirrors.net.ru</A></TT> </FONT></TD>
1052 1052
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 212.16.26.185 </FONT></TD>
1053 1053
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Russia </FONT></TD>
... ...
@@ -1060,7 +1011,7 @@ Database mirrors
1060 1060
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mirrors*mirrors.net.ru&gt;</FONT></TD>
1061 1061
 </TR>
1062 1062
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1063
-	<TT><A NAME="tex2html226"
1063
+	<TT><A NAME="tex2html222"
1064 1064
   HREF="clamav.cbn.net.id">clamav.cbn.net.id</A></TT> </FONT></TD>
1065 1065
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 202.158.56.242 </FONT></TD>
1066 1066
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Indonesia </FONT></TD>
... ...
@@ -1073,7 +1024,7 @@ Database mirrors
1073 1073
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;riv*cbn.net.id&gt;</FONT></TD>
1074 1074
 </TR>
1075 1075
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1076
-	<TT><A NAME="tex2html227"
1076
+	<TT><A NAME="tex2html223"
1077 1077
   HREF="clamav.forthnet.gr">clamav.forthnet.gr</A></TT> </FONT></TD>
1078 1078
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.92.150.194 </FONT></TD>
1079 1079
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Greece </FONT></TD>
... ...
@@ -1086,7 +1037,7 @@ Database mirrors
1086 1086
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;virus_admin*forthnet.gr&gt;</FONT></TD>
1087 1087
 </TR>
1088 1088
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1089
-	<TT><A NAME="tex2html228"
1089
+	<TT><A NAME="tex2html224"
1090 1090
   HREF="fuxhausen.tiscali.de">fuxhausen.tiscali.de</A></TT> </FONT></TD>
1091 1091
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 62.26.160.3 </FONT></TD>
1092 1092
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1099,7 +1050,7 @@ Database mirrors
1099 1099
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;elke.hahnen*de.tiscali.com&gt;</FONT></TD>
1100 1100
 </TR>
1101 1101
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1102
-	<TT><A NAME="tex2html229"
1102
+	<TT><A NAME="tex2html225"
1103 1103
   HREF="clamav.theshell.com">clamav.theshell.com</A></TT> </FONT></TD>
1104 1104
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 209.200.146.2 </FONT></TD>
1105 1105
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -1112,7 +1063,7 @@ Database mirrors
1112 1112
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;pavalos*theshell.com&gt;</FONT></TD>
1113 1113
 </TR>
1114 1114
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1115
-	<TT><A NAME="tex2html230"
1115
+	<TT><A NAME="tex2html226"
1116 1116
   HREF="clamav.inode.at">clamav.inode.at</A></TT> </FONT></TD>
1117 1117
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 81.223.20.171 </FONT></TD>
1118 1118
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Austria </FONT></TD>
... ...
@@ -1125,20 +1076,7 @@ Database mirrors
1125 1125
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mirror*inode.at&gt;</FONT></TD>
1126 1126
 </TR>
1127 1127
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1128
-	<TT><A NAME="tex2html231"
1129
-  HREF="clamav.informatik.fh-furtwangen.de">clamav.informatik.fh-furtwangen.de</A></TT> </FONT></TD>
1130
-<TD ALIGN="CENTER"><FONT SIZE="-1"> 141.28.73.8 </FONT></TD>
1131
-<TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
1132
-<TD ALIGN="CENTER"><FONT SIZE="-1"> Sebastian Siewior</FONT></TD>
1133
-</TR>
1134
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1135
-						 </FONT></TD>
1136
-<TD ALIGN="CENTER"><FONT SIZE="-1">	       </FONT></TD>
1137
-<TD ALIGN="CENTER"><FONT SIZE="-1">	 </FONT></TD>
1138
-<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;bigeasy*foo.fh-furtwangen.de&gt;</FONT></TD>
1139
-</TR>
1140
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1141
-	<TT><A NAME="tex2html232"
1128
+	<TT><A NAME="tex2html227"
1142 1129
   HREF="clamav.cpss.edu.hk">clamav.cpss.edu.hk</A></TT> </FONT></TD>
1143 1130
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 218.189.210.14 </FONT></TD>
1144 1131
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Hong Kong </FONT></TD>
... ...
@@ -1151,7 +1089,7 @@ Database mirrors
1151 1151
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;puiwa*cpss.edu.hk&gt;</FONT></TD>
1152 1152
 </TR>
1153 1153
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1154
-	<TT><A NAME="tex2html233"
1154
+	<TT><A NAME="tex2html228"
1155 1155
   HREF="clamav.irontec.com">clamav.irontec.com</A></TT> </FONT></TD>
1156 1156
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 66.111.55.10 </FONT></TD>
1157 1157
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Tampa, </FONT></TD>
... ...
@@ -1164,7 +1102,7 @@ Database mirrors
1164 1164
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;iker*irontec.com&gt;</FONT></TD>
1165 1165
 </TR>
1166 1166
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1167
-	<TT><A NAME="tex2html234"
1167
+	<TT><A NAME="tex2html229"
1168 1168
   HREF="clamav.mpsnet.com.mx">clamav.mpsnet.com.mx</A></TT> </FONT></TD>
1169 1169
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 200.4.48.8 </FONT></TD>
1170 1170
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Mexico </FONT></TD>
... ...
@@ -1177,7 +1115,7 @@ Database mirrors
1177 1177
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;oarmas*mpsnet.net.mx&gt;</FONT></TD>
1178 1178
 </TR>
1179 1179
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1180
-	<TT><A NAME="tex2html235"
1180
+	<TT><A NAME="tex2html230"
1181 1181
   HREF="idea.sec.dico.unimi.it">idea.sec.dico.unimi.it</A></TT> </FONT></TD>
1182 1182
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 159.149.155.69 </FONT></TD>
1183 1183
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Italy </FONT></TD>
... ...
@@ -1190,7 +1128,7 @@ Database mirrors
1190 1190
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;lorenzo*cert-it.dico.unimi.it&gt;</FONT></TD>
1191 1191
 </TR>
1192 1192
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1193
-	<TT><A NAME="tex2html236"
1193
+	<TT><A NAME="tex2html231"
1194 1194
   HREF="clamav.cs.pu.edu.tw">clamav.cs.pu.edu.tw</A></TT> </FONT></TD>
1195 1195
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 140.128.9.18 </FONT></TD>
1196 1196
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Taiwan </FONT></TD>
... ...
@@ -1203,7 +1141,7 @@ Database mirrors
1203 1203
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;hcchang*cs.pu.edu.tw&gt;</FONT></TD>
1204 1204
 </TR>
1205 1205
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1206
-	<TT><A NAME="tex2html237"
1206
+	<TT><A NAME="tex2html232"
1207 1207
   HREF="clamav.skynet.cz">clamav.skynet.cz</A></TT> </FONT></TD>
1208 1208
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.165.254.12 </FONT></TD>
1209 1209
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Czech Republic </FONT></TD>
... ...
@@ -1216,7 +1154,7 @@ Database mirrors
1216 1216
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;jaroslav.jurasek*skynet.cz&gt;</FONT></TD>
1217 1217
 </TR>
1218 1218
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1219
-	<TT><A NAME="tex2html238"
1219
+	<TT><A NAME="tex2html233"
1220 1220
   HREF="clamav.ubak.gov.tr">clamav.ubak.gov.tr</A></TT> </FONT></TD>
1221 1221
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 212.174.131.5 </FONT></TD>
1222 1222
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Turkey </FONT></TD>
... ...
@@ -1229,7 +1167,7 @@ Database mirrors
1229 1229
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;erdinc*erdinc.info&gt;</FONT></TD>
1230 1230
 </TR>
1231 1231
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1232
-	<TT><A NAME="tex2html239"
1232
+	<TT><A NAME="tex2html234"
1233 1233
   HREF="clamav.ecualinux.com">clamav.ecualinux.com</A></TT> </FONT></TD>
1234 1234
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 66.111.57.40 </FONT></TD>
1235 1235
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Ecuador </FONT></TD>
... ...
@@ -1242,7 +1180,7 @@ Database mirrors
1242 1242
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;info*ecualinux.com&gt;</FONT></TD>
1243 1243
 </TR>
1244 1244
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1245
-	<TT><A NAME="tex2html240"
1245
+	<TT><A NAME="tex2html235"
1246 1246
   HREF="clamav.oc1.mirrors.redwire.net">clamav.oc1.mirrors.redwire.net</A></TT> </FONT></TD>
1247 1247
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 64.186.250.53 </FONT></TD>
1248 1248
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -1255,7 +1193,7 @@ Database mirrors
1255 1255
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mirror*redwire.net&gt;</FONT></TD>
1256 1256
 </TR>
1257 1257
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1258
-	<TT><A NAME="tex2html241"
1258
+	<TT><A NAME="tex2html236"
1259 1259
   HREF="clamav.edpnet.net">clamav.edpnet.net</A></TT> </FONT></TD>
1260 1260
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 212.71.0.71 </FONT></TD>
1261 1261
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Belgium </FONT></TD>
... ...
@@ -1265,11 +1203,11 @@ Database mirrors
1265 1265
 				</FONT></TD>
1266 1266
 <TD ALIGN="CENTER"><FONT SIZE="-1">	      </FONT></TD>
1267 1267
 <TD ALIGN="CENTER"><FONT SIZE="-1">		</FONT></TD>
1268
-<TD ALIGN="CENTER"><FONT SIZE="-1"> <TT><A NAME="tex2html242"
1268
+<TD ALIGN="CENTER"><FONT SIZE="-1"> <TT><A NAME="tex2html237"
1269 1269
   HREF="&lt;d.kerkhofs*edpnet.net&gt;">&lt;d.kerkhofs*edpnet.net&gt;</A></TT></FONT></TD>
1270 1270
 </TR>
1271 1271
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1272
-	<TT><A NAME="tex2html243"
1272
+	<TT><A NAME="tex2html238"
1273 1273
   HREF="clamav.edgescape.com">clamav.edgescape.com</A></TT> </FONT></TD>
1274 1274
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 67.19.5.178 </FONT></TD>
1275 1275
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -1279,11 +1217,11 @@ Database mirrors
1279 1279
 				   </FONT></TD>
1280 1280
 <TD ALIGN="CENTER"><FONT SIZE="-1">		 </FONT></TD>
1281 1281
 <TD ALIGN="CENTER"><FONT SIZE="-1">     </FONT></TD>
1282
-<TD ALIGN="CENTER"><FONT SIZE="-1"> <TT><A NAME="tex2html244"
1282
+<TD ALIGN="CENTER"><FONT SIZE="-1"> <TT><A NAME="tex2html239"
1283 1283
   HREF="&lt;timothy.folks*edgescape.com&gt;">&lt;timothy.folks*edgescape.com&gt;</A></TT></FONT></TD>
1284 1284
 </TR>
1285 1285
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1286
-	<TT><A NAME="tex2html245"
1286
+	<TT><A NAME="tex2html240"
1287 1287
   HREF="clamav.hanbiro.com">clamav.hanbiro.com</A></TT> </FONT></TD>
1288 1288
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 211.234.111.17 </FONT></TD>
1289 1289
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Korea </FONT></TD>
... ...
@@ -1296,7 +1234,7 @@ Database mirrors
1296 1296
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;master*hanbiro.com&gt;</FONT></TD>
1297 1297
 </TR>
1298 1298
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1299
-	<TT><A NAME="tex2html246"
1299
+	<TT><A NAME="tex2html241"
1300 1300
   HREF="clamav.vtu.lt">clamav.vtu.lt</A></TT> </FONT></TD>
1301 1301
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.219.149.170 </FONT></TD>
1302 1302
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Lithuania </FONT></TD>
... ...
@@ -1309,9 +1247,9 @@ Database mirrors
1309 1309
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ejs*ar.vtu.lt&gt;</FONT></TD>
1310 1310
 </TR>
1311 1311
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1312
-	<TT><A NAME="tex2html247"
1312
+	<TT><A NAME="tex2html242"
1313 1313
   HREF="clamav.ftpproxy.org">clamav.ftpproxy.org</A></TT> </FONT></TD>
1314
-<TD ALIGN="CENTER"><FONT SIZE="-1"> 217.110.63.228 </FONT></TD>
1314
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 195.246.234.199 </FONT></TD>
1315 1315
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
1316 1316
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Andreas Schoenberg</FONT></TD>
1317 1317
 </TR>
... ...
@@ -1322,7 +1260,7 @@ Database mirrors
1322 1322
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;asg*ftpproxy.org&gt;</FONT></TD>
1323 1323
 </TR>
1324 1324
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1325
-	<TT><A NAME="tex2html248"
1325
+	<TT><A NAME="tex2html243"
1326 1326
   HREF="clamav.iasi.roedu.net">clamav.iasi.roedu.net</A></TT> </FONT></TD>
1327 1327
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 192.129.4.120 </FONT></TD>
1328 1328
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Romania </FONT></TD>
... ...
@@ -1335,7 +1273,7 @@ Database mirrors
1335 1335
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ftpadmin*iasi.roedu.net&gt;</FONT></TD>
1336 1336
 </TR>
1337 1337
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1338
-	<TT><A NAME="tex2html249"
1338
+	<TT><A NAME="tex2html244"
1339 1339
   HREF="clamav.infonet.ee">clamav.infonet.ee</A></TT> </FONT></TD>
1340 1340
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 212.7.0.71 </FONT></TD>
1341 1341
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Estonia </FONT></TD>
... ...
@@ -1348,9 +1286,9 @@ Database mirrors
1348 1348
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;sbr*infonet.ee&gt;</FONT></TD>
1349 1349
 </TR>
1350 1350
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1351
-	<TT><A NAME="tex2html250"
1351
+	<TT><A NAME="tex2html245"
1352 1352
   HREF="clamav.savework.de">clamav.savework.de</A></TT> </FONT></TD>
1353
-<TD ALIGN="CENTER"><FONT SIZE="-1"> 81.169.151.96 </FONT></TD>
1353
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 85.214.44.186 </FONT></TD>
1354 1354
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
1355 1355
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Kai-H. Weutzing</FONT></TD>
1356 1356
 </TR>
... ...
@@ -1371,7 +1309,7 @@ Database mirrors
1371 1371
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Location </FONT></TD>
1372 1372
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Administrator</FONT></TD>
1373 1373
 </TR>
1374
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html251"
1374
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html246"
1375 1375
   HREF="clamav.citrin.ru">clamav.citrin.ru</A></TT> </FONT></TD>
1376 1376
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.248.60.121 </FONT></TD>
1377 1377
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Russia </FONT></TD>
... ...
@@ -1384,20 +1322,7 @@ Database mirrors
1384 1384
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;citrin*citrin.ru&gt;</FONT></TD>
1385 1385
 </TR>
1386 1386
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1387
-	<TT><A NAME="tex2html252"
1388
-  HREF="clamav.keystreams.com">clamav.keystreams.com</A></TT> </FONT></TD>
1389
-<TD ALIGN="CENTER"><FONT SIZE="-1"> 207.158.28.8 </FONT></TD>
1390
-<TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
1391
-<TD ALIGN="CENTER"><FONT SIZE="-1"> Roman Volf</FONT></TD>
1392
-</TR>
1393
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1394
-				    </FONT></TD>
1395
-<TD ALIGN="CENTER"><FONT SIZE="-1">		   </FONT></TD>
1396
-<TD ALIGN="CENTER"><FONT SIZE="-1">	 </FONT></TD>
1397
-<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;volfman*keystreams.com&gt;</FONT></TD>
1398
-</TR>
1399
-<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1400
-	<TT><A NAME="tex2html253"
1387
+	<TT><A NAME="tex2html247"
1401 1388
   HREF="clamav.paralax.org">clamav.paralax.org</A></TT> </FONT></TD>
1402 1389
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 83.148.101.196 </FONT></TD>
1403 1390
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Bulgaria </FONT></TD>
... ...
@@ -1410,7 +1335,7 @@ Database mirrors
1410 1410
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;soho*paralax.org&gt;</FONT></TD>
1411 1411
 </TR>
1412 1412
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1413
-	<TT><A NAME="tex2html254"
1413
+	<TT><A NAME="tex2html248"
1414 1414
   HREF="clamav.linux.pt">clamav.linux.pt</A></TT> </FONT></TD>
1415 1415
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 194.65.79.153 </FONT></TD>
1416 1416
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Portugal </FONT></TD>
... ...
@@ -1423,7 +1348,7 @@ Database mirrors
1423 1423
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;japc*co.sapo.pt&gt;</FONT></TD>
1424 1424
 </TR>
1425 1425
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1426
-	<TT><A NAME="tex2html255"
1426
+	<TT><A NAME="tex2html249"
1427 1427
   HREF="clamav.westlinks.com">clamav.westlinks.com</A></TT> </FONT></TD>
1428 1428
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 67.43.173.205 </FONT></TD>
1429 1429
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -1436,7 +1361,7 @@ Database mirrors
1436 1436
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;tim*westlinks.com&gt;</FONT></TD>
1437 1437
 </TR>
1438 1438
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1439
-	<TT><A NAME="tex2html256"
1439
+	<TT><A NAME="tex2html250"
1440 1440
   HREF="clamav.liquidweb.com">clamav.liquidweb.com</A></TT> </FONT></TD>
1441 1441
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 209.59.139.38 </FONT></TD>
1442 1442
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
... ...
@@ -1449,7 +1374,7 @@ Database mirrors
1449 1449
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;scollins*liquidweb.com&gt;</FONT></TD>
1450 1450
 </TR>
1451 1451
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1452
-	<TT><A NAME="tex2html257"
1452
+	<TT><A NAME="tex2html251"
1453 1453
   HREF="clamav.xs4all.nl">clamav.xs4all.nl</A></TT> </FONT></TD>
1454 1454
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 194.109.6.74 </FONT></TD>
1455 1455
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Netherlands </FONT></TD>
... ...
@@ -1462,7 +1387,7 @@ Database mirrors
1462 1462
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ericv*xs4all.net&gt;</FONT></TD>
1463 1463
 </TR>
1464 1464
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1465
-        <TT><A NAME="tex2html258"
1465
+        <TT><A NAME="tex2html252"
1466 1466
   HREF="clamav.pinna.cx">clamav.pinna.cx</A></TT> </FONT></TD>
1467 1467
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 69.57.154.46 </FONT></TD>
1468 1468
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Texas, </FONT></TD>
... ...
@@ -1475,7 +1400,7 @@ Database mirrors
1475 1475
 <TD ALIGN="CENTER"><FONT SIZE="-1">	&lt;pinna*pinna.cx&gt;</FONT></TD>
1476 1476
 </TR>
1477 1477
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1478
-	<TT><A NAME="tex2html259"
1478
+	<TT><A NAME="tex2html253"
1479 1479
   HREF="switch.clamav.net">switch.clamav.net</A></TT> </FONT></TD>
1480 1480
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 130.59.10.35 </FONT></TD>
1481 1481
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Switzerland </FONT></TD>
... ...
@@ -1488,7 +1413,7 @@ Database mirrors
1488 1488
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;lenggenhager*switch.ch&gt;</FONT></TD>
1489 1489
 </TR>
1490 1490
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1491
-	<TT><A NAME="tex2html260"
1491
+	<TT><A NAME="tex2html254"
1492 1492
   HREF="clamav.public-internet.co.uk">clamav.public-internet.co.uk</A></TT> </FONT></TD>
1493 1493
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 195.85.245.20 </FONT></TD>
1494 1494
 <TD ALIGN="CENTER"><FONT SIZE="-1"> London, </FONT></TD>
... ...
@@ -1501,7 +1426,7 @@ Database mirrors
1501 1501
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;tom.beard*public-internet.co.uk&gt;</FONT></TD>
1502 1502
 </TR>
1503 1503
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1504
-	<TT><A NAME="tex2html261"
1504
+	<TT><A NAME="tex2html255"
1505 1505
   HREF="clamav.mainloop.se">clamav.mainloop.se</A></TT> </FONT></TD>
1506 1506
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 192.71.58.30 </FONT></TD>
1507 1507
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Sweden </FONT></TD>
... ...
@@ -1514,7 +1439,7 @@ Database mirrors
1514 1514
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;thomas*mainloop.se&gt;</FONT></TD>
1515 1515
 </TR>
1516 1516
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1517
-	<TT><A NAME="tex2html262"
1517
+	<TT><A NAME="tex2html256"
1518 1518
   HREF="clamav.dc.hu">clamav.dc.hu</A></TT> </FONT></TD>
1519 1519
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 195.228.75.149 </FONT></TD>
1520 1520
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Hungary </FONT></TD>
... ...
@@ -1527,7 +1452,7 @@ Database mirrors
1527 1527
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;boldi*mail2004.crysys.hit.bme.hu&gt;</FONT></TD>
1528 1528
 </TR>
1529 1529
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1530
-	<TT><A NAME="tex2html263"
1530
+	<TT><A NAME="tex2html257"
1531 1531
   HREF="clamav.mirror.myebs.de">clamav.mirror.myebs.de</A></TT> </FONT></TD>
1532 1532
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.239.17.68 </FONT></TD>
1533 1533
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1540,7 +1465,7 @@ Database mirrors
1540 1540
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;thomas.schwanhaeuser*aps-web.de&gt;</FONT></TD>
1541 1541
 </TR>
1542 1542
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1543
-	<TT><A NAME="tex2html264"
1543
+	<TT><A NAME="tex2html258"
1544 1544
   HREF="clamav.s-lines.net">clamav.s-lines.net</A></TT> </FONT></TD>
1545 1545
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 61.205.61.201 </FONT></TD>
1546 1546
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Japan </FONT></TD>
... ...
@@ -1553,7 +1478,7 @@ Database mirrors
1553 1553
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;tatsuya*staff.s-lines.net&gt;</FONT></TD>
1554 1554
 </TR>
1555 1555
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1556
-	<TT><A NAME="tex2html265"
1556
+	<TT><A NAME="tex2html259"
1557 1557
   HREF="clamav.mcs.de">clamav.mcs.de</A></TT> </FONT></TD>
1558 1558
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 194.77.146.139 </FONT></TD>
1559 1559
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1566,7 +1491,7 @@ Database mirrors
1566 1566
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;christian.kuehn*mcs.de&gt;</FONT></TD>
1567 1567
 </TR>
1568 1568
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1569
-	<TT><A NAME="tex2html266"
1569
+	<TT><A NAME="tex2html260"
1570 1570
   HREF="clamav.mirror.fizzelpark.com">clamav.mirror.fizzelpark.com</A></TT> </FONT></TD>
1571 1571
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 217.115.136.170 </FONT></TD>
1572 1572
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1579,7 +1504,7 @@ Database mirrors
1579 1579
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;bangert*fizzelpark.com&gt;</FONT></TD>
1580 1580
 </TR>
1581 1581
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1582
-	<TT><A NAME="tex2html267"
1582
+	<TT><A NAME="tex2html261"
1583 1583
   HREF="clamav.talika.eii.us.es">clamav.talika.eii.us.es</A></TT> </FONT></TD>
1584 1584
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 150.214.142.249 </FONT></TD>
1585 1585
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Spain </FONT></TD>
... ...
@@ -1592,7 +1517,7 @@ Database mirrors
1592 1592
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;javier.miguel*talika.eii.us.es&gt;</FONT></TD>
1593 1593
 </TR>
1594 1594
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1595
-	<TT><A NAME="tex2html268"
1595
+	<TT><A NAME="tex2html262"
1596 1596
   HREF="clamav.nara.wide.ad.jp">clamav.nara.wide.ad.jp</A></TT> </FONT></TD>
1597 1597
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 203.178.137.175 </FONT></TD>
1598 1598
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Japan </FONT></TD>
... ...
@@ -1605,7 +1530,7 @@ Database mirrors
1605 1605
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ftp-admin*is.naist.jp&gt;</FONT></TD>
1606 1606
 </TR>
1607 1607
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1608
-	<TT><A NAME="tex2html269"
1608
+	<TT><A NAME="tex2html263"
1609 1609
   HREF="clamavdb.ml-club.jp">clamavdb.ml-club.jp</A></TT> </FONT></TD>
1610 1610
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 219.117.246.122 </FONT></TD>
1611 1611
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Japan </FONT></TD>
... ...
@@ -1618,7 +1543,7 @@ Database mirrors
1618 1618
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;morizono*coop.kadai.ne.jp&gt;</FONT></TD>
1619 1619
 </TR>
1620 1620
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1621
-	<TT><A NAME="tex2html270"
1621
+	<TT><A NAME="tex2html264"
1622 1622
   HREF="clamav.packetstorm.nu">clamav.packetstorm.nu</A></TT> </FONT></TD>
1623 1623
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.222.11.220 </FONT></TD>
1624 1624
 <TD ALIGN="CENTER"><FONT SIZE="-1"> The Netherlands </FONT></TD>
... ...
@@ -1631,7 +1556,7 @@ Database mirrors
1631 1631
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;niek*asbak.coding-slaves.com&gt;</FONT></TD>
1632 1632
 </TR>
1633 1633
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1634
-	<TT><A NAME="tex2html271"
1634
+	<TT><A NAME="tex2html265"
1635 1635
   HREF="clamav.mirror.garr.it">clamav.mirror.garr.it</A></TT> </FONT></TD>
1636 1636
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 193.206.139.37 </FONT></TD>
1637 1637
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Italy </FONT></TD>
... ...
@@ -1644,7 +1569,7 @@ Database mirrors
1644 1644
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;mirror-service*garr.it&gt;</FONT></TD>
1645 1645
 </TR>
1646 1646
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1647
-	<TT><A NAME="tex2html272"
1647
+	<TT><A NAME="tex2html266"
1648 1648
   HREF="clamav.uoc.gr">clamav.uoc.gr</A></TT> </FONT></TD>
1649 1649
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 147.52.3.21 </FONT></TD>
1650 1650
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Greece </FONT></TD>
... ...
@@ -1657,7 +1582,7 @@ Database mirrors
1657 1657
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;kissand*ucnet.uoc.gr&gt;</FONT></TD>
1658 1658
 </TR>
1659 1659
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1660
-	<TT><A NAME="tex2html273"
1660
+	<TT><A NAME="tex2html267"
1661 1661
   HREF="clamav.lug-norderstedt.de">clamav.lug-norderstedt.de</A></TT> </FONT></TD>
1662 1662
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 213.209.100.191 </FONT></TD>
1663 1663
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
... ...
@@ -1670,7 +1595,7 @@ Database mirrors
1670 1670
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;fabian*lug-norderstedt.de&gt;</FONT></TD>
1671 1671
 </TR>
1672 1672
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1673
-	<TT><A NAME="tex2html274"
1673
+	<TT><A NAME="tex2html268"
1674 1674
   HREF="clamav.df.lth.se">clamav.df.lth.se</A></TT> </FONT></TD>
1675 1675
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 194.47.250.218 </FONT></TD>
1676 1676
 <TD ALIGN="CENTER"><FONT SIZE="-1"> Sweden </FONT></TD>
... ...
@@ -1682,6 +1607,125 @@ Database mirrors
1682 1682
 <TD ALIGN="CENTER"><FONT SIZE="-1">	 </FONT></TD>
1683 1683
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;rpa*df.lth.se&gt;</FONT></TD>
1684 1684
 </TR>
1685
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1686
+	<TT><A NAME="tex2html269"
1687
+  HREF="clamav.gueth.net">clamav.gueth.net</A></TT> </FONT></TD>
1688
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 217.160.141.39 </FONT></TD>
1689
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
1690
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Volker Gueth</FONT></TD>
1691
+</TR>
1692
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1693
+			       </FONT></TD>
1694
+<TD ALIGN="CENTER"><FONT SIZE="-1">		</FONT></TD>
1695
+<TD ALIGN="CENTER"><FONT SIZE="-1">	  </FONT></TD>
1696
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;volker*gueth.net&gt;</FONT></TD>
1697
+</TR>
1698
+</TABLE>
1699
+    
1700
+</DIV>
1701
+    <DIV ALIGN="CENTER">
1702
+<FONT SIZE="-1">    </FONT><TABLE CELLPADDING=3 BORDER="1">
1703
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">
1704
+	Mirror </FONT></TD>
1705
+<TD ALIGN="CENTER"><FONT SIZE="-1"> IP </FONT></TD>
1706
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Location </FONT></TD>
1707
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Administrator</FONT></TD>
1708
+</TR>
1709
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html270"
1710
+  HREF="b.clamav.mirror.fizzelpark.com">b.clamav.mirror.fizzelpark.com</A></TT> </FONT></TD>
1711
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 217.115.136.170 </FONT></TD>
1712
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Germany </FONT></TD>
1713
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Thilo Bangert</FONT></TD>
1714
+</TR>
1715
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1716
+					     </FONT></TD>
1717
+<TD ALIGN="CENTER"><FONT SIZE="-1">		       </FONT></TD>
1718
+<TD ALIGN="CENTER"><FONT SIZE="-1">	 </FONT></TD>
1719
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;bangert*fizzelpark.com&gt;</FONT></TD>
1720
+</TR>
1721
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1722
+	<TT><A NAME="tex2html271"
1723
+  HREF="clamav.dg.net.ua">clamav.dg.net.ua</A></TT> </FONT></TD>
1724
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 213.186.196.225 </FONT></TD>
1725
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Ukraine </FONT></TD>
1726
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Oleksandr V. Typlynskyi</FONT></TD>
1727
+</TR>
1728
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1729
+			       </FONT></TD>
1730
+<TD ALIGN="CENTER"><FONT SIZE="-1">		 </FONT></TD>
1731
+<TD ALIGN="CENTER"><FONT SIZE="-1">	   </FONT></TD>
1732
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;clamavdb*dg.net.ua&gt;</FONT></TD>
1733
+</TR>
1734
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1735
+	<TT><A NAME="tex2html272"
1736
+  HREF="clamav.i24horas.com.br">clamav.i24horas.com.br</A></TT> </FONT></TD>
1737
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 200.242.49.19 </FONT></TD>
1738
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Brazil </FONT></TD>
1739
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Renato Lins</FONT></TD>
1740
+</TR>
1741
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1742
+				     </FONT></TD>
1743
+<TD ALIGN="CENTER"><FONT SIZE="-1">		     </FONT></TD>
1744
+<TD ALIGN="CENTER"><FONT SIZE="-1">	      </FONT></TD>
1745
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;renato-clamav*autoservico.com&gt;</FONT></TD>
1746
+</TR>
1747
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1748
+	<TT><A NAME="tex2html273"
1749
+  HREF="clamav.gva.es">clamav.gva.es</A></TT> </FONT></TD>
1750
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 82.159.137.16 </FONT></TD>
1751
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Spain </FONT></TD>
1752
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Jose Antonio Amador</FONT></TD>
1753
+</TR>
1754
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1755
+			    </FONT></TD>
1756
+<TD ALIGN="CENTER"><FONT SIZE="-1">		    </FONT></TD>
1757
+<TD ALIGN="CENTER"><FONT SIZE="-1">	    </FONT></TD>
1758
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;jamador*gva.es&gt;</FONT></TD>
1759
+</TR>
1760
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1761
+	<TT><A NAME="tex2html274"
1762
+  HREF="clamav.industrium.ru">clamav.industrium.ru</A></TT> </FONT></TD>
1763
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 83.222.15.190 </FONT></TD>
1764
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Russia </FONT></TD>
1765
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Igor Shergin</FONT></TD>
1766
+</TR>
1767
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1768
+				   </FONT></TD>
1769
+<TD ALIGN="CENTER"><FONT SIZE="-1">		   </FONT></TD>
1770
+<TD ALIGN="CENTER"><FONT SIZE="-1">	    </FONT></TD>
1771
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;igor*shergin.ru&gt;</FONT></TD>
1772
+</TR>
1773
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1774
+	<TT><A NAME="tex2html275"
1775
+  HREF="clamav.myriadnetwork.com">clamav.myriadnetwork.com</A></TT> </FONT></TD>
1776
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 209.9.235.98 </FONT></TD>
1777
+<TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
1778
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Thomas Petersen</FONT></TD>
1779
+</TR>
1780
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1781
+				       </FONT></TD>
1782
+<TD ALIGN="CENTER"><FONT SIZE="-1">	      </FONT></TD>
1783
+<TD ALIGN="CENTER"><FONT SIZE="-1">	    </FONT></TD>
1784
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;tomp*myriadnetwork.com&gt;</FONT></TD>
1785
+</TR>
1786
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1787
+	<TT><A NAME="tex2html276"
1788
+  HREF="clamav.kazar.org">clamav.kazar.org</A></TT> </FONT></TD>
1789
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 193.218.105.9 </FONT></TD>
1790
+<TD ALIGN="CENTER"><FONT SIZE="-1"> France </FONT></TD>
1791
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Xavier Beaudouin</FONT></TD>
1792
+</TR>
1793
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1794
+			       </FONT></TD>
1795
+<TD ALIGN="CENTER"><FONT SIZE="-1">	       </FONT></TD>
1796
+<TD ALIGN="CENTER"><FONT SIZE="-1">	</FONT></TD>
1797
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;kiwi*kazar.org&gt;</FONT></TD>
1798
+</TR>
1799
+<TR><TD></TD>
1800
+<TD></TD>
1801
+<TD></TD>
1802
+<TD></TD>
1803
+</TR>
1685 1804
 </TABLE>
1686 1805
     
1687 1806
 </DIV>
... ...
@@ -1689,31 +1733,31 @@ Database mirrors
1689 1689
 <P>
1690 1690
 <HR>
1691 1691
 <!--Navigation Panel-->
1692
-<A NAME="tex2html2656"
1692
+<A NAME="tex2html2662"
1693 1693
   HREF="node157.html">
1694 1694
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
1695
-<A NAME="tex2html2652"
1695
+<A NAME="tex2html2658"
1696 1696
   HREF="node155.html">
1697 1697
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
1698
-<A NAME="tex2html2646"
1698
+<A NAME="tex2html2652"
1699 1699
   HREF="node155.html">
1700 1700
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
1701
-<A NAME="tex2html2654"
1701
+<A NAME="tex2html2660"
1702 1702
   HREF="node1.html">
1703 1703
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
1704 1704
 <BR>
1705
-<B> Next:</B> <A NAME="tex2html2657"
1705
+<B> Next:</B> <A NAME="tex2html2663"
1706 1706
   HREF="node157.html">Contributors</A>
1707
-<B> Up:</B> <A NAME="tex2html2653"
1707
+<B> Up:</B> <A NAME="tex2html2659"
1708 1708
   HREF="node155.html">Credits</A>
1709
-<B> Previous:</B> <A NAME="tex2html2647"
1709
+<B> Previous:</B> <A NAME="tex2html2653"
1710 1710
   HREF="node155.html">Credits</A>
1711
- &nbsp <B>  <A NAME="tex2html2655"
1711
+ &nbsp <B>  <A NAME="tex2html2661"
1712 1712
   HREF="node1.html">Contents</A></B> 
1713 1713
 <!--End of Navigation Panel-->
1714 1714
 <ADDRESS>
1715 1715
 Tomasz Kojm
1716
-2006-01-09
1716
+2006-04-29
1717 1717
 </ADDRESS>
1718 1718
 </BODY>
1719 1719
 </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="tex2html2668"
30
+<A NAME="tex2html2674"
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="tex2html2664"
33
+<A NAME="tex2html2670"
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="tex2html2658"
36
+<A NAME="tex2html2664"
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="tex2html2666"
39
+<A NAME="tex2html2672"
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="tex2html2669"
43
+<B> Next:</B> <A NAME="tex2html2675"
44 44
   HREF="node158.html">Donors</A>
45
-<B> Up:</B> <A NAME="tex2html2665"
45
+<B> Up:</B> <A NAME="tex2html2671"
46 46
   HREF="node155.html">Credits</A>
47
-<B> Previous:</B> <A NAME="tex2html2659"
47
+<B> Previous:</B> <A NAME="tex2html2665"
48 48
   HREF="node156.html">Database mirrors</A>
49
- &nbsp <B>  <A NAME="tex2html2667"
49
+ &nbsp <B>  <A NAME="tex2html2673"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -59,6 +59,8 @@ Contributors</A>
59 59
     patches, bug reports, technical support, documentation, good ideas...):
60 60
     
61 61
 <UL>
62
+<LI>Clint Adams &lt;schizo*debian.org&gt;
63
+</LI>
62 64
 <LI>Sergey Y. Afonin &lt;asy*kraft-s.ru&gt;
63 65
 </LI>
64 66
 <LI>Robert Allerstorfer &lt;roal*anet.at&gt;
... ...
@@ -69,6 +71,8 @@ Contributors</A>
69 69
 </LI>
70 70
 <LI>Kamil Andrusz &lt;wizz*mniam.net&gt;
71 71
 </LI>
72
+<LI>Tayfun Asker &lt;tasker*metu.edu.tr&gt;
73
+</LI>
72 74
 <LI>Jean-Edouard Babin &lt;Jeb*jeb.com.fr&gt;
73 75
 </LI>
74 76
 <LI>Marc Baudoin &lt;babafou*babafou.eu.org&gt;
... ...
@@ -81,6 +85,8 @@ Contributors</A>
81 81
 </LI>
82 82
 <LI>Carlo Marcelo Arenas Belon &lt;carenas*sajinet.com.pe&gt;
83 83
 </LI>
84
+<LI>Joseph Benden &lt;joe*thrallingpenguin.com&gt;
85
+</LI>
84 86
 <LI>Hilko Bengen &lt;bengen*vdst-ka.inka.de&gt;
85 87
 </LI>
86 88
 <LI>Hank Beatty &lt;hbeatty*starband.net&gt;
... ...
@@ -93,6 +99,8 @@ Contributors</A>
93 93
 </LI>
94 94
 <LI>Dale Blount &lt;dale*velocity.net&gt;
95 95
 </LI>
96
+<LI>Serge van den Boom &lt;svdb*stack.nl&gt;
97
+</LI>
96 98
 <LI>Oliver Brandmueller &lt;ob*e-Gitt.NET&gt;
97 99
 </LI>
98 100
 <LI>Boguslaw Brandys &lt;brandys*o2.pl&gt;
... ...
@@ -161,6 +169,8 @@ Contributors</A>
161 161
 </LI>
162 162
 <LI>Oden Eriksson &lt;oeriksson*mandrakesoft.com&gt;
163 163
 </LI>
164
+<LI>Daniel Fahlgren &lt;fahlgren*ardendo.se&gt;
165
+</LI>
164 166
 <LI>Andy Fiddaman &lt;af*jeamland.org&gt;
165 167
 </LI>
166 168
 <LI>Edison Figueira Junior &lt;edison*brc.com.br&gt;
... ...
@@ -247,6 +257,8 @@ Contributors</A>
247 247
 </LI>
248 248
 <LI>Jesper Juhl &lt;juhl*dif.dk&gt;
249 249
 </LI>
250
+<LI>Kamil Kaczkowski &lt;kamil*kamil.eisp.pl&gt;
251
+</LI>
250 252
 <LI>Alex Kah &lt;alex*narfonix.com&gt;
251 253
 </LI>
252 254
 <LI>Stefan Kaltenbrunner &lt;stefan*kaltenbrunner.cc&gt;
... ...
@@ -281,6 +293,8 @@ Contributors</A>
281 281
 </LI>
282 282
 <LI>Thomas Lamy &lt;Thomas.Lamy*in-online.net&gt;
283 283
 </LI>
284
+<LI>Stephane Leclerc &lt;sleclerc*aliastec.net&gt;
285
+</LI>
284 286
 <LI>Marty Lee &lt;marty*maui.co.uk&gt;
285 287
 </LI>
286 288
 <LI>Dennis Leeuw &lt;dleeuw*made-it.com&gt;
... ...
@@ -299,6 +313,8 @@ Contributors</A>
299 299
 </LI>
300 300
 <LI>Roger Lucas &lt;roger*planbit.co.uk&gt;
301 301
 </LI>
302
+<LI>David Luyer &lt;david_luyer*pacific.net.au&gt;
303
+</LI>
302 304
 <LI>Richard Lyons &lt;frob-clamav*webcentral.com.au&gt;
303 305
 </LI>
304 306
 <LI>David S. Madole &lt;david*madole.net&gt;
... ...
@@ -313,11 +329,13 @@ Contributors</A>
313 313
 </LI>
314 314
 <LI>Andrey V. Malyshev &lt;amal*krasn.ru&gt;
315 315
 </LI>
316
+<LI>Fukuda Manabu &lt;fukuda*cri-mw.co.jp&gt;
317
+</LI>
316 318
 <LI>Stefan Martig &lt;sm*officeco.ch&gt;
317 319
 </LI>
318 320
 <LI>Alexander Marx &lt;mad-ml*madness.at&gt;
319 321
 </LI>
320
-<LI>Andreas Marx (<TT><A NAME="tex2html275"
322
+<LI>Andreas Marx (<TT><A NAME="tex2html277"
321 323
   HREF="http://www.av-test.org/">http://www.av-test.org/</A></TT>)
322 324
 </LI>
323 325
 <LI>Chris Masters &lt;cmasters*insl.co.uk&gt;
... ...
@@ -368,7 +386,7 @@ Contributors</A>
368 368
 </LI>
369 369
 <LI>Simon Munton &lt;simon*munton.demon.co.uk&gt;
370 370
 </LI>
371
-<LI>Farit Nabiullin <TT><A NAME="tex2html276"
371
+<LI>Farit Nabiullin <TT><A NAME="tex2html278"
372 372
   HREF="http://program.farit.ru/">http://program.farit.ru/</A></TT>
373 373
 </LI>
374 374
 <LI>Nemosoft Unv. &lt;nemosoft*smcc.demon.nl&gt;
... ...
@@ -393,7 +411,7 @@ Contributors</A>
393 393
 </LI>
394 394
 <LI>Martijn van Oosterhout &lt;kleptog*svana.org&gt;
395 395
 </LI>
396
-<LI>OpenAntiVirus Team (<TT><A NAME="tex2html277"
396
+<LI>OpenAntiVirus Team (<TT><A NAME="tex2html279"
397 397
   HREF="http://www.OpenAntiVirus.org/">http://www.OpenAntiVirus.org/</A></TT>)
398 398
 </LI>
399 399
 <LI>Tomasz Papszun &lt;tomek*lodz.tpsa.pl&gt;
... ...
@@ -428,6 +446,8 @@ Contributors</A>
428 428
 </LI>
429 429
 <LI>Ed Ravin &lt;eravin*panix.com&gt;
430 430
 </LI>
431
+<LI>Robert Rebbun &lt;robert*desertsurf.com&gt;
432
+</LI>
431 433
 <LI>Brian A. Reiter &lt;breiter*wolfereiter.com&gt;
432 434
 </LI>
433 435
 <LI>Didi Rieder &lt;adrieder*sbox.tugraz.at&gt;
... ...
@@ -462,12 +482,16 @@ Contributors</A>
462 462
 </LI>
463 463
 <LI>Tuomas Silen &lt;tuomas.silen*nodeta.fi&gt;
464 464
 </LI>
465
+<LI>David F. Skoll &lt;dfs*roaringpenguin.com&gt;
466
+</LI>
465 467
 <LI>Al Smith &lt;ajs+clamav*aeschi.ch.eu.org&gt;
466 468
 </LI>
467 469
 <LI>Sergey Smitienko &lt;hunter*comsys.com.ua&gt;
468 470
 </LI>
469 471
 <LI>Solar Designer &lt;solar*openwall.com&gt;
470 472
 </LI>
473
+<LI>Joerg Sonnenberger &lt;joerg*britannica.bec.de&gt;
474
+</LI>
471 475
 <LI>Kevin Spicer &lt;kevin*kevinspicer.co.uk&gt;
472 476
 </LI>
473 477
 <LI>GertJan Spoelman &lt;cav*gjs.cc&gt;
... ...
@@ -496,6 +520,8 @@ Contributors</A>
496 496
 </LI>
497 497
 <LI>Ryan Thompson &lt;clamav*sasknow.com&gt;
498 498
 </LI>
499
+<LI>Gianluigi Tiesi &lt;sherpya*netfarm.it&gt;
500
+</LI>
499 501
 <LI>Yar Tikhiy &lt;yar*comp.chem.msu.su&gt;
500 502
 </LI>
501 503
 <LI>Andrew Toller &lt;atoller*connectfree.co.uk&gt;
... ...
@@ -536,6 +562,8 @@ Contributors</A>
536 536
 </LI>
537 537
 <LI>Youza Youzovic &lt;youza*post.cz&gt;
538 538
 </LI>
539
+<LI>Anton Yuzhaninov &lt;citrin*rambler-co.ru&gt;
540
+</LI>
539 541
 <LI>Leonid Zeitlin &lt;lz*europe.com&gt;
540 542
 </LI>
541 543
 <LI>ZMan Z. &lt;x86zman*go-a-way.dyndns.org&gt;
... ...
@@ -547,31 +575,31 @@ Contributors</A>
547 547
 <P>
548 548
 <HR>
549 549
 <!--Navigation Panel-->
550
-<A NAME="tex2html2668"
550
+<A NAME="tex2html2674"
551 551
   HREF="node158.html">
552 552
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
553
-<A NAME="tex2html2664"
553
+<A NAME="tex2html2670"
554 554
   HREF="node155.html">
555 555
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
556
-<A NAME="tex2html2658"
556
+<A NAME="tex2html2664"
557 557
   HREF="node156.html">
558 558
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
559
-<A NAME="tex2html2666"
559
+<A NAME="tex2html2672"
560 560
   HREF="node1.html">
561 561
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
562 562
 <BR>
563
-<B> Next:</B> <A NAME="tex2html2669"
563
+<B> Next:</B> <A NAME="tex2html2675"
564 564
   HREF="node158.html">Donors</A>
565
-<B> Up:</B> <A NAME="tex2html2665"
565
+<B> Up:</B> <A NAME="tex2html2671"
566 566
   HREF="node155.html">Credits</A>
567
-<B> Previous:</B> <A NAME="tex2html2659"
567
+<B> Previous:</B> <A NAME="tex2html2665"
568 568
   HREF="node156.html">Database mirrors</A>
569
- &nbsp <B>  <A NAME="tex2html2667"
569
+ &nbsp <B>  <A NAME="tex2html2673"
570 570
   HREF="node1.html">Contents</A></B> 
571 571
 <!--End of Navigation Panel-->
572 572
 <ADDRESS>
573 573
 Tomasz Kojm
574
-2006-01-09
574
+2006-04-29
575 575
 </ADDRESS>
576 576
 </BODY>
577 577
 </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="tex2html2680"
30
+<A NAME="tex2html2686"
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="tex2html2676"
33
+<A NAME="tex2html2682"
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="tex2html2670"
36
+<A NAME="tex2html2676"
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="tex2html2678"
39
+<A NAME="tex2html2684"
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="tex2html2681"
43
+<B> Next:</B> <A NAME="tex2html2687"
44 44
   HREF="node159.html">Graphics</A>
45
-<B> Up:</B> <A NAME="tex2html2677"
45
+<B> Up:</B> <A NAME="tex2html2683"
46 46
   HREF="node155.html">Credits</A>
47
-<B> Previous:</B> <A NAME="tex2html2671"
47
+<B> Previous:</B> <A NAME="tex2html2677"
48 48
   HREF="node157.html">Contributors</A>
49
- &nbsp <B>  <A NAME="tex2html2679"
49
+ &nbsp <B>  <A NAME="tex2html2685"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -58,29 +58,31 @@ 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="tex2html278"
61
+<LI>ActiveIntra.net Inc. (<TT><A NAME="tex2html280"
62 62
   HREF="http://www.activeintra.net/">http://www.activeintra.net/</A></TT>)
63 63
 </LI>
64
-<LI>Advance Healthcare Group (<TT><A NAME="tex2html279"
64
+<LI>Advance Healthcare Group (<TT><A NAME="tex2html281"
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="tex2html280"
67
+<LI>American Computer &amp; Electronic Services Corp. (<TT><A NAME="tex2html282"
68 68
   HREF="http://www.acesnw.com/">http://www.acesnw.com/</A></TT>)
69 69
 </LI>
70 70
 <LI>Anonymous donor from Colorado, US
71 71
 </LI>
72
-<LI>Atlas College (<TT><A NAME="tex2html281"
72
+<LI>Peter Ashman
73
+</LI>
74
+<LI>Atlas College (<TT><A NAME="tex2html283"
73 75
   HREF="http://www.atlascollege.nl/">http://www.atlascollege.nl/</A></TT>)
74 76
 </LI>
75
-<LI>AWD Online (<TT><A NAME="tex2html282"
77
+<LI>AWD Online (<TT><A NAME="tex2html284"
76 78
   HREF="http://www.awdonline.com/">http://www.awdonline.com/</A></TT>)
77 79
 </LI>
78
-<LI>BackupAssist Backup Software (<TT><A NAME="tex2html283"
80
+<LI>BackupAssist Backup Software (<TT><A NAME="tex2html285"
79 81
   HREF="http://www.backupassist.com/">http://www.backupassist.com/</A></TT>)
80 82
 </LI>
81 83
 <LI>Dave Baker
82 84
 </LI>
83
-<LI>Bear and Bear Consulting, Inc. (<TT><A NAME="tex2html284"
85
+<LI>Bear and Bear Consulting, Inc. (<TT><A NAME="tex2html286"
84 86
   HREF="http://www.bear-consulting.com/">http://www.bear-consulting.com/</A></TT>)
85 87
 </LI>
86 88
 <LI>Aaron Begley
... ...
@@ -89,40 +91,46 @@ Donors</A>
89 89
 </LI>
90 90
 <LI>Norman E. Brake, Jr.
91 91
 </LI>
92
-<LI>Canadian Web Hosting (<TT><A NAME="tex2html285"
92
+<LI>By Design (<TT><A NAME="tex2html287"
93
+  HREF="http://www.by-design.net/">http://www.by-design.net/</A></TT>)
94
+</LI>
95
+<LI>Canadian Web Hosting (<TT><A NAME="tex2html288"
93 96
   HREF="http://www.canadianwebhosting.com/">http://www.canadianwebhosting.com/</A></TT>)
94 97
 </LI>
95
-<LI>cedarcreeksoftware.com (<TT><A NAME="tex2html286"
98
+<LI>cedarcreeksoftware.com (<TT><A NAME="tex2html289"
96 99
   HREF="http://www.cedarcreeksoftware.com/">http://www.cedarcreeksoftware.com/</A></TT>)
97 100
 </LI>
98 101
 <LI>Thanos Chatziathanassiou
99 102
 </LI>
100 103
 <LI>Cheahch from Singapore
101 104
 </LI>
102
-<LI>Conexim Australia - business web hosting (<TT><A NAME="tex2html287"
105
+<LI>Conexim Australia - business web hosting (<TT><A NAME="tex2html290"
103 106
   HREF="http://www.conexim.com.au">http://www.conexim.com.au</A></TT>)
104 107
 </LI>
105 108
 <LI>Alan Cook
106 109
 </LI>
107 110
 <LI>Joe Cooper
108 111
 </LI>
109
-<LI>CustomLogic LLC (<TT><A NAME="tex2html288"
112
+<LI>CustomLogic LLC (<TT><A NAME="tex2html291"
110 113
   HREF="http://www.customlogic.com/">http://www.customlogic.com/</A></TT>)
111 114
 </LI>
112 115
 <LI>Ron DeFulio
113 116
 </LI>
114
-<LI>Digirati (<TT><A NAME="tex2html289"
117
+<LI>Digirati (<TT><A NAME="tex2html292"
115 118
   HREF="http://oss.digirati.com.br/">http://oss.digirati.com.br/</A></TT>)
116 119
 </LI>
117
-<LI>Steve Donegan (<TT><A NAME="tex2html290"
120
+<LI>Steve Donegan (<TT><A NAME="tex2html293"
118 121
   HREF="http://www.donegan.org/">http://www.donegan.org/</A></TT>)
119 122
 </LI>
120
-<LI>Dynamic Network Services, Inc (<TT><A NAME="tex2html291"
123
+<LI>Dynamic Network Services, Inc (<TT><A NAME="tex2html294"
121 124
   HREF="http://www.dyndns.org/">http://www.dyndns.org/</A></TT>)
122 125
 </LI>
123 126
 <LI>EAS Enterprises LLC
124 127
 </LI>
125
-<LI>Electric Embers (<TT><A NAME="tex2html292"
128
+<LI>eCoupons.com (<TT><A NAME="tex2html295"
129
+  HREF="http://www.ecoupons.com/">http://www.ecoupons.com/</A></TT>)
130
+</LI>
131
+<LI>Electric Embers (<TT><A NAME="tex2html296"
126 132
   HREF="http://electricembers.net">http://electricembers.net</A></TT>)
127 133
 </LI>
128 134
 <LI>John T. Ellis
... ...
@@ -131,73 +139,78 @@ Donors</A>
131 131
 </LI>
132 132
 <LI>Bernhard Erdmann
133 133
 </LI>
134
-<LI>David Eriksson (<TT><A NAME="tex2html293"
134
+<LI>David Eriksson (<TT><A NAME="tex2html297"
135 135
   HREF="http://www.2good.nu/">http://www.2good.nu/</A></TT>)
136 136
 </LI>
137 137
 <LI>Philip Ershler
138 138
 </LI>
139
-<LI>Explido Software USA Inc. (<TT><A NAME="tex2html294"
139
+<LI>Explido Software USA Inc. (<TT><A NAME="tex2html298"
140 140
   HREF="http://www.explido.us/">http://www.explido.us/</A></TT>)
141 141
 </LI>
142 142
 <LI>David Farrick
143 143
 </LI>
144 144
 <LI>Jim Feldman
145 145
 </LI>
146
-<LI>Petr Ferschmann (<TT><A NAME="tex2html295"
146
+<LI>Petr Ferschmann (<TT><A NAME="tex2html299"
147 147
   HREF="http://petr.ferschmann.cz/">http://petr.ferschmann.cz/</A></TT>)
148 148
 </LI>
149
-<LI>Andries Filmer (<TT><A NAME="tex2html296"
149
+<LI>Andries Filmer (<TT><A NAME="tex2html300"
150 150
   HREF="http://www.netexpo.nl/">http://www.netexpo.nl/</A></TT>)
151 151
 </LI>
152
-<LI>The Free Shopping Cart people (<TT><A NAME="tex2html297"
152
+<LI>The Free Shopping Cart people (<TT><A NAME="tex2html301"
153 153
   HREF="http://www.precisionweb.net/">http://www.precisionweb.net/</A></TT>)
154 154
 </LI>
155 155
 <LI>Paul Freeman
156 156
 </LI>
157 157
 <LI>Jack Fung
158 158
 </LI>
159
+<LI>Stephen Gageby
160
+</LI>
159 161
 <LI>Paolo Galeazzi
160 162
 </LI>
161
-<LI>GANDI (<TT><A NAME="tex2html298"
163
+<LI>GANDI (<TT><A NAME="tex2html302"
162 164
   HREF="http://www.gandi.net/">http://www.gandi.net/</A></TT>)
163 165
 </LI>
164
-<LI>Jeremy Garcia (<TT><A NAME="tex2html299"
166
+<LI>Jeremy Garcia (<TT><A NAME="tex2html303"
165 167
   HREF="http://www.linuxquestions.org/">http://www.linuxquestions.org/</A></TT>)
166 168
 </LI>
167
-<LI>GBC Internet Service Center GmbH (<TT><A NAME="tex2html300"
169
+<LI>GBC Internet Service Center GmbH (<TT><A NAME="tex2html304"
168 170
   HREF="http://www.gbc.net/">http://www.gbc.net/</A></TT>)
169 171
 </LI>
170
-<LI>GCS Tech (<TT><A NAME="tex2html301"
172
+<LI>GCS Tech (<TT><A NAME="tex2html305"
171 173
   HREF="http://www.gcstech.net/">http://www.gcstech.net/</A></TT>)
172 174
 </LI>
173
-<LI>GHRS (<TT><A NAME="tex2html302"
175
+<LI>GHRS (<TT><A NAME="tex2html306"
174 176
   HREF="http://www.ghrshotels.com/">http://www.ghrshotels.com/</A></TT>)
175 177
 </LI>
176 178
 <LI>Todd Goodman
177 179
 </LI>
178
-<LI>Bill Gradwohl (<TT><A NAME="tex2html303"
180
+<LI>Bill Gradwohl (<TT><A NAME="tex2html307"
179 181
   HREF="http://www.ycc.com/">http://www.ycc.com/</A></TT>)
180 182
 </LI>
181 183
 <LI>Grain-of-Salt Consulting
182 184
 </LI>
183 185
 <LI>Terje Gravvold
184 186
 </LI>
185
-<LI>Hart Computer (<TT><A NAME="tex2html304"
187
+<LI>Hart Computer (<TT><A NAME="tex2html308"
186 188
   HREF="http://www.hart.co.jp/">http://www.hart.co.jp/</A></TT>)
187 189
 </LI>
188
-<LI>Hosting Metro LLC (<TT><A NAME="tex2html305"
190
+<LI>Hosting Metro LLC (<TT><A NAME="tex2html309"
189 191
   HREF="http://www.hostingmetro.com/">http://www.hostingmetro.com/</A></TT>)
190 192
 </LI>
191
-<LI>IDEAL Software GmbH (<TT><A NAME="tex2html306"
193
+<LI>IDEAL Software GmbH (<TT><A NAME="tex2html310"
192 194
   HREF="http://www.IdealSoftware.com/">http://www.IdealSoftware.com/</A></TT>)
193 195
 </LI>
194
-<LI>Industry Standard Computers (<TT><A NAME="tex2html307"
196
+<LI>Industry Standard Computers (<TT><A NAME="tex2html311"
195 197
   HREF="http://www.ISCnetwork.com/">http://www.ISCnetwork.com/</A></TT>)
196 198
 </LI>
197
-<LI>Invisik Corporation (<TT><A NAME="tex2html308"
199
+<LI>Interact2Day (<TT><A NAME="tex2html312"
200
+  HREF="http://www.interact2day.com/">http://www.interact2day.com/</A></TT>)
201
+</LI>
202
+<LI>Invisik Corporation (<TT><A NAME="tex2html313"
198 203
   HREF="http://www.invisik.com/">http://www.invisik.com/</A></TT>)
199 204
 </LI>
200
-<LI>itXcel Internet - Domain Registration (<TT><A NAME="tex2html309"
205
+<LI>itXcel Internet - Domain Registration (<TT><A NAME="tex2html314"
201 206
   HREF="http://www.itxcel.com">http://www.itxcel.com</A></TT>)
202 207
 </LI>
203 208
 <LI>Craig Jackson
... ...
@@ -206,36 +219,36 @@ Donors</A>
206 206
 </LI>
207 207
 <LI>Jason Judge
208 208
 </LI>
209
-<LI>Keith (<TT><A NAME="tex2html310"
209
+<LI>Keith (<TT><A NAME="tex2html315"
210 210
   HREF="http://www.textpad.com/">http://www.textpad.com/</A></TT>)
211 211
 </LI>
212
-<LI>Ewald Kicker (<TT><A NAME="tex2html311"
212
+<LI>Ewald Kicker (<TT><A NAME="tex2html316"
213 213
   HREF="http://www.very-clever.com/">http://www.very-clever.com/</A></TT>)
214 214
 </LI>
215 215
 <LI>Brad Koehn
216 216
 </LI>
217
-<LI>Christina Kuratli (<TT><A NAME="tex2html312"
217
+<LI>Christina Kuratli (<TT><A NAME="tex2html317"
218 218
   HREF="http://www.virusprotect.ch/">http://www.virusprotect.ch/</A></TT>)
219 219
 </LI>
220
-<LI>Logic Partners Inc. (<TT><A NAME="tex2html313"
220
+<LI>Logic Partners Inc. (<TT><A NAME="tex2html318"
221 221
   HREF="http://www.logicpartners.com/">http://www.logicpartners.com/</A></TT>)
222 222
 </LI>
223
-<LI>Mark Lotspaih (<TT><A NAME="tex2html314"
223
+<LI>Mark Lotspaih (<TT><A NAME="tex2html319"
224 224
   HREF="http://www.lotcom.org/">http://www.lotcom.org/</A></TT>)
225 225
 </LI>
226
-<LI>Michel Machado (<TT><A NAME="tex2html315"
226
+<LI>Michel Machado (<TT><A NAME="tex2html320"
227 227
   HREF="http://oss.digirati.com.br/">http://oss.digirati.com.br/</A></TT>)
228 228
 </LI>
229 229
 <LI>Olivier Marechal
230 230
 </LI>
231 231
 <LI>Matthew McKenzie
232 232
 </LI>
233
-<LI>Micro Logic Systems (<TT><A NAME="tex2html316"
233
+<LI>Micro Logic Systems (<TT><A NAME="tex2html321"
234 234
   HREF="http://www.mls.nc/">http://www.mls.nc/</A></TT>)
235 235
 </LI>
236 236
 <LI>Midcoast Internet Solutions
237 237
 </LI>
238
-<LI>Mimecast (<TT><A NAME="tex2html317"
238
+<LI>Mimecast (<TT><A NAME="tex2html322"
239 239
   HREF="http://www.mimecast.com/">http://www.mimecast.com/</A></TT>)
240 240
 </LI>
241 241
 <LI>Kazuhiro Miyaji
... ...
@@ -246,133 +259,136 @@ Donors</A>
246 246
 </LI>
247 247
 <LI>Tomas Morkus
248 248
 </LI>
249
-<LI>The Names Database (<TT><A NAME="tex2html318"
249
+<LI>The Names Database (<TT><A NAME="tex2html323"
250 250
   HREF="http://static.namesdatabase.com">http://static.namesdatabase.com</A></TT>)
251 251
 </LI>
252
-<LI>Michael Nolan (<TT><A NAME="tex2html319"
252
+<LI>Michael Nolan (<TT><A NAME="tex2html324"
253 253
   HREF="http://www.michaelnolan.co.uk/">http://www.michaelnolan.co.uk/</A></TT>)
254 254
 </LI>
255 255
 <LI>Jorgen Norgaard
256 256
 </LI>
257
-<LI>Numedeon, Inc. creators of Whyville (<TT><A NAME="tex2html320"
257
+<LI>Numedeon, Inc. creators of Whyville (<TT><A NAME="tex2html325"
258 258
   HREF="http://www.whyville.net/">http://www.whyville.net/</A></TT>)
259 259
 </LI>
260
-<LI>Oneworkspace.com (<TT><A NAME="tex2html321"
260
+<LI>Oneworkspace.com (<TT><A NAME="tex2html326"
261 261
   HREF="http://www.oneworkspace.com/">http://www.oneworkspace.com/</A></TT>)
262 262
 </LI>
263
-<LI>Origin Solutions (<TT><A NAME="tex2html322"
263
+<LI>Origin Solutions (<TT><A NAME="tex2html327"
264 264
   HREF="http://www.originsolutions.com.au/">http://www.originsolutions.com.au/</A></TT>)
265 265
 </LI>
266
-<LI>outermedia GmbH (<TT><A NAME="tex2html323"
266
+<LI>outermedia GmbH (<TT><A NAME="tex2html328"
267 267
   HREF="http://www.outermedia.de/">http://www.outermedia.de/</A></TT>)
268 268
 </LI>
269
-<LI>Kevin Pang (<TT><A NAME="tex2html324"
269
+<LI>Kevin Pang (<TT><A NAME="tex2html329"
270 270
   HREF="http://www.freebsdblog.org/">http://www.freebsdblog.org/</A></TT>)
271 271
 </LI>
272 272
 <LI>Alexander Panzhin
273 273
 </LI>
274
-<LI>Passageway Communications (<TT><A NAME="tex2html325"
274
+<LI>Passageway Communications (<TT><A NAME="tex2html330"
275 275
   HREF="http://www.passageway.com">http://www.passageway.com</A></TT>)
276 276
 </LI>
277
-<LI>Dan Pelleg (<TT><A NAME="tex2html326"
277
+<LI>Dan Pelleg (<TT><A NAME="tex2html331"
278 278
   HREF="http://www.libagent.org/">http://www.libagent.org/</A></TT>)
279 279
 </LI>
280 280
 <LI>Thodoris Pitikaris
281 281
 </LI>
282 282
 <LI>Paul Rantin
283 283
 </LI>
284
-<LI>Thomas J. Raef (<TT><A NAME="tex2html327"
284
+<LI>Thomas J. Raef (<TT><A NAME="tex2html332"
285 285
   HREF="http://www.ebasedsecurity.com">http://www.ebasedsecurity.com</A></TT>)
286 286
 </LI>
287
-<LI>Luke Reeves (<TT><A NAME="tex2html328"
287
+<LI>Luke Reeves (<TT><A NAME="tex2html333"
288 288
   HREF="http://www.neuro-tech.net/">http://www.neuro-tech.net/</A></TT>)
289 289
 </LI>
290
-<LI>RHX (<TT><A NAME="tex2html329"
290
+<LI>RHX (<TT><A NAME="tex2html334"
291 291
   HREF="http://www.rhx.it/">http://www.rhx.it/</A></TT>)
292 292
 </LI>
293 293
 <LI>Stefano Rizzetto
294 294
 </LI>
295
-<LI>Roaring Penguin Software Inc. (<TT><A NAME="tex2html330"
295
+<LI>Roaring Penguin Software Inc. (<TT><A NAME="tex2html335"
296 296
   HREF="http://www.roaringpenguin.com/">http://www.roaringpenguin.com/</A></TT>)
297 297
 </LI>
298 298
 <LI>Luke Rosenthal
299 299
 </LI>
300
-<LI>School of Engineering, University of Pennsylvania (<TT><A NAME="tex2html331"
300
+<LI>School of Engineering, University of Pennsylvania (<TT><A NAME="tex2html336"
301 301
   HREF="http://www.seas.upenn.edu/">http://www.seas.upenn.edu/</A></TT>)
302 302
 </LI>
303 303
 <LI>Tim Scoff
304 304
 </LI>
305
-<LI>Seattle Server (<TT><A NAME="tex2html332"
305
+<LI>Seattle Server (<TT><A NAME="tex2html337"
306 306
   HREF="http://www.seattleserver.com/">http://www.seattleserver.com/</A></TT>)
307 307
 </LI>
308
-<LI>Software Workshop Inc (<TT><A NAME="tex2html333"
308
+<LI>Software Workshop Inc (<TT><A NAME="tex2html338"
309 309
   HREF="http://www.softwareworkshop.com/">http://www.softwareworkshop.com/</A></TT>)
310 310
 </LI>
311
-<LI>Solutions In A Box (<TT><A NAME="tex2html334"
311
+<LI>Solutions In A Box (<TT><A NAME="tex2html339"
312 312
   HREF="http://www.siab.com.au/">http://www.siab.com.au/</A></TT>)
313 313
 </LI>
314 314
 <LI>Stephane Rault
315 315
 </LI>
316
-<LI>SearchMain (<TT><A NAME="tex2html335"
316
+<LI>SearchMain (<TT><A NAME="tex2html340"
317 317
   HREF="http://www.searchmain.com/">http://www.searchmain.com/</A></TT>)
318 318
 </LI>
319 319
 <LI>Olivier Silber
320 320
 </LI>
321
-<LI>Fernando Augusto Medeiros Silva (<TT><A NAME="tex2html336"
321
+<LI>Fernando Augusto Medeiros Silva (<TT><A NAME="tex2html341"
322 322
   HREF="http://www.linuxplace.com.br/">http://www.linuxplace.com.br/</A></TT>)
323 323
 </LI>
324
-<LI>StarBand (<TT><A NAME="tex2html337"
324
+<LI>Sollentuna Fria Gymnasium, Sweden (<TT><A NAME="tex2html342"
325
+  HREF="http://www.sfg.se/">http://www.sfg.se/</A></TT>)
326
+</LI>
327
+<LI>StarBand (<TT><A NAME="tex2html343"
325 328
   HREF="http://www.starband.com/">http://www.starband.com/</A></TT>)
326 329
 </LI>
327 330
 <LI>Stroke of Color, Inc.
328 331
 </LI>
329
-<LI>Synchro Sistemas de Informacao (<TT><A NAME="tex2html338"
332
+<LI>Synchro Sistemas de Informacao (<TT><A NAME="tex2html344"
330 333
   HREF="http://synchro.com.br/">http://synchro.com.br/</A></TT>)
331 334
 </LI>
332 335
 <LI>Sahil Tandon
333 336
 </LI>
334
-<LI>The Spamex Disposable Email Address Service (<TT><A NAME="tex2html339"
337
+<LI>The Spamex Disposable Email Address Service (<TT><A NAME="tex2html345"
335 338
   HREF="http://www.spamex.com">http://www.spamex.com</A></TT>)
336 339
 </LI>
337 340
 <LI>Brad Tarver
338 341
 </LI>
339
-<LI>TGT Tampermeier &amp; Grill Steuerberatungs- und Wirtschaftstreuhand OEG (<TT><A NAME="tex2html340"
342
+<LI>TGT Tampermeier &amp; Grill Steuerberatungs- und Wirtschaftstreuhand OEG (<TT><A NAME="tex2html346"
340 343
   HREF="http://www.tgt.at/">http://www.tgt.at/</A></TT>)
341 344
 </LI>
342 345
 <LI>Per Reedtz Thomsen
343 346
 </LI>
344 347
 <LI>William Tisdale
345 348
 </LI>
346
-<LI>Up Time Technology (<TT><A NAME="tex2html341"
349
+<LI>Up Time Technology (<TT><A NAME="tex2html347"
347 350
   HREF="http://www.uptimetech.com/">http://www.uptimetech.com/</A></TT>)
348 351
 </LI>
349 352
 <LI>Ulfi
350 353
 </LI>
351
-<LI>Jeremy Vanderburg (<TT><A NAME="tex2html342"
354
+<LI>Jeremy Vanderburg (<TT><A NAME="tex2html348"
352 355
   HREF="http://www.jeremytech.com/">http://www.jeremytech.com/</A></TT>)
353 356
 </LI>
354
-<LI>Web.arbyte - Online-Marketing (<TT><A NAME="tex2html343"
357
+<LI>Web.arbyte - Online-Marketing (<TT><A NAME="tex2html349"
355 358
   HREF="http://www.webarbyte.de/">http://www.webarbyte.de/</A></TT>)
356 359
 </LI>
357
-<LI>Webzone Srl (<TT><A NAME="tex2html344"
360
+<LI>Webzone Srl (<TT><A NAME="tex2html350"
358 361
   HREF="http://www.webzone.it/">http://www.webzone.it/</A></TT>)
359 362
 </LI>
360
-<LI>Markus Welsch (<TT><A NAME="tex2html345"
363
+<LI>Markus Welsch (<TT><A NAME="tex2html351"
361 364
   HREF="http://www.linux-corner.net/">http://www.linux-corner.net/</A></TT>)
362 365
 </LI>
363
-<LI>Julia White (<TT><A NAME="tex2html346"
366
+<LI>Julia White (<TT><A NAME="tex2html352"
364 367
   HREF="http://www.convert-tools.com/">http://www.convert-tools.com/</A></TT>)
365 368
 </LI>
366 369
 <LI>Nicklaus Wicker
367 370
 </LI>
368
-<LI>David Williams (<TT><A NAME="tex2html347"
371
+<LI>David Williams (<TT><A NAME="tex2html353"
369 372
   HREF="http://kayakero.net/">http://kayakero.net/</A></TT>)
370 373
 </LI>
371 374
 <LI>Glenn R Williams
372 375
 </LI>
373 376
 <LI>Kelly Williams
374 377
 </LI>
375
-<LI>Zimbra open-source collaboration suite (<TT><A NAME="tex2html348"
378
+<LI>Zimbra open-source collaboration suite (<TT><A NAME="tex2html354"
376 379
   HREF="http://www.zimbra.com/">http://www.zimbra.com/</A></TT>)
377 380
     
378 381
 </LI>
... ...
@@ -381,31 +397,31 @@ Donors</A>
381 381
 <P>
382 382
 <HR>
383 383
 <!--Navigation Panel-->
384
-<A NAME="tex2html2680"
384
+<A NAME="tex2html2686"
385 385
   HREF="node159.html">
386 386
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
387
-<A NAME="tex2html2676"
387
+<A NAME="tex2html2682"
388 388
   HREF="node155.html">
389 389
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
390
-<A NAME="tex2html2670"
390
+<A NAME="tex2html2676"
391 391
   HREF="node157.html">
392 392
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
393
-<A NAME="tex2html2678"
393
+<A NAME="tex2html2684"
394 394
   HREF="node1.html">
395 395
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
396 396
 <BR>
397
-<B> Next:</B> <A NAME="tex2html2681"
397
+<B> Next:</B> <A NAME="tex2html2687"
398 398
   HREF="node159.html">Graphics</A>
399
-<B> Up:</B> <A NAME="tex2html2677"
399
+<B> Up:</B> <A NAME="tex2html2683"
400 400
   HREF="node155.html">Credits</A>
401
-<B> Previous:</B> <A NAME="tex2html2671"
401
+<B> Previous:</B> <A NAME="tex2html2677"
402 402
   HREF="node157.html">Contributors</A>
403
- &nbsp <B>  <A NAME="tex2html2679"
403
+ &nbsp <B>  <A NAME="tex2html2685"
404 404
   HREF="node1.html">Contents</A></B> 
405 405
 <!--End of Navigation Panel-->
406 406
 <ADDRESS>
407 407
 Tomasz Kojm
408
-2006-01-09
408
+2006-04-29
409 409
 </ADDRESS>
410 410
 </BODY>
411 411
 </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="tex2html2692"
30
+<A NAME="tex2html2698"
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="tex2html2688"
33
+<A NAME="tex2html2694"
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="tex2html2682"
36
+<A NAME="tex2html2688"
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="tex2html2690"
39
+<A NAME="tex2html2696"
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="tex2html2693"
43
+<B> Next:</B> <A NAME="tex2html2699"
44 44
   HREF="node160.html">OpenAntiVirus</A>
45
-<B> Up:</B> <A NAME="tex2html2689"
45
+<B> Up:</B> <A NAME="tex2html2695"
46 46
   HREF="node155.html">Credits</A>
47
-<B> Previous:</B> <A NAME="tex2html2683"
47
+<B> Previous:</B> <A NAME="tex2html2689"
48 48
   HREF="node158.html">Donors</A>
49
- &nbsp <B>  <A NAME="tex2html2691"
49
+ &nbsp <B>  <A NAME="tex2html2697"
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="tex2html349"
59
+    graphics are Mia Kalenius and Sergei Pronin &lt;sp*finndesign.fi&gt;    from Finndesign <TT><A NAME="tex2html355"
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-01-09
65
+2006-04-29
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="tex2html759"
30
+<A NAME="tex2html765"
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="tex2html755"
33
+<A NAME="tex2html761"
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="tex2html749"
36
+<A NAME="tex2html755"
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="tex2html757"
39
+<A NAME="tex2html763"
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="tex2html760"
43
+<B> Next:</B> <A NAME="tex2html766"
44 44
   HREF="node17.html">clamd</A>
45
-<B> Up:</B> <A NAME="tex2html756"
45
+<B> Up:</B> <A NAME="tex2html762"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html750"
47
+<B> Previous:</B> <A NAME="tex2html756"
48 48
   HREF="node15.html">Compilation with clamav-milter enabled</A>
49
- &nbsp <B>  <A NAME="tex2html758"
49
+ &nbsp <B>  <A NAME="tex2html764"
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="tex2html761"
65
+<LI><A NAME="tex2html767"
66 66
   HREF="node17.html">clamd</A>
67 67
 <UL>
68
-<LI><A NAME="tex2html762"
68
+<LI><A NAME="tex2html768"
69 69
   HREF="node18.html">On-access scanning</A>
70 70
 </UL>
71
-<LI><A NAME="tex2html763"
71
+<LI><A NAME="tex2html769"
72 72
   HREF="node19.html">clamav-milter</A>
73
-<LI><A NAME="tex2html764"
73
+<LI><A NAME="tex2html770"
74 74
   HREF="node20.html">Testing</A>
75
-<LI><A NAME="tex2html765"
75
+<LI><A NAME="tex2html771"
76 76
   HREF="node21.html">Setting up auto-updating</A>
77
-<LI><A NAME="tex2html766"
77
+<LI><A NAME="tex2html772"
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-01-09
84
+2006-04-29
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="tex2html2702"
29
+<A NAME="tex2html2708"
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="tex2html2698"
32
+<A NAME="tex2html2704"
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="tex2html2694"
35
+<A NAME="tex2html2700"
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="tex2html2700"
38
+<A NAME="tex2html2706"
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="tex2html2703"
42
+<B> Next:</B> <A NAME="tex2html2709"
43 43
   HREF="node161.html">Authors</A>
44
-<B> Up:</B> <A NAME="tex2html2699"
44
+<B> Up:</B> <A NAME="tex2html2705"
45 45
   HREF="node155.html">Credits</A>
46
-<B> Previous:</B> <A NAME="tex2html2695"
46
+<B> Previous:</B> <A NAME="tex2html2701"
47 47
   HREF="node159.html">Graphics</A>
48
- &nbsp <B>  <A NAME="tex2html2701"
48
+ &nbsp <B>  <A NAME="tex2html2707"
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="tex2html350"
58
+<BR>    <TT><A NAME="tex2html356"
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-01-09
64
+2006-04-29
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="tex2html2714"
30
+<A NAME="tex2html2720"
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="tex2html2710"
33
+<A NAME="tex2html2716"
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="tex2html2704"
36
+<A NAME="tex2html2710"
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="tex2html2712"
39
+<A NAME="tex2html2718"
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="tex2html2715"
43
+<B> Next:</B> <A NAME="tex2html2721"
44 44
   HREF="node162.html">About this document ...</A>
45
-<B> Up:</B> <A NAME="tex2html2711"
45
+<B> Up:</B> <A NAME="tex2html2717"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html2705"
47
+<B> Previous:</B> <A NAME="tex2html2711"
48 48
   HREF="node160.html">OpenAntiVirus</A>
49
- &nbsp <B>  <A NAME="tex2html2713"
49
+ &nbsp <B>  <A NAME="tex2html2719"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -158,7 +158,7 @@ Role: coder, virus database maintainer
158 158
 <BR><HR>
159 159
 <ADDRESS>
160 160
 Tomasz Kojm
161
-2006-01-09
161
+2006-04-29
162 162
 </ADDRESS>
163 163
 </BODY>
164 164
 </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="tex2html2720"
29
+<A NAME="tex2html2726"
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="tex2html2716"
32
+<A NAME="tex2html2722"
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="tex2html2722"
35
+<A NAME="tex2html2728"
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="tex2html2721"
39
+<B> Up:</B> <A NAME="tex2html2727"
40 40
   HREF="clamdoc.html">clamdoc</A>
41
-<B> Previous:</B> <A NAME="tex2html2717"
41
+<B> Previous:</B> <A NAME="tex2html2723"
42 42
   HREF="node161.html">Authors</A>
43
- &nbsp <B>  <A NAME="tex2html2723"
43
+ &nbsp <B>  <A NAME="tex2html2729"
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-01-09
67
+The translation was initiated by Tomasz Kojm on 2006-04-29
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2006-01-09
71
+2006-04-29
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="tex2html777"
30
+<A NAME="tex2html783"
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="tex2html773"
33
+<A NAME="tex2html779"
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="tex2html767"
36
+<A NAME="tex2html773"
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="tex2html775"
39
+<A NAME="tex2html781"
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="tex2html778"
43
+<B> Next:</B> <A NAME="tex2html784"
44 44
   HREF="node18.html">On-access scanning</A>
45
-<B> Up:</B> <A NAME="tex2html774"
45
+<B> Up:</B> <A NAME="tex2html780"
46 46
   HREF="node16.html">Configuration</A>
47
-<B> Previous:</B> <A NAME="tex2html768"
47
+<B> Previous:</B> <A NAME="tex2html774"
48 48
   HREF="node16.html">Configuration</A>
49
- &nbsp <B>  <A NAME="tex2html776"
49
+ &nbsp <B>  <A NAME="tex2html782"
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="tex2html779"
75
+<LI><A NAME="tex2html785"
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-01-09
82
+2006-04-29
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="tex2html788"
29
+<A NAME="tex2html794"
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="tex2html784"
32
+<A NAME="tex2html790"
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="tex2html780"
35
+<A NAME="tex2html786"
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="tex2html786"
38
+<A NAME="tex2html792"
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="tex2html789"
42
+<B> Next:</B> <A NAME="tex2html795"
43 43
   HREF="node19.html">clamav-milter</A>
44
-<B> Up:</B> <A NAME="tex2html785"
44
+<B> Up:</B> <A NAME="tex2html791"
45 45
   HREF="node17.html">clamd</A>
46
-<B> Previous:</B> <A NAME="tex2html781"
46
+<B> Previous:</B> <A NAME="tex2html787"
47 47
   HREF="node17.html">clamd</A>
48
- &nbsp <B>  <A NAME="tex2html787"
48
+ &nbsp <B>  <A NAME="tex2html793"
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-01-09
94
+2006-04-29
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="tex2html800"
30
+<A NAME="tex2html806"
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="tex2html796"
33
+<A NAME="tex2html802"
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="tex2html790"
36
+<A NAME="tex2html796"
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="tex2html798"
39
+<A NAME="tex2html804"
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="tex2html801"
43
+<B> Next:</B> <A NAME="tex2html807"
44 44
   HREF="node20.html">Testing</A>
45
-<B> Up:</B> <A NAME="tex2html797"
45
+<B> Up:</B> <A NAME="tex2html803"
46 46
   HREF="node16.html">Configuration</A>
47
-<B> Previous:</B> <A NAME="tex2html791"
47
+<B> Previous:</B> <A NAME="tex2html797"
48 48
   HREF="node18.html">On-access scanning</A>
49
- &nbsp <B>  <A NAME="tex2html799"
49
+ &nbsp <B>  <A NAME="tex2html805"
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-01-09
84
+2006-04-29
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="tex2html586"
30
+<A NAME="tex2html592"
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="tex2html582"
33
+<A NAME="tex2html588"
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="tex2html576"
36
+<A NAME="tex2html582"
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="tex2html584"
39
+<A NAME="tex2html590"
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="tex2html587"
43
+<B> Next:</B> <A NAME="tex2html593"
44 44
   HREF="node3.html">Features</A>
45
-<B> Up:</B> <A NAME="tex2html583"
45
+<B> Up:</B> <A NAME="tex2html589"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html577"
47
+<B> Previous:</B> <A NAME="tex2html583"
48 48
   HREF="node1.html">Contents</A>
49
- &nbsp <B>  <A NAME="tex2html585"
49
+ &nbsp <B>  <A NAME="tex2html591"
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="tex2html588"
72
+<LI><A NAME="tex2html594"
73 73
   HREF="node3.html">Features</A>
74
-<LI><A NAME="tex2html589"
74
+<LI><A NAME="tex2html595"
75 75
   HREF="node4.html">Mailing lists</A>
76
-<LI><A NAME="tex2html590"
76
+<LI><A NAME="tex2html596"
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-01-09
83
+2006-04-29
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="tex2html812"
30
+<A NAME="tex2html818"
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="tex2html808"
33
+<A NAME="tex2html814"
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="tex2html802"
36
+<A NAME="tex2html808"
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="tex2html810"
39
+<A NAME="tex2html816"
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="tex2html813"
43
+<B> Next:</B> <A NAME="tex2html819"
44 44
   HREF="node21.html">Setting up auto-updating</A>
45
-<B> Up:</B> <A NAME="tex2html809"
45
+<B> Up:</B> <A NAME="tex2html815"
46 46
   HREF="node16.html">Configuration</A>
47
-<B> Previous:</B> <A NAME="tex2html803"
47
+<B> Previous:</B> <A NAME="tex2html809"
48 48
   HREF="node19.html">clamav-milter</A>
49
- &nbsp <B>  <A NAME="tex2html811"
49
+ &nbsp <B>  <A NAME="tex2html817"
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-01-09
78
+2006-04-29
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="tex2html824"
30
+<A NAME="tex2html830"
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="tex2html820"
33
+<A NAME="tex2html826"
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="tex2html814"
36
+<A NAME="tex2html820"
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="tex2html822"
39
+<A NAME="tex2html828"
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="tex2html825"
43
+<B> Next:</B> <A NAME="tex2html831"
44 44
   HREF="node22.html">Closest mirrors</A>
45
-<B> Up:</B> <A NAME="tex2html821"
45
+<B> Up:</B> <A NAME="tex2html827"
46 46
   HREF="node16.html">Configuration</A>
47
-<B> Previous:</B> <A NAME="tex2html815"
47
+<B> Previous:</B> <A NAME="tex2html821"
48 48
   HREF="node20.html">Testing</A>
49
- &nbsp <B>  <A NAME="tex2html823"
49
+ &nbsp <B>  <A NAME="tex2html829"
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="tex2html824"
112
+<A NAME="tex2html830"
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="tex2html820"
115
+<A NAME="tex2html826"
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="tex2html814"
118
+<A NAME="tex2html820"
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="tex2html822"
121
+<A NAME="tex2html828"
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="tex2html825"
125
+<B> Next:</B> <A NAME="tex2html831"
126 126
   HREF="node22.html">Closest mirrors</A>
127
-<B> Up:</B> <A NAME="tex2html821"
127
+<B> Up:</B> <A NAME="tex2html827"
128 128
   HREF="node16.html">Configuration</A>
129
-<B> Previous:</B> <A NAME="tex2html815"
129
+<B> Previous:</B> <A NAME="tex2html821"
130 130
   HREF="node20.html">Testing</A>
131
- &nbsp <B>  <A NAME="tex2html823"
131
+ &nbsp <B>  <A NAME="tex2html829"
132 132
   HREF="node1.html">Contents</A></B> 
133 133
 <!--End of Navigation Panel-->
134 134
 <ADDRESS>
135 135
 Tomasz Kojm
136
-2006-01-09
136
+2006-04-29
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="tex2html834"
29
+<A NAME="tex2html840"
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="tex2html830"
32
+<A NAME="tex2html836"
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="tex2html826"
35
+<A NAME="tex2html832"
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="tex2html832"
38
+<A NAME="tex2html838"
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="tex2html835"
42
+<B> Next:</B> <A NAME="tex2html841"
43 43
   HREF="node23.html">Usage</A>
44
-<B> Up:</B> <A NAME="tex2html831"
44
+<B> Up:</B> <A NAME="tex2html837"
45 45
   HREF="node16.html">Configuration</A>
46
-<B> Previous:</B> <A NAME="tex2html827"
46
+<B> Previous:</B> <A NAME="tex2html833"
47 47
   HREF="node21.html">Setting up auto-updating</A>
48
- &nbsp <B>  <A NAME="tex2html833"
48
+ &nbsp <B>  <A NAME="tex2html839"
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-01-09
80
+2006-04-29
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="tex2html846"
30
+<A NAME="tex2html852"
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="tex2html842"
33
+<A NAME="tex2html848"
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="tex2html836"
36
+<A NAME="tex2html842"
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="tex2html844"
39
+<A NAME="tex2html850"
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="tex2html847"
43
+<B> Next:</B> <A NAME="tex2html853"
44 44
   HREF="node24.html">Clam daemon</A>
45
-<B> Up:</B> <A NAME="tex2html843"
45
+<B> Up:</B> <A NAME="tex2html849"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html837"
47
+<B> Previous:</B> <A NAME="tex2html843"
48 48
   HREF="node22.html">Closest mirrors</A>
49
- &nbsp <B>  <A NAME="tex2html845"
49
+ &nbsp <B>  <A NAME="tex2html851"
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="tex2html848"
65
+<LI><A NAME="tex2html854"
66 66
   HREF="node24.html">Clam daemon</A>
67
-<LI><A NAME="tex2html849"
67
+<LI><A NAME="tex2html855"
68 68
   HREF="node25.html">Clam<B>d</B>scan</A>
69
-<LI><A NAME="tex2html850"
69
+<LI><A NAME="tex2html856"
70 70
   HREF="node26.html">Clamuko</A>
71
-<LI><A NAME="tex2html851"
71
+<LI><A NAME="tex2html857"
72 72
   HREF="node27.html">Output format</A>
73 73
 <UL>
74
-<LI><A NAME="tex2html852"
74
+<LI><A NAME="tex2html858"
75 75
   HREF="node28.html">clamscan</A>
76
-<LI><A NAME="tex2html853"
76
+<LI><A NAME="tex2html859"
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-01-09
83
+2006-04-29
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="tex2html864"
30
+<A NAME="tex2html870"
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="tex2html860"
33
+<A NAME="tex2html866"
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="tex2html854"
36
+<A NAME="tex2html860"
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="tex2html862"
39
+<A NAME="tex2html868"
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="tex2html865"
43
+<B> Next:</B> <A NAME="tex2html871"
44 44
   HREF="node25.html">Clamdscan</A>
45
-<B> Up:</B> <A NAME="tex2html861"
45
+<B> Up:</B> <A NAME="tex2html867"
46 46
   HREF="node23.html">Usage</A>
47
-<B> Previous:</B> <A NAME="tex2html855"
47
+<B> Previous:</B> <A NAME="tex2html861"
48 48
   HREF="node23.html">Usage</A>
49
- &nbsp <B>  <A NAME="tex2html863"
49
+ &nbsp <B>  <A NAME="tex2html869"
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="tex2html864"
129
+<A NAME="tex2html870"
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="tex2html860"
132
+<A NAME="tex2html866"
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="tex2html854"
135
+<A NAME="tex2html860"
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="tex2html862"
138
+<A NAME="tex2html868"
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="tex2html865"
142
+<B> Next:</B> <A NAME="tex2html871"
143 143
   HREF="node25.html">Clamdscan</A>
144
-<B> Up:</B> <A NAME="tex2html861"
144
+<B> Up:</B> <A NAME="tex2html867"
145 145
   HREF="node23.html">Usage</A>
146
-<B> Previous:</B> <A NAME="tex2html855"
146
+<B> Previous:</B> <A NAME="tex2html861"
147 147
   HREF="node23.html">Usage</A>
148
- &nbsp <B>  <A NAME="tex2html863"
148
+ &nbsp <B>  <A NAME="tex2html869"
149 149
   HREF="node1.html">Contents</A></B> 
150 150
 <!--End of Navigation Panel-->
151 151
 <ADDRESS>
152 152
 Tomasz Kojm
153
-2006-01-09
153
+2006-04-29
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="tex2html876"
30
+<A NAME="tex2html882"
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="tex2html872"
33
+<A NAME="tex2html878"
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="tex2html866"
36
+<A NAME="tex2html872"
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="tex2html874"
39
+<A NAME="tex2html880"
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="tex2html877"
43
+<B> Next:</B> <A NAME="tex2html883"
44 44
   HREF="node26.html">Clamuko</A>
45
-<B> Up:</B> <A NAME="tex2html873"
45
+<B> Up:</B> <A NAME="tex2html879"
46 46
   HREF="node23.html">Usage</A>
47
-<B> Previous:</B> <A NAME="tex2html867"
47
+<B> Previous:</B> <A NAME="tex2html873"
48 48
   HREF="node24.html">Clam daemon</A>
49
- &nbsp <B>  <A NAME="tex2html875"
49
+ &nbsp <B>  <A NAME="tex2html881"
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-01-09
79
+2006-04-29
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="tex2html888"
30
+<A NAME="tex2html894"
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="tex2html884"
33
+<A NAME="tex2html890"
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="tex2html878"
36
+<A NAME="tex2html884"
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="tex2html886"
39
+<A NAME="tex2html892"
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="tex2html889"
43
+<B> Next:</B> <A NAME="tex2html895"
44 44
   HREF="node27.html">Output format</A>
45
-<B> Up:</B> <A NAME="tex2html885"
45
+<B> Up:</B> <A NAME="tex2html891"
46 46
   HREF="node23.html">Usage</A>
47
-<B> Previous:</B> <A NAME="tex2html879"
47
+<B> Previous:</B> <A NAME="tex2html885"
48 48
   HREF="node25.html">Clamdscan</A>
49
- &nbsp <B>  <A NAME="tex2html887"
49
+ &nbsp <B>  <A NAME="tex2html893"
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-01-09
96
+2006-04-29
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="tex2html898"
29
+<A NAME="tex2html904"
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="tex2html894"
32
+<A NAME="tex2html900"
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="tex2html890"
35
+<A NAME="tex2html896"
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="tex2html896"
38
+<A NAME="tex2html902"
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="tex2html899"
42
+<B> Next:</B> <A NAME="tex2html905"
43 43
   HREF="node28.html">clamscan</A>
44
-<B> Up:</B> <A NAME="tex2html895"
44
+<B> Up:</B> <A NAME="tex2html901"
45 45
   HREF="node23.html">Usage</A>
46
-<B> Previous:</B> <A NAME="tex2html891"
46
+<B> Previous:</B> <A NAME="tex2html897"
47 47
   HREF="node26.html">Clamuko</A>
48
- &nbsp <B>  <A NAME="tex2html897"
48
+ &nbsp <B>  <A NAME="tex2html903"
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="tex2html900"
64
+<LI><A NAME="tex2html906"
65 65
   HREF="node28.html">clamscan</A>
66
-<LI><A NAME="tex2html901"
66
+<LI><A NAME="tex2html907"
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-01-09
73
+2006-04-29
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="tex2html912"
30
+<A NAME="tex2html918"
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="tex2html908"
33
+<A NAME="tex2html914"
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="tex2html902"
36
+<A NAME="tex2html908"
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="tex2html910"
39
+<A NAME="tex2html916"
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="tex2html913"
43
+<B> Next:</B> <A NAME="tex2html919"
44 44
   HREF="node29.html">clamd</A>
45
-<B> Up:</B> <A NAME="tex2html909"
45
+<B> Up:</B> <A NAME="tex2html915"
46 46
   HREF="node27.html">Output format</A>
47
-<B> Previous:</B> <A NAME="tex2html903"
47
+<B> Previous:</B> <A NAME="tex2html909"
48 48
   HREF="node27.html">Output format</A>
49
- &nbsp <B>  <A NAME="tex2html911"
49
+ &nbsp <B>  <A NAME="tex2html917"
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-01-09
95
+2006-04-29
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="tex2html922"
29
+<A NAME="tex2html928"
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="tex2html918"
32
+<A NAME="tex2html924"
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="tex2html914"
35
+<A NAME="tex2html920"
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="tex2html920"
38
+<A NAME="tex2html926"
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="tex2html923"
42
+<B> Next:</B> <A NAME="tex2html929"
43 43
   HREF="node30.html">LibClamAV</A>
44
-<B> Up:</B> <A NAME="tex2html919"
44
+<B> Up:</B> <A NAME="tex2html925"
45 45
   HREF="node27.html">Output format</A>
46
-<B> Previous:</B> <A NAME="tex2html915"
46
+<B> Previous:</B> <A NAME="tex2html921"
47 47
   HREF="node28.html">clamscan</A>
48
- &nbsp <B>  <A NAME="tex2html921"
48
+ &nbsp <B>  <A NAME="tex2html927"
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-01-09
85
+2006-04-29
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="tex2html601"
30
+<A NAME="tex2html607"
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="tex2html597"
33
+<A NAME="tex2html603"
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="tex2html591"
36
+<A NAME="tex2html597"
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="tex2html599"
39
+<A NAME="tex2html605"
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="tex2html602"
43
+<B> Next:</B> <A NAME="tex2html608"
44 44
   HREF="node4.html">Mailing lists</A>
45
-<B> Up:</B> <A NAME="tex2html598"
45
+<B> Up:</B> <A NAME="tex2html604"
46 46
   HREF="node2.html">Introduction</A>
47
-<B> Previous:</B> <A NAME="tex2html592"
47
+<B> Previous:</B> <A NAME="tex2html598"
48 48
   HREF="node2.html">Introduction</A>
49
- &nbsp <B>  <A NAME="tex2html600"
49
+ &nbsp <B>  <A NAME="tex2html606"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -119,7 +119,7 @@ Features</A>
119 119
 <BR><HR>
120 120
 <ADDRESS>
121 121
 Tomasz Kojm
122
-2006-01-09
122
+2006-04-29
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="tex2html934"
30
+<A NAME="tex2html940"
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="tex2html930"
33
+<A NAME="tex2html936"
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="tex2html924"
36
+<A NAME="tex2html930"
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="tex2html932"
39
+<A NAME="tex2html938"
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="tex2html935"
43
+<B> Next:</B> <A NAME="tex2html941"
44 44
   HREF="node31.html">Licence</A>
45
-<B> Up:</B> <A NAME="tex2html931"
45
+<B> Up:</B> <A NAME="tex2html937"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html925"
47
+<B> Previous:</B> <A NAME="tex2html931"
48 48
   HREF="node29.html">clamd</A>
49
- &nbsp <B>  <A NAME="tex2html933"
49
+ &nbsp <B>  <A NAME="tex2html939"
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="tex2html936"
69
+<LI><A NAME="tex2html942"
70 70
   HREF="node31.html">Licence</A>
71
-<LI><A NAME="tex2html937"
71
+<LI><A NAME="tex2html943"
72 72
   HREF="node32.html">Features</A>
73 73
 <UL>
74
-<LI><A NAME="tex2html938"
74
+<LI><A NAME="tex2html944"
75 75
   HREF="node33.html">Archives and compressed files</A>
76
-<LI><A NAME="tex2html939"
76
+<LI><A NAME="tex2html945"
77 77
   HREF="node34.html">Mail files</A>
78 78
 </UL>
79
-<LI><A NAME="tex2html940"
79
+<LI><A NAME="tex2html946"
80 80
   HREF="node35.html">API</A>
81 81
 <UL>
82
-<LI><A NAME="tex2html941"
82
+<LI><A NAME="tex2html947"
83 83
   HREF="node36.html">Header file</A>
84
-<LI><A NAME="tex2html942"
84
+<LI><A NAME="tex2html948"
85 85
   HREF="node37.html">Database loading</A>
86
-<LI><A NAME="tex2html943"
86
+<LI><A NAME="tex2html949"
87 87
   HREF="node38.html">Error handling</A>
88
-<LI><A NAME="tex2html944"
88
+<LI><A NAME="tex2html950"
89 89
   HREF="node39.html">Database structure</A>
90 90
 </UL>
91
-<LI><A NAME="tex2html945"
91
+<LI><A NAME="tex2html951"
92 92
   HREF="node40.html">Database reloading</A>
93 93
 <UL>
94
-<LI><A NAME="tex2html946"
94
+<LI><A NAME="tex2html952"
95 95
   HREF="node41.html">Data scan functions</A>
96
-<LI><A NAME="tex2html947"
96
+<LI><A NAME="tex2html953"
97 97
   HREF="node42.html">Memory</A>
98
-<LI><A NAME="tex2html948"
98
+<LI><A NAME="tex2html954"
99 99
   HREF="node43.html">clamav-config</A>
100
-<LI><A NAME="tex2html949"
100
+<LI><A NAME="tex2html955"
101 101
   HREF="node44.html">Example</A>
102 102
 </UL>
103
-<LI><A NAME="tex2html950"
103
+<LI><A NAME="tex2html956"
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-01-09
110
+2006-04-29
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="tex2html961"
30
+<A NAME="tex2html967"
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="tex2html957"
33
+<A NAME="tex2html963"
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="tex2html951"
36
+<A NAME="tex2html957"
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="tex2html959"
39
+<A NAME="tex2html965"
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="tex2html962"
43
+<B> Next:</B> <A NAME="tex2html968"
44 44
   HREF="node32.html">Features</A>
45
-<B> Up:</B> <A NAME="tex2html958"
45
+<B> Up:</B> <A NAME="tex2html964"
46 46
   HREF="node30.html">LibClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html952"
47
+<B> Previous:</B> <A NAME="tex2html958"
48 48
   HREF="node30.html">LibClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html960"
49
+ &nbsp <B>  <A NAME="tex2html966"
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-01-09
68
+2006-04-29
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="tex2html973"
30
+<A NAME="tex2html979"
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="tex2html969"
33
+<A NAME="tex2html975"
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="tex2html963"
36
+<A NAME="tex2html969"
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="tex2html971"
39
+<A NAME="tex2html977"
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="tex2html974"
43
+<B> Next:</B> <A NAME="tex2html980"
44 44
   HREF="node33.html">Archives and compressed files</A>
45
-<B> Up:</B> <A NAME="tex2html970"
45
+<B> Up:</B> <A NAME="tex2html976"
46 46
   HREF="node30.html">LibClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html964"
47
+<B> Previous:</B> <A NAME="tex2html970"
48 48
   HREF="node31.html">Licence</A>
49
- &nbsp <B>  <A NAME="tex2html972"
49
+ &nbsp <B>  <A NAME="tex2html978"
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="tex2html975"
65
+<LI><A NAME="tex2html981"
66 66
   HREF="node33.html">Archives and compressed files</A>
67
-<LI><A NAME="tex2html976"
67
+<LI><A NAME="tex2html982"
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-01-09
74
+2006-04-29
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="tex2html987"
30
+<A NAME="tex2html993"
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="tex2html983"
33
+<A NAME="tex2html989"
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="tex2html977"
36
+<A NAME="tex2html983"
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="tex2html985"
39
+<A NAME="tex2html991"
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="tex2html988"
43
+<B> Next:</B> <A NAME="tex2html994"
44 44
   HREF="node34.html">Mail files</A>
45
-<B> Up:</B> <A NAME="tex2html984"
45
+<B> Up:</B> <A NAME="tex2html990"
46 46
   HREF="node32.html">Features</A>
47
-<B> Previous:</B> <A NAME="tex2html978"
47
+<B> Previous:</B> <A NAME="tex2html984"
48 48
   HREF="node32.html">Features</A>
49
- &nbsp <B>  <A NAME="tex2html986"
49
+ &nbsp <B>  <A NAME="tex2html992"
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-01-09
110
+2006-04-29
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="tex2html997"
29
+<A NAME="tex2html1003"
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="tex2html993"
32
+<A NAME="tex2html999"
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="tex2html989"
35
+<A NAME="tex2html995"
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="tex2html995"
38
+<A NAME="tex2html1001"
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="tex2html998"
42
+<B> Next:</B> <A NAME="tex2html1004"
43 43
   HREF="node35.html">API</A>
44
-<B> Up:</B> <A NAME="tex2html994"
44
+<B> Up:</B> <A NAME="tex2html1000"
45 45
   HREF="node32.html">Features</A>
46
-<B> Previous:</B> <A NAME="tex2html990"
46
+<B> Previous:</B> <A NAME="tex2html996"
47 47
   HREF="node33.html">Archives and compressed files</A>
48
- &nbsp <B>  <A NAME="tex2html996"
48
+ &nbsp <B>  <A NAME="tex2html1002"
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-01-09
65
+2006-04-29
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="tex2html1009"
30
+<A NAME="tex2html1015"
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="tex2html1005"
33
+<A NAME="tex2html1011"
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="tex2html999"
36
+<A NAME="tex2html1005"
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="tex2html1007"
39
+<A NAME="tex2html1013"
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="tex2html1010"
43
+<B> Next:</B> <A NAME="tex2html1016"
44 44
   HREF="node36.html">Header file</A>
45
-<B> Up:</B> <A NAME="tex2html1006"
45
+<B> Up:</B> <A NAME="tex2html1012"
46 46
   HREF="node30.html">LibClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1000"
47
+<B> Previous:</B> <A NAME="tex2html1006"
48 48
   HREF="node34.html">Mail files</A>
49
- &nbsp <B>  <A NAME="tex2html1008"
49
+ &nbsp <B>  <A NAME="tex2html1014"
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="tex2html1011"
65
+<LI><A NAME="tex2html1017"
66 66
   HREF="node36.html">Header file</A>
67
-<LI><A NAME="tex2html1012"
67
+<LI><A NAME="tex2html1018"
68 68
   HREF="node37.html">Database loading</A>
69
-<LI><A NAME="tex2html1013"
69
+<LI><A NAME="tex2html1019"
70 70
   HREF="node38.html">Error handling</A>
71
-<LI><A NAME="tex2html1014"
71
+<LI><A NAME="tex2html1020"
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-01-09
78
+2006-04-29
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="tex2html1025"
30
+<A NAME="tex2html1031"
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="tex2html1021"
33
+<A NAME="tex2html1027"
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="tex2html1015"
36
+<A NAME="tex2html1021"
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="tex2html1023"
39
+<A NAME="tex2html1029"
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="tex2html1026"
43
+<B> Next:</B> <A NAME="tex2html1032"
44 44
   HREF="node37.html">Database loading</A>
45
-<B> Up:</B> <A NAME="tex2html1022"
45
+<B> Up:</B> <A NAME="tex2html1028"
46 46
   HREF="node35.html">API</A>
47
-<B> Previous:</B> <A NAME="tex2html1016"
47
+<B> Previous:</B> <A NAME="tex2html1022"
48 48
   HREF="node35.html">API</A>
49
- &nbsp <B>  <A NAME="tex2html1024"
49
+ &nbsp <B>  <A NAME="tex2html1030"
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-01-09
68
+2006-04-29
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="tex2html1037"
30
+<A NAME="tex2html1043"
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="tex2html1033"
33
+<A NAME="tex2html1039"
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="tex2html1027"
36
+<A NAME="tex2html1033"
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="tex2html1035"
39
+<A NAME="tex2html1041"
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="tex2html1038"
43
+<B> Next:</B> <A NAME="tex2html1044"
44 44
   HREF="node38.html">Error handling</A>
45
-<B> Up:</B> <A NAME="tex2html1034"
45
+<B> Up:</B> <A NAME="tex2html1040"
46 46
   HREF="node35.html">API</A>
47
-<B> Previous:</B> <A NAME="tex2html1028"
47
+<B> Previous:</B> <A NAME="tex2html1034"
48 48
   HREF="node36.html">Header file</A>
49
- &nbsp <B>  <A NAME="tex2html1036"
49
+ &nbsp <B>  <A NAME="tex2html1042"
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-01-09
91
+2006-04-29
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="tex2html1049"
30
+<A NAME="tex2html1055"
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="tex2html1045"
33
+<A NAME="tex2html1051"
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="tex2html1039"
36
+<A NAME="tex2html1045"
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="tex2html1047"
39
+<A NAME="tex2html1053"
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="tex2html1050"
43
+<B> Next:</B> <A NAME="tex2html1056"
44 44
   HREF="node39.html">Database structure</A>
45
-<B> Up:</B> <A NAME="tex2html1046"
45
+<B> Up:</B> <A NAME="tex2html1052"
46 46
   HREF="node35.html">API</A>
47
-<B> Previous:</B> <A NAME="tex2html1040"
47
+<B> Previous:</B> <A NAME="tex2html1046"
48 48
   HREF="node37.html">Database loading</A>
49
- &nbsp <B>  <A NAME="tex2html1048"
49
+ &nbsp <B>  <A NAME="tex2html1054"
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-01-09
71
+2006-04-29
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="tex2html1059"
29
+<A NAME="tex2html1065"
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="tex2html1055"
32
+<A NAME="tex2html1061"
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="tex2html1051"
35
+<A NAME="tex2html1057"
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="tex2html1057"
38
+<A NAME="tex2html1063"
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="tex2html1060"
42
+<B> Next:</B> <A NAME="tex2html1066"
43 43
   HREF="node40.html">Database reloading</A>
44
-<B> Up:</B> <A NAME="tex2html1056"
44
+<B> Up:</B> <A NAME="tex2html1062"
45 45
   HREF="node35.html">API</A>
46
-<B> Previous:</B> <A NAME="tex2html1052"
46
+<B> Previous:</B> <A NAME="tex2html1058"
47 47
   HREF="node38.html">Error handling</A>
48
- &nbsp <B>  <A NAME="tex2html1058"
48
+ &nbsp <B>  <A NAME="tex2html1064"
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-01-09
71
+2006-04-29
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="tex2html613"
30
+<A NAME="tex2html619"
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="tex2html609"
33
+<A NAME="tex2html615"
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="tex2html603"
36
+<A NAME="tex2html609"
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="tex2html611"
39
+<A NAME="tex2html617"
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="tex2html614"
43
+<B> Next:</B> <A NAME="tex2html620"
44 44
   HREF="node5.html">Virus submitting</A>
45
-<B> Up:</B> <A NAME="tex2html610"
45
+<B> Up:</B> <A NAME="tex2html616"
46 46
   HREF="node2.html">Introduction</A>
47
-<B> Previous:</B> <A NAME="tex2html604"
47
+<B> Previous:</B> <A NAME="tex2html610"
48 48
   HREF="node3.html">Features</A>
49
- &nbsp <B>  <A NAME="tex2html612"
49
+ &nbsp <B>  <A NAME="tex2html618"
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-01-09
82
+2006-04-29
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="tex2html1071"
30
+<A NAME="tex2html1077"
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="tex2html1067"
33
+<A NAME="tex2html1073"
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="tex2html1061"
36
+<A NAME="tex2html1067"
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="tex2html1069"
39
+<A NAME="tex2html1075"
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="tex2html1072"
43
+<B> Next:</B> <A NAME="tex2html1078"
44 44
   HREF="node41.html">Data scan functions</A>
45
-<B> Up:</B> <A NAME="tex2html1068"
45
+<B> Up:</B> <A NAME="tex2html1074"
46 46
   HREF="node30.html">LibClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1062"
47
+<B> Previous:</B> <A NAME="tex2html1068"
48 48
   HREF="node39.html">Database structure</A>
49
- &nbsp <B>  <A NAME="tex2html1070"
49
+ &nbsp <B>  <A NAME="tex2html1076"
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="tex2html1073"
90
+<LI><A NAME="tex2html1079"
91 91
   HREF="node41.html">Data scan functions</A>
92
-<LI><A NAME="tex2html1074"
92
+<LI><A NAME="tex2html1080"
93 93
   HREF="node42.html">Memory</A>
94
-<LI><A NAME="tex2html1075"
94
+<LI><A NAME="tex2html1081"
95 95
   HREF="node43.html">clamav-config</A>
96
-<LI><A NAME="tex2html1076"
96
+<LI><A NAME="tex2html1082"
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-01-09
103
+2006-04-29
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="tex2html1087"
30
+<A NAME="tex2html1093"
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="tex2html1083"
33
+<A NAME="tex2html1089"
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="tex2html1077"
36
+<A NAME="tex2html1083"
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="tex2html1085"
39
+<A NAME="tex2html1091"
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="tex2html1088"
43
+<B> Next:</B> <A NAME="tex2html1094"
44 44
   HREF="node42.html">Memory</A>
45
-<B> Up:</B> <A NAME="tex2html1084"
45
+<B> Up:</B> <A NAME="tex2html1090"
46 46
   HREF="node40.html">Database reloading</A>
47
-<B> Previous:</B> <A NAME="tex2html1078"
47
+<B> Previous:</B> <A NAME="tex2html1084"
48 48
   HREF="node40.html">Database reloading</A>
49
- &nbsp <B>  <A NAME="tex2html1086"
49
+ &nbsp <B>  <A NAME="tex2html1092"
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="tex2html1087"
185
+<A NAME="tex2html1093"
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="tex2html1083"
188
+<A NAME="tex2html1089"
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="tex2html1077"
191
+<A NAME="tex2html1083"
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="tex2html1085"
194
+<A NAME="tex2html1091"
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="tex2html1088"
198
+<B> Next:</B> <A NAME="tex2html1094"
199 199
   HREF="node42.html">Memory</A>
200
-<B> Up:</B> <A NAME="tex2html1084"
200
+<B> Up:</B> <A NAME="tex2html1090"
201 201
   HREF="node40.html">Database reloading</A>
202
-<B> Previous:</B> <A NAME="tex2html1078"
202
+<B> Previous:</B> <A NAME="tex2html1084"
203 203
   HREF="node40.html">Database reloading</A>
204
- &nbsp <B>  <A NAME="tex2html1086"
204
+ &nbsp <B>  <A NAME="tex2html1092"
205 205
   HREF="node1.html">Contents</A></B> 
206 206
 <!--End of Navigation Panel-->
207 207
 <ADDRESS>
208 208
 Tomasz Kojm
209
-2006-01-09
209
+2006-04-29
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="tex2html1099"
30
+<A NAME="tex2html1105"
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="tex2html1095"
33
+<A NAME="tex2html1101"
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="tex2html1089"
36
+<A NAME="tex2html1095"
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="tex2html1097"
39
+<A NAME="tex2html1103"
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="tex2html1100"
43
+<B> Next:</B> <A NAME="tex2html1106"
44 44
   HREF="node43.html">clamav-config</A>
45
-<B> Up:</B> <A NAME="tex2html1096"
45
+<B> Up:</B> <A NAME="tex2html1102"
46 46
   HREF="node40.html">Database reloading</A>
47
-<B> Previous:</B> <A NAME="tex2html1090"
47
+<B> Previous:</B> <A NAME="tex2html1096"
48 48
   HREF="node41.html">Data scan functions</A>
49
- &nbsp <B>  <A NAME="tex2html1098"
49
+ &nbsp <B>  <A NAME="tex2html1104"
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-01-09
68
+2006-04-29
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="tex2html1111"
30
+<A NAME="tex2html1117"
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="tex2html1107"
33
+<A NAME="tex2html1113"
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="tex2html1101"
36
+<A NAME="tex2html1107"
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="tex2html1109"
39
+<A NAME="tex2html1115"
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="tex2html1112"
43
+<B> Next:</B> <A NAME="tex2html1118"
44 44
   HREF="node44.html">Example</A>
45
-<B> Up:</B> <A NAME="tex2html1108"
45
+<B> Up:</B> <A NAME="tex2html1114"
46 46
   HREF="node40.html">Database reloading</A>
47
-<B> Previous:</B> <A NAME="tex2html1102"
47
+<B> Previous:</B> <A NAME="tex2html1108"
48 48
   HREF="node42.html">Memory</A>
49
- &nbsp <B>  <A NAME="tex2html1110"
49
+ &nbsp <B>  <A NAME="tex2html1116"
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-01-09
70
+2006-04-29
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="tex2html1121"
29
+<A NAME="tex2html1127"
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="tex2html1117"
32
+<A NAME="tex2html1123"
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="tex2html1113"
35
+<A NAME="tex2html1119"
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="tex2html1119"
38
+<A NAME="tex2html1125"
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="tex2html1122"
42
+<B> Next:</B> <A NAME="tex2html1128"
43 43
   HREF="node45.html">CVD format</A>
44
-<B> Up:</B> <A NAME="tex2html1118"
44
+<B> Up:</B> <A NAME="tex2html1124"
45 45
   HREF="node40.html">Database reloading</A>
46
-<B> Previous:</B> <A NAME="tex2html1114"
46
+<B> Previous:</B> <A NAME="tex2html1120"
47 47
   HREF="node43.html">clamav-config</A>
48
- &nbsp <B>  <A NAME="tex2html1120"
48
+ &nbsp <B>  <A NAME="tex2html1126"
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-01-09
68
+2006-04-29
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="tex2html1131"
29
+<A NAME="tex2html1137"
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="tex2html1127"
32
+<A NAME="tex2html1133"
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="tex2html1123"
35
+<A NAME="tex2html1129"
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="tex2html1129"
38
+<A NAME="tex2html1135"
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="tex2html1132"
42
+<B> Next:</B> <A NAME="tex2html1138"
43 43
   HREF="node46.html">Frequently Asked Questions</A>
44
-<B> Up:</B> <A NAME="tex2html1128"
44
+<B> Up:</B> <A NAME="tex2html1134"
45 45
   HREF="node30.html">LibClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html1124"
46
+<B> Previous:</B> <A NAME="tex2html1130"
47 47
   HREF="node44.html">Example</A>
48
- &nbsp <B>  <A NAME="tex2html1130"
48
+ &nbsp <B>  <A NAME="tex2html1136"
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-01-09
83
+2006-04-29
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="tex2html1143"
30
+<A NAME="tex2html1149"
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="tex2html1139"
33
+<A NAME="tex2html1145"
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="tex2html1133"
36
+<A NAME="tex2html1139"
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="tex2html1141"
39
+<A NAME="tex2html1147"
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="tex2html1144"
43
+<B> Next:</B> <A NAME="tex2html1150"
44 44
   HREF="node47.html">Third party software</A>
45
-<B> Up:</B> <A NAME="tex2html1140"
45
+<B> Up:</B> <A NAME="tex2html1146"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html1134"
47
+<B> Previous:</B> <A NAME="tex2html1140"
48 48
   HREF="node45.html">CVD format</A>
49
- &nbsp <B>  <A NAME="tex2html1142"
49
+ &nbsp <B>  <A NAME="tex2html1148"
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="tex2html1143"
370
+<A NAME="tex2html1149"
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="tex2html1139"
373
+<A NAME="tex2html1145"
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="tex2html1133"
376
+<A NAME="tex2html1139"
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="tex2html1141"
379
+<A NAME="tex2html1147"
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="tex2html1144"
383
+<B> Next:</B> <A NAME="tex2html1150"
384 384
   HREF="node47.html">Third party software</A>
385
-<B> Up:</B> <A NAME="tex2html1140"
385
+<B> Up:</B> <A NAME="tex2html1146"
386 386
   HREF="clamdoc.html">clamdoc</A>
387
-<B> Previous:</B> <A NAME="tex2html1134"
387
+<B> Previous:</B> <A NAME="tex2html1140"
388 388
   HREF="node45.html">CVD format</A>
389
- &nbsp <B>  <A NAME="tex2html1142"
389
+ &nbsp <B>  <A NAME="tex2html1148"
390 390
   HREF="node1.html">Contents</A></B> 
391 391
 <!--End of Navigation Panel-->
392 392
 <ADDRESS>
393 393
 Tomasz Kojm
394
-2006-01-09
394
+2006-04-29
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="tex2html1155"
30
+<A NAME="tex2html1161"
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="tex2html1151"
33
+<A NAME="tex2html1157"
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="tex2html1145"
36
+<A NAME="tex2html1151"
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="tex2html1153"
39
+<A NAME="tex2html1159"
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="tex2html1156"
43
+<B> Next:</B> <A NAME="tex2html1162"
44 44
   HREF="node48.html">MTA + ClamAV</A>
45
-<B> Up:</B> <A NAME="tex2html1152"
45
+<B> Up:</B> <A NAME="tex2html1158"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html1146"
47
+<B> Previous:</B> <A NAME="tex2html1152"
48 48
   HREF="node46.html">Frequently Asked Questions</A>
49
- &nbsp <B>  <A NAME="tex2html1154"
49
+ &nbsp <B>  <A NAME="tex2html1160"
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="tex2html1157"
68
+<LI><A NAME="tex2html1163"
69 69
   HREF="node48.html"><I>MTA + ClamAV</I></A>
70 70
 <UL>
71
-<LI><A NAME="tex2html1158"
71
+<LI><A NAME="tex2html1164"
72 72
   HREF="node49.html">amavisd-new</A>
73
-<LI><A NAME="tex2html1159"
73
+<LI><A NAME="tex2html1165"
74 74
   HREF="node50.html">AMaViS - "Next Generation"</A>
75
-<LI><A NAME="tex2html1160"
75
+<LI><A NAME="tex2html1166"
76 76
   HREF="node51.html">ClamdMail</A>
77
-<LI><A NAME="tex2html1161"
77
+<LI><A NAME="tex2html1167"
78 78
   HREF="node52.html">Clement</A>
79
-<LI><A NAME="tex2html1162"
79
+<LI><A NAME="tex2html1168"
80 80
   HREF="node53.html">cgpav</A>
81
-<LI><A NAME="tex2html1163"
81
+<LI><A NAME="tex2html1169"
82 82
   HREF="node54.html">ClamCour</A>
83
-<LI><A NAME="tex2html1164"
83
+<LI><A NAME="tex2html1170"
84 84
   HREF="node55.html">clamfilter</A>
85
-<LI><A NAME="tex2html1165"
85
+<LI><A NAME="tex2html1171"
86 86
   HREF="node56.html">ClamSMTP</A>
87
-<LI><A NAME="tex2html1166"
87
+<LI><A NAME="tex2html1172"
88 88
   HREF="node57.html">clapf</A>
89
-<LI><A NAME="tex2html1167"
89
+<LI><A NAME="tex2html1173"
90 90
   HREF="node58.html">DSpamPD</A>
91
-<LI><A NAME="tex2html1168"
91
+<LI><A NAME="tex2html1174"
92 92
   HREF="node59.html">exiscan</A>
93
-<LI><A NAME="tex2html1169"
93
+<LI><A NAME="tex2html1175"
94 94
   HREF="node60.html">Gadoyanvirus</A>
95
-<LI><A NAME="tex2html1170"
95
+<LI><A NAME="tex2html1176"
96 96
   HREF="node61.html">hMailServer</A>
97
-<LI><A NAME="tex2html1171"
97
+<LI><A NAME="tex2html1177"
98 98
   HREF="node62.html">IVS Milter</A>
99
-<LI><A NAME="tex2html1172"
99
+<LI><A NAME="tex2html1178"
100 100
   HREF="node63.html">j-chkmail</A>
101
-<LI><A NAME="tex2html1173"
101
+<LI><A NAME="tex2html1179"
102 102
   HREF="node64.html">Mail Avenger</A>
103
-<LI><A NAME="tex2html1174"
103
+<LI><A NAME="tex2html1180"
104 104
   HREF="node65.html">Mailnees</A>
105
-<LI><A NAME="tex2html1175"
105
+<LI><A NAME="tex2html1181"
106 106
   HREF="node66.html">MailScanner</A>
107
-<LI><A NAME="tex2html1176"
107
+<LI><A NAME="tex2html1182"
108 108
   HREF="node67.html">Maverix</A>
109
-<LI><A NAME="tex2html1177"
109
+<LI><A NAME="tex2html1183"
110 110
   HREF="node68.html">MIMEDefang</A>
111
-<LI><A NAME="tex2html1178"
111
+<LI><A NAME="tex2html1184"
112 112
   HREF="node69.html">mxGuard for IMail</A>
113
-<LI><A NAME="tex2html1179"
113
+<LI><A NAME="tex2html1185"
114 114
   HREF="node70.html">OdeiaVir</A>
115
-<LI><A NAME="tex2html1180"
115
+<LI><A NAME="tex2html1186"
116 116
   HREF="node71.html">OpenProtect</A>
117
-<LI><A NAME="tex2html1181"
117
+<LI><A NAME="tex2html1187"
118 118
   HREF="node72.html">Protea AntiVirus Tools</A>
119
-<LI><A NAME="tex2html1182"
119
+<LI><A NAME="tex2html1188"
120 120
   HREF="node73.html">PSCM</A>
121
-<LI><A NAME="tex2html1183"
121
+<LI><A NAME="tex2html1189"
122 122
   HREF="node74.html">PTSMail Utilities</A>
123
-<LI><A NAME="tex2html1184"
123
+<LI><A NAME="tex2html1190"
124 124
   HREF="node75.html">pymavis</A>
125
-<LI><A NAME="tex2html1185"
125
+<LI><A NAME="tex2html1191"
126 126
   HREF="node76.html">Qmail-Scanner</A>
127
-<LI><A NAME="tex2html1186"
127
+<LI><A NAME="tex2html1192"
128 128
   HREF="node77.html">qpsmtp</A>
129
-<LI><A NAME="tex2html1187"
129
+<LI><A NAME="tex2html1193"
130 130
   HREF="node78.html">qscanq</A>
131
-<LI><A NAME="tex2html1188"
131
+<LI><A NAME="tex2html1194"
132 132
   HREF="node79.html">qSheff</A>
133
-<LI><A NAME="tex2html1189"
133
+<LI><A NAME="tex2html1195"
134 134
   HREF="node80.html">RevolSys SMTP kit for Postfix</A>
135
-<LI><A NAME="tex2html1190"
135
+<LI><A NAME="tex2html1196"
136 136
   HREF="node81.html">Sagator</A>
137
-<LI><A NAME="tex2html1191"
137
+<LI><A NAME="tex2html1197"
138 138
   HREF="node82.html">Scrubber</A>
139
-<LI><A NAME="tex2html1192"
139
+<LI><A NAME="tex2html1198"
140 140
   HREF="node83.html">Secure Mail Intelligence!</A>
141
-<LI><A NAME="tex2html1193"
141
+<LI><A NAME="tex2html1199"
142 142
   HREF="node84.html">simscan</A>
143
-<LI><A NAME="tex2html1194"
143
+<LI><A NAME="tex2html1200"
144 144
   HREF="node85.html">SmarterMail Filter</A>
145
-<LI><A NAME="tex2html1195"
145
+<LI><A NAME="tex2html1201"
146 146
   HREF="node86.html">smf-clamd</A>
147
-<LI><A NAME="tex2html1196"
147
+<LI><A NAME="tex2html1202"
148 148
   HREF="node87.html">smtpfilter</A>
149
-<LI><A NAME="tex2html1197"
149
+<LI><A NAME="tex2html1203"
150 150
   HREF="node88.html">smtp-gated</A>
151
-<LI><A NAME="tex2html1198"
151
+<LI><A NAME="tex2html1204"
152 152
   HREF="node89.html">smtp-vilter</A>
153
-<LI><A NAME="tex2html1199"
153
+<LI><A NAME="tex2html1205"
154 154
   HREF="node90.html">Zabit</A>
155
-<LI><A NAME="tex2html1200"
155
+<LI><A NAME="tex2html1206"
156 156
   HREF="node91.html">zmscanner</A>
157 157
 </UL>
158
-<LI><A NAME="tex2html1201"
158
+<LI><A NAME="tex2html1207"
159 159
   HREF="node92.html"><I>MTA + POP3 Proxy + ClamAV</I></A>
160 160
 <UL>
161
-<LI><A NAME="tex2html1202"
161
+<LI><A NAME="tex2html1208"
162 162
   HREF="node93.html">ClamMail</A>
163
-<LI><A NAME="tex2html1203"
163
+<LI><A NAME="tex2html1209"
164 164
   HREF="node94.html">POP3 Virus Scanner Daemon</A>
165
-<LI><A NAME="tex2html1204"
165
+<LI><A NAME="tex2html1210"
166 166
   HREF="node95.html">pop3.proxy</A>
167 167
 </UL>
168
-<LI><A NAME="tex2html1205"
168
+<LI><A NAME="tex2html1211"
169 169
   HREF="node96.html"><I>Web/FTP Proxy + ClamAV</I></A>
170 170
 <UL>
171
-<LI><A NAME="tex2html1206"
171
+<LI><A NAME="tex2html1212"
172 172
   HREF="node97.html">DansGuardian Anti-Virus Patch</A>
173
-<LI><A NAME="tex2html1207"
173
+<LI><A NAME="tex2html1213"
174 174
   HREF="node98.html">Frox</A>
175
-<LI><A NAME="tex2html1208"
175
+<LI><A NAME="tex2html1214"
176 176
   HREF="node99.html">HTTP Anti Virus Proxy</A>
177
-<LI><A NAME="tex2html1209"
177
+<LI><A NAME="tex2html1215"
178 178
   HREF="node100.html">mod_clamav</A>
179
-<LI><A NAME="tex2html1210"
179
+<LI><A NAME="tex2html1216"
180 180
   HREF="node101.html">ClamAV module for ProFTPD</A>
181
-<LI><A NAME="tex2html1211"
181
+<LI><A NAME="tex2html1217"
182 182
   HREF="node102.html">SafeSquid</A>
183
-<LI><A NAME="tex2html1212"
183
+<LI><A NAME="tex2html1218"
184 184
   HREF="node103.html">SquidClamAV Redirector</A>
185
-<LI><A NAME="tex2html1213"
185
+<LI><A NAME="tex2html1219"
186 186
   HREF="node104.html">Squidclam</A>
187
-<LI><A NAME="tex2html1214"
187
+<LI><A NAME="tex2html1220"
188 188
   HREF="node105.html">Viralator</A>
189 189
 </UL>
190
-<LI><A NAME="tex2html1215"
190
+<LI><A NAME="tex2html1221"
191 191
   HREF="node106.html"><I>Filesystem + ClamAV</I></A>
192 192
 <UL>
193
-<LI><A NAME="tex2html1216"
193
+<LI><A NAME="tex2html1222"
194 194
   HREF="node107.html">Dazuko</A>
195
-<LI><A NAME="tex2html1217"
195
+<LI><A NAME="tex2html1223"
196 196
   HREF="node108.html">Famuko</A>
197
-<LI><A NAME="tex2html1218"
197
+<LI><A NAME="tex2html1224"
198 198
   HREF="node109.html">OpenAntiVirus samba-vscan</A>
199 199
 </UL>
200
-<LI><A NAME="tex2html1219"
200
+<LI><A NAME="tex2html1225"
201 201
   HREF="node110.html"><I>Mail User Agent + ClamAV</I></A>
202 202
 <UL>
203
-<LI><A NAME="tex2html1220"
203
+<LI><A NAME="tex2html1226"
204 204
   HREF="node111.html">clamailfilter</A>
205
-<LI><A NAME="tex2html1221"
205
+<LI><A NAME="tex2html1227"
206 206
   HREF="node112.html">ClamAssassin</A>
207
-<LI><A NAME="tex2html1222"
207
+<LI><A NAME="tex2html1228"
208 208
   HREF="node113.html">clamscan-procfilter</A>
209
-<LI><A NAME="tex2html1223"
209
+<LI><A NAME="tex2html1229"
210 210
   HREF="node114.html">KMail</A>
211
-<LI><A NAME="tex2html1224"
211
+<LI><A NAME="tex2html1230"
212 212
   HREF="node115.html">MyClamMailFilter</A>
213
-<LI><A NAME="tex2html1225"
213
+<LI><A NAME="tex2html1231"
214 214
   HREF="node116.html">OpenWebMail</A>
215
-<LI><A NAME="tex2html1226"
215
+<LI><A NAME="tex2html1232"
216 216
   HREF="node117.html">QClam</A>
217
-<LI><A NAME="tex2html1227"
217
+<LI><A NAME="tex2html1233"
218 218
   HREF="node118.html">QMVC - Qmail Mail and Virus Control</A>
219
-<LI><A NAME="tex2html1228"
219
+<LI><A NAME="tex2html1234"
220 220
   HREF="node119.html">Sylpheed-Claws</A>
221
-<LI><A NAME="tex2html1229"
221
+<LI><A NAME="tex2html1235"
222 222
   HREF="node120.html">SoftlabsAV</A>
223 223
 </UL>
224
-<LI><A NAME="tex2html1230"
224
+<LI><A NAME="tex2html1236"
225 225
   HREF="node121.html"><I>Graphical User Interface + ClamAV</I></A>
226 226
 <UL>
227
-<LI><A NAME="tex2html1231"
227
+<LI><A NAME="tex2html1237"
228 228
   HREF="node122.html">AVScan</A>
229
-<LI><A NAME="tex2html1232"
229
+<LI><A NAME="tex2html1238"
230 230
   HREF="node123.html">BeClam</A>
231
-<LI><A NAME="tex2html1233"
231
+<LI><A NAME="tex2html1239"
232 232
   HREF="node124.html">Clamaktion</A>
233
-<LI><A NAME="tex2html1234"
233
+<LI><A NAME="tex2html1240"
234 234
   HREF="node125.html">ClamShell</A>
235
-<LI><A NAME="tex2html1235"
235
+<LI><A NAME="tex2html1241"
236 236
   HREF="node126.html">ClamTk</A>
237
-<LI><A NAME="tex2html1236"
237
+<LI><A NAME="tex2html1242"
238 238
   HREF="node127.html">clamXav</A>
239
-<LI><A NAME="tex2html1237"
239
+<LI><A NAME="tex2html1243"
240 240
   HREF="node128.html">ClamWin</A>
241
-<LI><A NAME="tex2html1238"
241
+<LI><A NAME="tex2html1244"
242 242
   HREF="node129.html">FETCAV</A>
243
-<LI><A NAME="tex2html1239"
243
+<LI><A NAME="tex2html1245"
244 244
   HREF="node130.html">KlamAV</A>
245
-<LI><A NAME="tex2html1240"
245
+<LI><A NAME="tex2html1246"
246 246
   HREF="node131.html">QtClamAVclient</A>
247
-<LI><A NAME="tex2html1241"
247
+<LI><A NAME="tex2html1247"
248 248
   HREF="node132.html">wbmclamav</A>
249 249
 </UL>
250
-<LI><A NAME="tex2html1242"
250
+<LI><A NAME="tex2html1248"
251 251
   HREF="node133.html"><I>Library + ClamAV</I></A>
252 252
 <UL>
253
-<LI><A NAME="tex2html1243"
253
+<LI><A NAME="tex2html1249"
254 254
   HREF="node134.html">ClamAV-Sharp</A>
255
-<LI><A NAME="tex2html1244"
255
+<LI><A NAME="tex2html1250"
256 256
   HREF="node135.html">ClamAVPlugin</A>
257
-<LI><A NAME="tex2html1245"
257
+<LI><A NAME="tex2html1251"
258 258
   HREF="node136.html">clamavr</A>
259
-<LI><A NAME="tex2html1246"
259
+<LI><A NAME="tex2html1252"
260 260
   HREF="node137.html">D bindings for ClamAV</A>
261
-<LI><A NAME="tex2html1247"
261
+<LI><A NAME="tex2html1253"
262 262
   HREF="node138.html">File::Scan::ClamAV</A>
263
-<LI><A NAME="tex2html1248"
263
+<LI><A NAME="tex2html1254"
264 264
   HREF="node139.html">Mail::ClamAV</A>
265
-<LI><A NAME="tex2html1249"
265
+<LI><A NAME="tex2html1255"
266 266
   HREF="node140.html">PHP ClamAV Lib</A>
267
-<LI><A NAME="tex2html1250"
267
+<LI><A NAME="tex2html1256"
268 268
   HREF="node141.html">pyclamav</A>
269
-<LI><A NAME="tex2html1251"
269
+<LI><A NAME="tex2html1257"
270 270
   HREF="node142.html">WRAVLib</A>
271 271
 </UL>
272
-<LI><A NAME="tex2html1252"
272
+<LI><A NAME="tex2html1258"
273 273
   HREF="node143.html"><I>Miscellaneous + ClamAV</I></A>
274 274
 <UL>
275
-<LI><A NAME="tex2html1253"
275
+<LI><A NAME="tex2html1259"
276 276
   HREF="node144.html">INSERT</A>
277
-<LI><A NAME="tex2html1254"
277
+<LI><A NAME="tex2html1260"
278 278
   HREF="node145.html">Local Area Security</A>
279
-<LI><A NAME="tex2html1255"
279
+<LI><A NAME="tex2html1261"
280 280
   HREF="node146.html">mailgraph</A>
281
-<LI><A NAME="tex2html1256"
281
+<LI><A NAME="tex2html1262"
282 282
   HREF="node147.html">mailman-clamav</A>
283
-<LI><A NAME="tex2html1257"
283
+<LI><A NAME="tex2html1263"
284 284
   HREF="node148.html">Moodle</A>
285
-<LI><A NAME="tex2html1258"
285
+<LI><A NAME="tex2html1264"
286 286
   HREF="node149.html">nclamd</A>
287
-<LI><A NAME="tex2html1259"
287
+<LI><A NAME="tex2html1265"
288 288
   HREF="node150.html">qmailmrtg7</A>
289
-<LI><A NAME="tex2html1260"
289
+<LI><A NAME="tex2html1266"
290 290
   HREF="node151.html">redWall Firewall</A>
291
-<LI><A NAME="tex2html1261"
291
+<LI><A NAME="tex2html1267"
292 292
   HREF="node152.html">Scan Log Analyzer</A>
293
-<LI><A NAME="tex2html1262"
293
+<LI><A NAME="tex2html1268"
294 294
   HREF="node153.html">snort-inline</A>
295
-<LI><A NAME="tex2html1263"
295
+<LI><A NAME="tex2html1269"
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-01-09
302
+2006-04-29
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="tex2html1274"
30
+<A NAME="tex2html1280"
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="tex2html1270"
33
+<A NAME="tex2html1276"
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="tex2html1264"
36
+<A NAME="tex2html1270"
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="tex2html1272"
39
+<A NAME="tex2html1278"
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="tex2html1275"
43
+<B> Next:</B> <A NAME="tex2html1281"
44 44
   HREF="node49.html">amavisd-new</A>
45
-<B> Up:</B> <A NAME="tex2html1271"
45
+<B> Up:</B> <A NAME="tex2html1277"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html1265"
47
+<B> Previous:</B> <A NAME="tex2html1271"
48 48
   HREF="node47.html">Third party software</A>
49
- &nbsp <B>  <A NAME="tex2html1273"
49
+ &nbsp <B>  <A NAME="tex2html1279"
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="tex2html1276"
65
+<LI><A NAME="tex2html1282"
66 66
   HREF="node49.html">amavisd-new</A>
67
-<LI><A NAME="tex2html1277"
67
+<LI><A NAME="tex2html1283"
68 68
   HREF="node50.html">AMaViS - "Next Generation"</A>
69
-<LI><A NAME="tex2html1278"
69
+<LI><A NAME="tex2html1284"
70 70
   HREF="node51.html">ClamdMail</A>
71
-<LI><A NAME="tex2html1279"
71
+<LI><A NAME="tex2html1285"
72 72
   HREF="node52.html">Clement</A>
73
-<LI><A NAME="tex2html1280"
73
+<LI><A NAME="tex2html1286"
74 74
   HREF="node53.html">cgpav</A>
75
-<LI><A NAME="tex2html1281"
75
+<LI><A NAME="tex2html1287"
76 76
   HREF="node54.html">ClamCour</A>
77
-<LI><A NAME="tex2html1282"
77
+<LI><A NAME="tex2html1288"
78 78
   HREF="node55.html">clamfilter</A>
79
-<LI><A NAME="tex2html1283"
79
+<LI><A NAME="tex2html1289"
80 80
   HREF="node56.html">ClamSMTP</A>
81
-<LI><A NAME="tex2html1284"
81
+<LI><A NAME="tex2html1290"
82 82
   HREF="node57.html">clapf</A>
83
-<LI><A NAME="tex2html1285"
83
+<LI><A NAME="tex2html1291"
84 84
   HREF="node58.html">DSpamPD</A>
85
-<LI><A NAME="tex2html1286"
85
+<LI><A NAME="tex2html1292"
86 86
   HREF="node59.html">exiscan</A>
87
-<LI><A NAME="tex2html1287"
87
+<LI><A NAME="tex2html1293"
88 88
   HREF="node60.html">Gadoyanvirus</A>
89
-<LI><A NAME="tex2html1288"
89
+<LI><A NAME="tex2html1294"
90 90
   HREF="node61.html">hMailServer</A>
91
-<LI><A NAME="tex2html1289"
91
+<LI><A NAME="tex2html1295"
92 92
   HREF="node62.html">IVS Milter</A>
93
-<LI><A NAME="tex2html1290"
93
+<LI><A NAME="tex2html1296"
94 94
   HREF="node63.html">j-chkmail</A>
95
-<LI><A NAME="tex2html1291"
95
+<LI><A NAME="tex2html1297"
96 96
   HREF="node64.html">Mail Avenger</A>
97
-<LI><A NAME="tex2html1292"
97
+<LI><A NAME="tex2html1298"
98 98
   HREF="node65.html">Mailnees</A>
99
-<LI><A NAME="tex2html1293"
99
+<LI><A NAME="tex2html1299"
100 100
   HREF="node66.html">MailScanner</A>
101
-<LI><A NAME="tex2html1294"
101
+<LI><A NAME="tex2html1300"
102 102
   HREF="node67.html">Maverix</A>
103
-<LI><A NAME="tex2html1295"
103
+<LI><A NAME="tex2html1301"
104 104
   HREF="node68.html">MIMEDefang</A>
105
-<LI><A NAME="tex2html1296"
105
+<LI><A NAME="tex2html1302"
106 106
   HREF="node69.html">mxGuard for IMail</A>
107
-<LI><A NAME="tex2html1297"
107
+<LI><A NAME="tex2html1303"
108 108
   HREF="node70.html">OdeiaVir</A>
109
-<LI><A NAME="tex2html1298"
109
+<LI><A NAME="tex2html1304"
110 110
   HREF="node71.html">OpenProtect</A>
111
-<LI><A NAME="tex2html1299"
111
+<LI><A NAME="tex2html1305"
112 112
   HREF="node72.html">Protea AntiVirus Tools</A>
113
-<LI><A NAME="tex2html1300"
113
+<LI><A NAME="tex2html1306"
114 114
   HREF="node73.html">PSCM</A>
115
-<LI><A NAME="tex2html1301"
115
+<LI><A NAME="tex2html1307"
116 116
   HREF="node74.html">PTSMail Utilities</A>
117
-<LI><A NAME="tex2html1302"
117
+<LI><A NAME="tex2html1308"
118 118
   HREF="node75.html">pymavis</A>
119
-<LI><A NAME="tex2html1303"
119
+<LI><A NAME="tex2html1309"
120 120
   HREF="node76.html">Qmail-Scanner</A>
121
-<LI><A NAME="tex2html1304"
121
+<LI><A NAME="tex2html1310"
122 122
   HREF="node77.html">qpsmtp</A>
123
-<LI><A NAME="tex2html1305"
123
+<LI><A NAME="tex2html1311"
124 124
   HREF="node78.html">qscanq</A>
125
-<LI><A NAME="tex2html1306"
125
+<LI><A NAME="tex2html1312"
126 126
   HREF="node79.html">qSheff</A>
127
-<LI><A NAME="tex2html1307"
127
+<LI><A NAME="tex2html1313"
128 128
   HREF="node80.html">RevolSys SMTP kit for Postfix</A>
129
-<LI><A NAME="tex2html1308"
129
+<LI><A NAME="tex2html1314"
130 130
   HREF="node81.html">Sagator</A>
131
-<LI><A NAME="tex2html1309"
131
+<LI><A NAME="tex2html1315"
132 132
   HREF="node82.html">Scrubber</A>
133
-<LI><A NAME="tex2html1310"
133
+<LI><A NAME="tex2html1316"
134 134
   HREF="node83.html">Secure Mail Intelligence!</A>
135
-<LI><A NAME="tex2html1311"
135
+<LI><A NAME="tex2html1317"
136 136
   HREF="node84.html">simscan</A>
137
-<LI><A NAME="tex2html1312"
137
+<LI><A NAME="tex2html1318"
138 138
   HREF="node85.html">SmarterMail Filter</A>
139
-<LI><A NAME="tex2html1313"
139
+<LI><A NAME="tex2html1319"
140 140
   HREF="node86.html">smf-clamd</A>
141
-<LI><A NAME="tex2html1314"
141
+<LI><A NAME="tex2html1320"
142 142
   HREF="node87.html">smtpfilter</A>
143
-<LI><A NAME="tex2html1315"
143
+<LI><A NAME="tex2html1321"
144 144
   HREF="node88.html">smtp-gated</A>
145
-<LI><A NAME="tex2html1316"
145
+<LI><A NAME="tex2html1322"
146 146
   HREF="node89.html">smtp-vilter</A>
147
-<LI><A NAME="tex2html1317"
147
+<LI><A NAME="tex2html1323"
148 148
   HREF="node90.html">Zabit</A>
149
-<LI><A NAME="tex2html1318"
149
+<LI><A NAME="tex2html1324"
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-01-09
156
+2006-04-29
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="tex2html1329"
30
+<A NAME="tex2html1335"
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="tex2html1325"
33
+<A NAME="tex2html1331"
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="tex2html1319"
36
+<A NAME="tex2html1325"
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="tex2html1327"
39
+<A NAME="tex2html1333"
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="tex2html1330"
43
+<B> Next:</B> <A NAME="tex2html1336"
44 44
   HREF="node50.html">AMaViS - "Next Generation"</A>
45
-<B> Up:</B> <A NAME="tex2html1326"
45
+<B> Up:</B> <A NAME="tex2html1332"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1320"
47
+<B> Previous:</B> <A NAME="tex2html1326"
48 48
   HREF="node48.html">MTA + ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html1328"
49
+ &nbsp <B>  <A NAME="tex2html1334"
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-01-09
74
+2006-04-29
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="tex2html623"
29
+<A NAME="tex2html629"
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="tex2html619"
32
+<A NAME="tex2html625"
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="tex2html615"
35
+<A NAME="tex2html621"
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="tex2html621"
38
+<A NAME="tex2html627"
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="tex2html624"
42
+<B> Next:</B> <A NAME="tex2html630"
43 43
   HREF="node6.html">Base package</A>
44
-<B> Up:</B> <A NAME="tex2html620"
44
+<B> Up:</B> <A NAME="tex2html626"
45 45
   HREF="node2.html">Introduction</A>
46
-<B> Previous:</B> <A NAME="tex2html616"
46
+<B> Previous:</B> <A NAME="tex2html622"
47 47
   HREF="node4.html">Mailing lists</A>
48
- &nbsp <B>  <A NAME="tex2html622"
48
+ &nbsp <B>  <A NAME="tex2html628"
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-01-09
73
+2006-04-29
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="tex2html1341"
30
+<A NAME="tex2html1347"
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="tex2html1337"
33
+<A NAME="tex2html1343"
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="tex2html1331"
36
+<A NAME="tex2html1337"
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="tex2html1339"
39
+<A NAME="tex2html1345"
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="tex2html1342"
43
+<B> Next:</B> <A NAME="tex2html1348"
44 44
   HREF="node51.html">ClamdMail</A>
45
-<B> Up:</B> <A NAME="tex2html1338"
45
+<B> Up:</B> <A NAME="tex2html1344"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1332"
47
+<B> Previous:</B> <A NAME="tex2html1338"
48 48
   HREF="node49.html">amavisd-new</A>
49
- &nbsp <B>  <A NAME="tex2html1340"
49
+ &nbsp <B>  <A NAME="tex2html1346"
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-01-09
84
+2006-04-29
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="tex2html1353"
30
+<A NAME="tex2html1359"
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="tex2html1349"
33
+<A NAME="tex2html1355"
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="tex2html1343"
36
+<A NAME="tex2html1349"
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="tex2html1351"
39
+<A NAME="tex2html1357"
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="tex2html1354"
43
+<B> Next:</B> <A NAME="tex2html1360"
44 44
   HREF="node52.html">Clement</A>
45
-<B> Up:</B> <A NAME="tex2html1350"
45
+<B> Up:</B> <A NAME="tex2html1356"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1344"
47
+<B> Previous:</B> <A NAME="tex2html1350"
48 48
   HREF="node50.html">AMaViS - "Next Generation"</A>
49
- &nbsp <B>  <A NAME="tex2html1352"
49
+ &nbsp <B>  <A NAME="tex2html1358"
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-01-09
68
+2006-04-29
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="tex2html1365"
30
+<A NAME="tex2html1371"
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="tex2html1361"
33
+<A NAME="tex2html1367"
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="tex2html1355"
36
+<A NAME="tex2html1361"
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="tex2html1363"
39
+<A NAME="tex2html1369"
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="tex2html1366"
43
+<B> Next:</B> <A NAME="tex2html1372"
44 44
   HREF="node53.html">cgpav</A>
45
-<B> Up:</B> <A NAME="tex2html1362"
45
+<B> Up:</B> <A NAME="tex2html1368"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1356"
47
+<B> Previous:</B> <A NAME="tex2html1362"
48 48
   HREF="node51.html">ClamdMail</A>
49
- &nbsp <B>  <A NAME="tex2html1364"
49
+ &nbsp <B>  <A NAME="tex2html1370"
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-01-09
71
+2006-04-29
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="tex2html1377"
30
+<A NAME="tex2html1383"
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="tex2html1373"
33
+<A NAME="tex2html1379"
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="tex2html1367"
36
+<A NAME="tex2html1373"
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="tex2html1375"
39
+<A NAME="tex2html1381"
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="tex2html1378"
43
+<B> Next:</B> <A NAME="tex2html1384"
44 44
   HREF="node54.html">ClamCour</A>
45
-<B> Up:</B> <A NAME="tex2html1374"
45
+<B> Up:</B> <A NAME="tex2html1380"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1368"
47
+<B> Previous:</B> <A NAME="tex2html1374"
48 48
   HREF="node52.html">Clement</A>
49
- &nbsp <B>  <A NAME="tex2html1376"
49
+ &nbsp <B>  <A NAME="tex2html1382"
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-01-09
69
+2006-04-29
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="tex2html1389"
30
+<A NAME="tex2html1395"
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="tex2html1385"
33
+<A NAME="tex2html1391"
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="tex2html1379"
36
+<A NAME="tex2html1385"
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="tex2html1387"
39
+<A NAME="tex2html1393"
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="tex2html1390"
43
+<B> Next:</B> <A NAME="tex2html1396"
44 44
   HREF="node55.html">clamfilter</A>
45
-<B> Up:</B> <A NAME="tex2html1386"
45
+<B> Up:</B> <A NAME="tex2html1392"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1380"
47
+<B> Previous:</B> <A NAME="tex2html1386"
48 48
   HREF="node53.html">cgpav</A>
49
- &nbsp <B>  <A NAME="tex2html1388"
49
+ &nbsp <B>  <A NAME="tex2html1394"
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-01-09
69
+2006-04-29
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="tex2html1401"
30
+<A NAME="tex2html1407"
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="tex2html1397"
33
+<A NAME="tex2html1403"
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="tex2html1391"
36
+<A NAME="tex2html1397"
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="tex2html1399"
39
+<A NAME="tex2html1405"
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="tex2html1402"
43
+<B> Next:</B> <A NAME="tex2html1408"
44 44
   HREF="node56.html">ClamSMTP</A>
45
-<B> Up:</B> <A NAME="tex2html1398"
45
+<B> Up:</B> <A NAME="tex2html1404"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1392"
47
+<B> Previous:</B> <A NAME="tex2html1398"
48 48
   HREF="node54.html">ClamCour</A>
49
- &nbsp <B>  <A NAME="tex2html1400"
49
+ &nbsp <B>  <A NAME="tex2html1406"
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-01-09
69
+2006-04-29
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="tex2html1413"
30
+<A NAME="tex2html1419"
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="tex2html1409"
33
+<A NAME="tex2html1415"
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="tex2html1403"
36
+<A NAME="tex2html1409"
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="tex2html1411"
39
+<A NAME="tex2html1417"
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="tex2html1414"
43
+<B> Next:</B> <A NAME="tex2html1420"
44 44
   HREF="node57.html">clapf</A>
45
-<B> Up:</B> <A NAME="tex2html1410"
45
+<B> Up:</B> <A NAME="tex2html1416"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1404"
47
+<B> Previous:</B> <A NAME="tex2html1410"
48 48
   HREF="node55.html">clamfilter</A>
49
- &nbsp <B>  <A NAME="tex2html1412"
49
+ &nbsp <B>  <A NAME="tex2html1418"
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-01-09
70
+2006-04-29
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="tex2html1425"
30
+<A NAME="tex2html1431"
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="tex2html1421"
33
+<A NAME="tex2html1427"
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="tex2html1415"
36
+<A NAME="tex2html1421"
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="tex2html1423"
39
+<A NAME="tex2html1429"
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="tex2html1426"
43
+<B> Next:</B> <A NAME="tex2html1432"
44 44
   HREF="node58.html">DSpamPD</A>
45
-<B> Up:</B> <A NAME="tex2html1422"
45
+<B> Up:</B> <A NAME="tex2html1428"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1416"
47
+<B> Previous:</B> <A NAME="tex2html1422"
48 48
   HREF="node56.html">ClamSMTP</A>
49
- &nbsp <B>  <A NAME="tex2html1424"
49
+ &nbsp <B>  <A NAME="tex2html1430"
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-01-09
69
+2006-04-29
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="tex2html1437"
30
+<A NAME="tex2html1443"
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="tex2html1433"
33
+<A NAME="tex2html1439"
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="tex2html1427"
36
+<A NAME="tex2html1433"
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="tex2html1435"
39
+<A NAME="tex2html1441"
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="tex2html1438"
43
+<B> Next:</B> <A NAME="tex2html1444"
44 44
   HREF="node59.html">exiscan</A>
45
-<B> Up:</B> <A NAME="tex2html1434"
45
+<B> Up:</B> <A NAME="tex2html1440"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1428"
47
+<B> Previous:</B> <A NAME="tex2html1434"
48 48
   HREF="node57.html">clapf</A>
49
- &nbsp <B>  <A NAME="tex2html1436"
49
+ &nbsp <B>  <A NAME="tex2html1442"
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-01-09
70
+2006-04-29
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="tex2html1449"
30
+<A NAME="tex2html1455"
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="tex2html1445"
33
+<A NAME="tex2html1451"
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="tex2html1439"
36
+<A NAME="tex2html1445"
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="tex2html1447"
39
+<A NAME="tex2html1453"
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="tex2html1450"
43
+<B> Next:</B> <A NAME="tex2html1456"
44 44
   HREF="node60.html">Gadoyanvirus</A>
45
-<B> Up:</B> <A NAME="tex2html1446"
45
+<B> Up:</B> <A NAME="tex2html1452"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1440"
47
+<B> Previous:</B> <A NAME="tex2html1446"
48 48
   HREF="node58.html">DSpamPD</A>
49
- &nbsp <B>  <A NAME="tex2html1448"
49
+ &nbsp <B>  <A NAME="tex2html1454"
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-01-09
71
+2006-04-29
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="tex2html635"
30
+<A NAME="tex2html641"
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="tex2html631"
33
+<A NAME="tex2html637"
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="tex2html625"
36
+<A NAME="tex2html631"
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="tex2html633"
39
+<A NAME="tex2html639"
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="tex2html636"
43
+<B> Next:</B> <A NAME="tex2html642"
44 44
   HREF="node7.html">Supported platforms</A>
45
-<B> Up:</B> <A NAME="tex2html632"
45
+<B> Up:</B> <A NAME="tex2html638"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html626"
47
+<B> Previous:</B> <A NAME="tex2html632"
48 48
   HREF="node5.html">Virus submitting</A>
49
- &nbsp <B>  <A NAME="tex2html634"
49
+ &nbsp <B>  <A NAME="tex2html640"
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="tex2html637"
65
+<LI><A NAME="tex2html643"
66 66
   HREF="node7.html">Supported platforms</A>
67
-<LI><A NAME="tex2html638"
67
+<LI><A NAME="tex2html644"
68 68
   HREF="node8.html">Binary packages</A>
69
-<LI><A NAME="tex2html639"
69
+<LI><A NAME="tex2html645"
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-01-09
76
+2006-04-29
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="tex2html1461"
30
+<A NAME="tex2html1467"
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="tex2html1457"
33
+<A NAME="tex2html1463"
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="tex2html1451"
36
+<A NAME="tex2html1457"
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="tex2html1459"
39
+<A NAME="tex2html1465"
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="tex2html1462"
43
+<B> Next:</B> <A NAME="tex2html1468"
44 44
   HREF="node61.html">hMailServer</A>
45
-<B> Up:</B> <A NAME="tex2html1458"
45
+<B> Up:</B> <A NAME="tex2html1464"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1452"
47
+<B> Previous:</B> <A NAME="tex2html1458"
48 48
   HREF="node59.html">exiscan</A>
49
- &nbsp <B>  <A NAME="tex2html1460"
49
+ &nbsp <B>  <A NAME="tex2html1466"
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-01-09
72
+2006-04-29
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="tex2html1473"
30
+<A NAME="tex2html1479"
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="tex2html1469"
33
+<A NAME="tex2html1475"
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="tex2html1463"
36
+<A NAME="tex2html1469"
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="tex2html1471"
39
+<A NAME="tex2html1477"
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="tex2html1474"
43
+<B> Next:</B> <A NAME="tex2html1480"
44 44
   HREF="node62.html">IVS Milter</A>
45
-<B> Up:</B> <A NAME="tex2html1470"
45
+<B> Up:</B> <A NAME="tex2html1476"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1464"
47
+<B> Previous:</B> <A NAME="tex2html1470"
48 48
   HREF="node60.html">Gadoyanvirus</A>
49
- &nbsp <B>  <A NAME="tex2html1472"
49
+ &nbsp <B>  <A NAME="tex2html1478"
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-01-09
73
+2006-04-29
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="tex2html1485"
30
+<A NAME="tex2html1491"
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="tex2html1481"
33
+<A NAME="tex2html1487"
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="tex2html1475"
36
+<A NAME="tex2html1481"
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="tex2html1483"
39
+<A NAME="tex2html1489"
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="tex2html1486"
43
+<B> Next:</B> <A NAME="tex2html1492"
44 44
   HREF="node63.html">j-chkmail</A>
45
-<B> Up:</B> <A NAME="tex2html1482"
45
+<B> Up:</B> <A NAME="tex2html1488"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1476"
47
+<B> Previous:</B> <A NAME="tex2html1482"
48 48
   HREF="node61.html">hMailServer</A>
49
- &nbsp <B>  <A NAME="tex2html1484"
49
+ &nbsp <B>  <A NAME="tex2html1490"
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-01-09
70
+2006-04-29
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="tex2html1497"
30
+<A NAME="tex2html1503"
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="tex2html1493"
33
+<A NAME="tex2html1499"
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="tex2html1487"
36
+<A NAME="tex2html1493"
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="tex2html1495"
39
+<A NAME="tex2html1501"
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="tex2html1498"
43
+<B> Next:</B> <A NAME="tex2html1504"
44 44
   HREF="node64.html">Mail Avenger</A>
45
-<B> Up:</B> <A NAME="tex2html1494"
45
+<B> Up:</B> <A NAME="tex2html1500"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1488"
47
+<B> Previous:</B> <A NAME="tex2html1494"
48 48
   HREF="node62.html">IVS Milter</A>
49
- &nbsp <B>  <A NAME="tex2html1496"
49
+ &nbsp <B>  <A NAME="tex2html1502"
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-01-09
72
+2006-04-29
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="tex2html1509"
30
+<A NAME="tex2html1515"
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="tex2html1505"
33
+<A NAME="tex2html1511"
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="tex2html1499"
36
+<A NAME="tex2html1505"
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="tex2html1507"
39
+<A NAME="tex2html1513"
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="tex2html1510"
43
+<B> Next:</B> <A NAME="tex2html1516"
44 44
   HREF="node65.html">Mailnees</A>
45
-<B> Up:</B> <A NAME="tex2html1506"
45
+<B> Up:</B> <A NAME="tex2html1512"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1500"
47
+<B> Previous:</B> <A NAME="tex2html1506"
48 48
   HREF="node63.html">j-chkmail</A>
49
- &nbsp <B>  <A NAME="tex2html1508"
49
+ &nbsp <B>  <A NAME="tex2html1514"
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-01-09
72
+2006-04-29
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="tex2html1521"
30
+<A NAME="tex2html1527"
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="tex2html1517"
33
+<A NAME="tex2html1523"
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="tex2html1511"
36
+<A NAME="tex2html1517"
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="tex2html1519"
39
+<A NAME="tex2html1525"
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="tex2html1522"
43
+<B> Next:</B> <A NAME="tex2html1528"
44 44
   HREF="node66.html">MailScanner</A>
45
-<B> Up:</B> <A NAME="tex2html1518"
45
+<B> Up:</B> <A NAME="tex2html1524"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1512"
47
+<B> Previous:</B> <A NAME="tex2html1518"
48 48
   HREF="node64.html">Mail Avenger</A>
49
- &nbsp <B>  <A NAME="tex2html1520"
49
+ &nbsp <B>  <A NAME="tex2html1526"
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-01-09
68
+2006-04-29
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="tex2html1533"
30
+<A NAME="tex2html1539"
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="tex2html1529"
33
+<A NAME="tex2html1535"
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="tex2html1523"
36
+<A NAME="tex2html1529"
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="tex2html1531"
39
+<A NAME="tex2html1537"
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="tex2html1534"
43
+<B> Next:</B> <A NAME="tex2html1540"
44 44
   HREF="node67.html">Maverix</A>
45
-<B> Up:</B> <A NAME="tex2html1530"
45
+<B> Up:</B> <A NAME="tex2html1536"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1524"
47
+<B> Previous:</B> <A NAME="tex2html1530"
48 48
   HREF="node65.html">Mailnees</A>
49
- &nbsp <B>  <A NAME="tex2html1532"
49
+ &nbsp <B>  <A NAME="tex2html1538"
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-01-09
71
+2006-04-29
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="tex2html1545"
30
+<A NAME="tex2html1551"
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="tex2html1541"
33
+<A NAME="tex2html1547"
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="tex2html1535"
36
+<A NAME="tex2html1541"
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="tex2html1543"
39
+<A NAME="tex2html1549"
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="tex2html1546"
43
+<B> Next:</B> <A NAME="tex2html1552"
44 44
   HREF="node68.html">MIMEDefang</A>
45
-<B> Up:</B> <A NAME="tex2html1542"
45
+<B> Up:</B> <A NAME="tex2html1548"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1536"
47
+<B> Previous:</B> <A NAME="tex2html1542"
48 48
   HREF="node66.html">MailScanner</A>
49
- &nbsp <B>  <A NAME="tex2html1544"
49
+ &nbsp <B>  <A NAME="tex2html1550"
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-01-09
69
+2006-04-29
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="tex2html1557"
30
+<A NAME="tex2html1563"
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="tex2html1553"
33
+<A NAME="tex2html1559"
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="tex2html1547"
36
+<A NAME="tex2html1553"
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="tex2html1555"
39
+<A NAME="tex2html1561"
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="tex2html1558"
43
+<B> Next:</B> <A NAME="tex2html1564"
44 44
   HREF="node69.html">mxGuard for IMail</A>
45
-<B> Up:</B> <A NAME="tex2html1554"
45
+<B> Up:</B> <A NAME="tex2html1560"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1548"
47
+<B> Previous:</B> <A NAME="tex2html1554"
48 48
   HREF="node67.html">Maverix</A>
49
- &nbsp <B>  <A NAME="tex2html1556"
49
+ &nbsp <B>  <A NAME="tex2html1562"
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-01-09
68
+2006-04-29
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="tex2html1569"
30
+<A NAME="tex2html1575"
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="tex2html1565"
33
+<A NAME="tex2html1571"
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="tex2html1559"
36
+<A NAME="tex2html1565"
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="tex2html1567"
39
+<A NAME="tex2html1573"
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="tex2html1570"
43
+<B> Next:</B> <A NAME="tex2html1576"
44 44
   HREF="node70.html">OdeiaVir</A>
45
-<B> Up:</B> <A NAME="tex2html1566"
45
+<B> Up:</B> <A NAME="tex2html1572"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1560"
47
+<B> Previous:</B> <A NAME="tex2html1566"
48 48
   HREF="node68.html">MIMEDefang</A>
49
- &nbsp <B>  <A NAME="tex2html1568"
49
+ &nbsp <B>  <A NAME="tex2html1574"
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-01-09
70
+2006-04-29
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="tex2html650"
30
+<A NAME="tex2html656"
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="tex2html646"
33
+<A NAME="tex2html652"
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="tex2html640"
36
+<A NAME="tex2html646"
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="tex2html648"
39
+<A NAME="tex2html654"
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="tex2html651"
43
+<B> Next:</B> <A NAME="tex2html657"
44 44
   HREF="node8.html">Binary packages</A>
45
-<B> Up:</B> <A NAME="tex2html647"
45
+<B> Up:</B> <A NAME="tex2html653"
46 46
   HREF="node6.html">Base package</A>
47
-<B> Previous:</B> <A NAME="tex2html641"
47
+<B> Previous:</B> <A NAME="tex2html647"
48 48
   HREF="node6.html">Base package</A>
49
- &nbsp <B>  <A NAME="tex2html649"
49
+ &nbsp <B>  <A NAME="tex2html655"
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-01-09
99
+2006-04-29
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="tex2html1581"
30
+<A NAME="tex2html1587"
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="tex2html1577"
33
+<A NAME="tex2html1583"
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="tex2html1571"
36
+<A NAME="tex2html1577"
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="tex2html1579"
39
+<A NAME="tex2html1585"
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="tex2html1582"
43
+<B> Next:</B> <A NAME="tex2html1588"
44 44
   HREF="node71.html">OpenProtect</A>
45
-<B> Up:</B> <A NAME="tex2html1578"
45
+<B> Up:</B> <A NAME="tex2html1584"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1572"
47
+<B> Previous:</B> <A NAME="tex2html1578"
48 48
   HREF="node69.html">mxGuard for IMail</A>
49
- &nbsp <B>  <A NAME="tex2html1580"
49
+ &nbsp <B>  <A NAME="tex2html1586"
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-01-09
68
+2006-04-29
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="tex2html1593"
30
+<A NAME="tex2html1599"
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="tex2html1589"
33
+<A NAME="tex2html1595"
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="tex2html1583"
36
+<A NAME="tex2html1589"
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="tex2html1591"
39
+<A NAME="tex2html1597"
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="tex2html1594"
43
+<B> Next:</B> <A NAME="tex2html1600"
44 44
   HREF="node72.html">Protea AntiVirus Tools</A>
45
-<B> Up:</B> <A NAME="tex2html1590"
45
+<B> Up:</B> <A NAME="tex2html1596"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1584"
47
+<B> Previous:</B> <A NAME="tex2html1590"
48 48
   HREF="node70.html">OdeiaVir</A>
49
- &nbsp <B>  <A NAME="tex2html1592"
49
+ &nbsp <B>  <A NAME="tex2html1598"
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-01-09
72
+2006-04-29
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="tex2html1605"
30
+<A NAME="tex2html1611"
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="tex2html1601"
33
+<A NAME="tex2html1607"
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="tex2html1595"
36
+<A NAME="tex2html1601"
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="tex2html1603"
39
+<A NAME="tex2html1609"
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="tex2html1606"
43
+<B> Next:</B> <A NAME="tex2html1612"
44 44
   HREF="node73.html">PSCM</A>
45
-<B> Up:</B> <A NAME="tex2html1602"
45
+<B> Up:</B> <A NAME="tex2html1608"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1596"
47
+<B> Previous:</B> <A NAME="tex2html1602"
48 48
   HREF="node71.html">OpenProtect</A>
49
- &nbsp <B>  <A NAME="tex2html1604"
49
+ &nbsp <B>  <A NAME="tex2html1610"
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-01-09
71
+2006-04-29
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="tex2html1617"
30
+<A NAME="tex2html1623"
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="tex2html1613"
33
+<A NAME="tex2html1619"
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="tex2html1607"
36
+<A NAME="tex2html1613"
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="tex2html1615"
39
+<A NAME="tex2html1621"
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="tex2html1618"
43
+<B> Next:</B> <A NAME="tex2html1624"
44 44
   HREF="node74.html">PTSMail Utilities</A>
45
-<B> Up:</B> <A NAME="tex2html1614"
45
+<B> Up:</B> <A NAME="tex2html1620"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1608"
47
+<B> Previous:</B> <A NAME="tex2html1614"
48 48
   HREF="node72.html">Protea AntiVirus Tools</A>
49
- &nbsp <B>  <A NAME="tex2html1616"
49
+ &nbsp <B>  <A NAME="tex2html1622"
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-01-09
70
+2006-04-29
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="tex2html1629"
30
+<A NAME="tex2html1635"
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="tex2html1625"
33
+<A NAME="tex2html1631"
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="tex2html1619"
36
+<A NAME="tex2html1625"
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="tex2html1627"
39
+<A NAME="tex2html1633"
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="tex2html1630"
43
+<B> Next:</B> <A NAME="tex2html1636"
44 44
   HREF="node75.html">pymavis</A>
45
-<B> Up:</B> <A NAME="tex2html1626"
45
+<B> Up:</B> <A NAME="tex2html1632"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1620"
47
+<B> Previous:</B> <A NAME="tex2html1626"
48 48
   HREF="node73.html">PSCM</A>
49
- &nbsp <B>  <A NAME="tex2html1628"
49
+ &nbsp <B>  <A NAME="tex2html1634"
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-01-09
68
+2006-04-29
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="tex2html1641"
30
+<A NAME="tex2html1647"
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="tex2html1637"
33
+<A NAME="tex2html1643"
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="tex2html1631"
36
+<A NAME="tex2html1637"
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="tex2html1639"
39
+<A NAME="tex2html1645"
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="tex2html1642"
43
+<B> Next:</B> <A NAME="tex2html1648"
44 44
   HREF="node76.html">Qmail-Scanner</A>
45
-<B> Up:</B> <A NAME="tex2html1638"
45
+<B> Up:</B> <A NAME="tex2html1644"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1632"
47
+<B> Previous:</B> <A NAME="tex2html1638"
48 48
   HREF="node74.html">PTSMail Utilities</A>
49
- &nbsp <B>  <A NAME="tex2html1640"
49
+ &nbsp <B>  <A NAME="tex2html1646"
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-01-09
73
+2006-04-29
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="tex2html1653"
30
+<A NAME="tex2html1659"
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="tex2html1649"
33
+<A NAME="tex2html1655"
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="tex2html1643"
36
+<A NAME="tex2html1649"
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="tex2html1651"
39
+<A NAME="tex2html1657"
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="tex2html1654"
43
+<B> Next:</B> <A NAME="tex2html1660"
44 44
   HREF="node77.html">qpsmtp</A>
45
-<B> Up:</B> <A NAME="tex2html1650"
45
+<B> Up:</B> <A NAME="tex2html1656"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1644"
47
+<B> Previous:</B> <A NAME="tex2html1650"
48 48
   HREF="node75.html">pymavis</A>
49
- &nbsp <B>  <A NAME="tex2html1652"
49
+ &nbsp <B>  <A NAME="tex2html1658"
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-01-09
69
+2006-04-29
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="tex2html1665"
30
+<A NAME="tex2html1671"
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="tex2html1661"
33
+<A NAME="tex2html1667"
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="tex2html1655"
36
+<A NAME="tex2html1661"
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="tex2html1663"
39
+<A NAME="tex2html1669"
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="tex2html1666"
43
+<B> Next:</B> <A NAME="tex2html1672"
44 44
   HREF="node78.html">qscanq</A>
45
-<B> Up:</B> <A NAME="tex2html1662"
45
+<B> Up:</B> <A NAME="tex2html1668"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1656"
47
+<B> Previous:</B> <A NAME="tex2html1662"
48 48
   HREF="node76.html">Qmail-Scanner</A>
49
- &nbsp <B>  <A NAME="tex2html1664"
49
+ &nbsp <B>  <A NAME="tex2html1670"
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-01-09
70
+2006-04-29
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="tex2html1677"
30
+<A NAME="tex2html1683"
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="tex2html1673"
33
+<A NAME="tex2html1679"
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="tex2html1667"
36
+<A NAME="tex2html1673"
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="tex2html1675"
39
+<A NAME="tex2html1681"
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="tex2html1678"
43
+<B> Next:</B> <A NAME="tex2html1684"
44 44
   HREF="node79.html">qSheff</A>
45
-<B> Up:</B> <A NAME="tex2html1674"
45
+<B> Up:</B> <A NAME="tex2html1680"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1668"
47
+<B> Previous:</B> <A NAME="tex2html1674"
48 48
   HREF="node77.html">qpsmtp</A>
49
- &nbsp <B>  <A NAME="tex2html1676"
49
+ &nbsp <B>  <A NAME="tex2html1682"
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-01-09
70
+2006-04-29
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="tex2html1689"
30
+<A NAME="tex2html1695"
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="tex2html1685"
33
+<A NAME="tex2html1691"
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="tex2html1679"
36
+<A NAME="tex2html1685"
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="tex2html1687"
39
+<A NAME="tex2html1693"
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="tex2html1690"
43
+<B> Next:</B> <A NAME="tex2html1696"
44 44
   HREF="node80.html">RevolSys SMTP kit for</A>
45
-<B> Up:</B> <A NAME="tex2html1686"
45
+<B> Up:</B> <A NAME="tex2html1692"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1680"
47
+<B> Previous:</B> <A NAME="tex2html1686"
48 48
   HREF="node78.html">qscanq</A>
49
- &nbsp <B>  <A NAME="tex2html1688"
49
+ &nbsp <B>  <A NAME="tex2html1694"
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-01-09
70
+2006-04-29
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="tex2html662"
30
+<A NAME="tex2html668"
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="tex2html658"
33
+<A NAME="tex2html664"
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="tex2html652"
36
+<A NAME="tex2html658"
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="tex2html660"
39
+<A NAME="tex2html666"
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="tex2html663"
43
+<B> Next:</B> <A NAME="tex2html669"
44 44
   HREF="node9.html">Daily built snapshots</A>
45
-<B> Up:</B> <A NAME="tex2html659"
45
+<B> Up:</B> <A NAME="tex2html665"
46 46
   HREF="node6.html">Base package</A>
47
-<B> Previous:</B> <A NAME="tex2html653"
47
+<B> Previous:</B> <A NAME="tex2html659"
48 48
   HREF="node7.html">Supported platforms</A>
49
- &nbsp <B>  <A NAME="tex2html661"
49
+ &nbsp <B>  <A NAME="tex2html667"
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="tex2html662"
237
+<A NAME="tex2html668"
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="tex2html658"
240
+<A NAME="tex2html664"
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="tex2html652"
243
+<A NAME="tex2html658"
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="tex2html660"
246
+<A NAME="tex2html666"
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="tex2html663"
250
+<B> Next:</B> <A NAME="tex2html669"
251 251
   HREF="node9.html">Daily built snapshots</A>
252
-<B> Up:</B> <A NAME="tex2html659"
252
+<B> Up:</B> <A NAME="tex2html665"
253 253
   HREF="node6.html">Base package</A>
254
-<B> Previous:</B> <A NAME="tex2html653"
254
+<B> Previous:</B> <A NAME="tex2html659"
255 255
   HREF="node7.html">Supported platforms</A>
256
- &nbsp <B>  <A NAME="tex2html661"
256
+ &nbsp <B>  <A NAME="tex2html667"
257 257
   HREF="node1.html">Contents</A></B> 
258 258
 <!--End of Navigation Panel-->
259 259
 <ADDRESS>
260 260
 Tomasz Kojm
261
-2006-01-09
261
+2006-04-29
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="tex2html1701"
30
+<A NAME="tex2html1707"
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="tex2html1697"
33
+<A NAME="tex2html1703"
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="tex2html1691"
36
+<A NAME="tex2html1697"
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="tex2html1699"
39
+<A NAME="tex2html1705"
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="tex2html1702"
43
+<B> Next:</B> <A NAME="tex2html1708"
44 44
   HREF="node81.html">Sagator</A>
45
-<B> Up:</B> <A NAME="tex2html1698"
45
+<B> Up:</B> <A NAME="tex2html1704"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1692"
47
+<B> Previous:</B> <A NAME="tex2html1698"
48 48
   HREF="node79.html">qSheff</A>
49
- &nbsp <B>  <A NAME="tex2html1700"
49
+ &nbsp <B>  <A NAME="tex2html1706"
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-01-09
70
+2006-04-29
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="tex2html1713"
30
+<A NAME="tex2html1719"
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="tex2html1709"
33
+<A NAME="tex2html1715"
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="tex2html1703"
36
+<A NAME="tex2html1709"
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="tex2html1711"
39
+<A NAME="tex2html1717"
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="tex2html1714"
43
+<B> Next:</B> <A NAME="tex2html1720"
44 44
   HREF="node82.html">Scrubber</A>
45
-<B> Up:</B> <A NAME="tex2html1710"
45
+<B> Up:</B> <A NAME="tex2html1716"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1704"
47
+<B> Previous:</B> <A NAME="tex2html1710"
48 48
   HREF="node80.html">RevolSys SMTP kit for</A>
49
- &nbsp <B>  <A NAME="tex2html1712"
49
+ &nbsp <B>  <A NAME="tex2html1718"
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-01-09
71
+2006-04-29
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="tex2html1725"
30
+<A NAME="tex2html1731"
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="tex2html1721"
33
+<A NAME="tex2html1727"
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="tex2html1715"
36
+<A NAME="tex2html1721"
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="tex2html1723"
39
+<A NAME="tex2html1729"
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="tex2html1726"
43
+<B> Next:</B> <A NAME="tex2html1732"
44 44
   HREF="node83.html">Secure Mail Intelligence!</A>
45
-<B> Up:</B> <A NAME="tex2html1722"
45
+<B> Up:</B> <A NAME="tex2html1728"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1716"
47
+<B> Previous:</B> <A NAME="tex2html1722"
48 48
   HREF="node81.html">Sagator</A>
49
- &nbsp <B>  <A NAME="tex2html1724"
49
+ &nbsp <B>  <A NAME="tex2html1730"
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-01-09
75
+2006-04-29
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="tex2html1737"
30
+<A NAME="tex2html1743"
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="tex2html1733"
33
+<A NAME="tex2html1739"
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="tex2html1727"
36
+<A NAME="tex2html1733"
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="tex2html1735"
39
+<A NAME="tex2html1741"
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="tex2html1738"
43
+<B> Next:</B> <A NAME="tex2html1744"
44 44
   HREF="node84.html">simscan</A>
45
-<B> Up:</B> <A NAME="tex2html1734"
45
+<B> Up:</B> <A NAME="tex2html1740"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1728"
47
+<B> Previous:</B> <A NAME="tex2html1734"
48 48
   HREF="node82.html">Scrubber</A>
49
- &nbsp <B>  <A NAME="tex2html1736"
49
+ &nbsp <B>  <A NAME="tex2html1742"
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-01-09
79
+2006-04-29
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="tex2html1749"
30
+<A NAME="tex2html1755"
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="tex2html1745"
33
+<A NAME="tex2html1751"
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="tex2html1739"
36
+<A NAME="tex2html1745"
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="tex2html1747"
39
+<A NAME="tex2html1753"
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="tex2html1750"
43
+<B> Next:</B> <A NAME="tex2html1756"
44 44
   HREF="node85.html">SmarterMail Filter</A>
45
-<B> Up:</B> <A NAME="tex2html1746"
45
+<B> Up:</B> <A NAME="tex2html1752"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1740"
47
+<B> Previous:</B> <A NAME="tex2html1746"
48 48
   HREF="node83.html">Secure Mail Intelligence!</A>
49
- &nbsp <B>  <A NAME="tex2html1748"
49
+ &nbsp <B>  <A NAME="tex2html1754"
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-01-09
70
+2006-04-29
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="tex2html1761"
30
+<A NAME="tex2html1767"
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="tex2html1757"
33
+<A NAME="tex2html1763"
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="tex2html1751"
36
+<A NAME="tex2html1757"
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="tex2html1759"
39
+<A NAME="tex2html1765"
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="tex2html1762"
43
+<B> Next:</B> <A NAME="tex2html1768"
44 44
   HREF="node86.html">smf-clamd</A>
45
-<B> Up:</B> <A NAME="tex2html1758"
45
+<B> Up:</B> <A NAME="tex2html1764"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1752"
47
+<B> Previous:</B> <A NAME="tex2html1758"
48 48
   HREF="node84.html">simscan</A>
49
- &nbsp <B>  <A NAME="tex2html1760"
49
+ &nbsp <B>  <A NAME="tex2html1766"
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-01-09
69
+2006-04-29
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="tex2html1773"
30
+<A NAME="tex2html1779"
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="tex2html1769"
33
+<A NAME="tex2html1775"
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="tex2html1763"
36
+<A NAME="tex2html1769"
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="tex2html1771"
39
+<A NAME="tex2html1777"
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="tex2html1774"
43
+<B> Next:</B> <A NAME="tex2html1780"
44 44
   HREF="node87.html">smtpfilter</A>
45
-<B> Up:</B> <A NAME="tex2html1770"
45
+<B> Up:</B> <A NAME="tex2html1776"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1764"
47
+<B> Previous:</B> <A NAME="tex2html1770"
48 48
   HREF="node85.html">SmarterMail Filter</A>
49
- &nbsp <B>  <A NAME="tex2html1772"
49
+ &nbsp <B>  <A NAME="tex2html1778"
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-01-09
70
+2006-04-29
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="tex2html1785"
30
+<A NAME="tex2html1791"
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="tex2html1781"
33
+<A NAME="tex2html1787"
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="tex2html1775"
36
+<A NAME="tex2html1781"
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="tex2html1783"
39
+<A NAME="tex2html1789"
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="tex2html1786"
43
+<B> Next:</B> <A NAME="tex2html1792"
44 44
   HREF="node88.html">smtp-gated</A>
45
-<B> Up:</B> <A NAME="tex2html1782"
45
+<B> Up:</B> <A NAME="tex2html1788"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1776"
47
+<B> Previous:</B> <A NAME="tex2html1782"
48 48
   HREF="node86.html">smf-clamd</A>
49
- &nbsp <B>  <A NAME="tex2html1784"
49
+ &nbsp <B>  <A NAME="tex2html1790"
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-01-09
70
+2006-04-29
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="tex2html1797"
30
+<A NAME="tex2html1803"
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="tex2html1793"
33
+<A NAME="tex2html1799"
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="tex2html1787"
36
+<A NAME="tex2html1793"
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="tex2html1795"
39
+<A NAME="tex2html1801"
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="tex2html1798"
43
+<B> Next:</B> <A NAME="tex2html1804"
44 44
   HREF="node89.html">smtp-vilter</A>
45
-<B> Up:</B> <A NAME="tex2html1794"
45
+<B> Up:</B> <A NAME="tex2html1800"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1788"
47
+<B> Previous:</B> <A NAME="tex2html1794"
48 48
   HREF="node87.html">smtpfilter</A>
49
- &nbsp <B>  <A NAME="tex2html1796"
49
+ &nbsp <B>  <A NAME="tex2html1802"
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-01-09
72
+2006-04-29
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="tex2html1809"
30
+<A NAME="tex2html1815"
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="tex2html1805"
33
+<A NAME="tex2html1811"
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="tex2html1799"
36
+<A NAME="tex2html1805"
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="tex2html1807"
39
+<A NAME="tex2html1813"
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="tex2html1810"
43
+<B> Next:</B> <A NAME="tex2html1816"
44 44
   HREF="node90.html">Zabit</A>
45
-<B> Up:</B> <A NAME="tex2html1806"
45
+<B> Up:</B> <A NAME="tex2html1812"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1800"
47
+<B> Previous:</B> <A NAME="tex2html1806"
48 48
   HREF="node88.html">smtp-gated</A>
49
- &nbsp <B>  <A NAME="tex2html1808"
49
+ &nbsp <B>  <A NAME="tex2html1814"
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-01-09
71
+2006-04-29
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="tex2html672"
29
+<A NAME="tex2html678"
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="tex2html668"
32
+<A NAME="tex2html674"
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="tex2html664"
35
+<A NAME="tex2html670"
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="tex2html670"
38
+<A NAME="tex2html676"
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="tex2html673"
42
+<B> Next:</B> <A NAME="tex2html679"
43 43
   HREF="node10.html">Installation</A>
44
-<B> Up:</B> <A NAME="tex2html669"
44
+<B> Up:</B> <A NAME="tex2html675"
45 45
   HREF="node6.html">Base package</A>
46
-<B> Previous:</B> <A NAME="tex2html665"
46
+<B> Previous:</B> <A NAME="tex2html671"
47 47
   HREF="node8.html">Binary packages</A>
48
- &nbsp <B>  <A NAME="tex2html671"
48
+ &nbsp <B>  <A NAME="tex2html677"
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-01-09
83
+2006-04-29
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="tex2html1821"
30
+<A NAME="tex2html1827"
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="tex2html1817"
33
+<A NAME="tex2html1823"
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="tex2html1811"
36
+<A NAME="tex2html1817"
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="tex2html1819"
39
+<A NAME="tex2html1825"
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="tex2html1822"
43
+<B> Next:</B> <A NAME="tex2html1828"
44 44
   HREF="node91.html">zmscanner</A>
45
-<B> Up:</B> <A NAME="tex2html1818"
45
+<B> Up:</B> <A NAME="tex2html1824"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1812"
47
+<B> Previous:</B> <A NAME="tex2html1818"
48 48
   HREF="node89.html">smtp-vilter</A>
49
- &nbsp <B>  <A NAME="tex2html1820"
49
+ &nbsp <B>  <A NAME="tex2html1826"
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-01-09
68
+2006-04-29
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="tex2html1831"
29
+<A NAME="tex2html1837"
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="tex2html1827"
32
+<A NAME="tex2html1833"
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="tex2html1823"
35
+<A NAME="tex2html1829"
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="tex2html1829"
38
+<A NAME="tex2html1835"
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="tex2html1832"
42
+<B> Next:</B> <A NAME="tex2html1838"
43 43
   HREF="node92.html">MTA + POP3 Proxy</A>
44
-<B> Up:</B> <A NAME="tex2html1828"
44
+<B> Up:</B> <A NAME="tex2html1834"
45 45
   HREF="node48.html">MTA + ClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html1824"
46
+<B> Previous:</B> <A NAME="tex2html1830"
47 47
   HREF="node90.html">Zabit</A>
48
- &nbsp <B>  <A NAME="tex2html1830"
48
+ &nbsp <B>  <A NAME="tex2html1836"
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-01-09
69
+2006-04-29
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="tex2html1843"
30
+<A NAME="tex2html1849"
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="tex2html1839"
33
+<A NAME="tex2html1845"
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="tex2html1833"
36
+<A NAME="tex2html1839"
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="tex2html1841"
39
+<A NAME="tex2html1847"
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="tex2html1844"
43
+<B> Next:</B> <A NAME="tex2html1850"
44 44
   HREF="node93.html">ClamMail</A>
45
-<B> Up:</B> <A NAME="tex2html1840"
45
+<B> Up:</B> <A NAME="tex2html1846"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html1834"
47
+<B> Previous:</B> <A NAME="tex2html1840"
48 48
   HREF="node91.html">zmscanner</A>
49
- &nbsp <B>  <A NAME="tex2html1842"
49
+ &nbsp <B>  <A NAME="tex2html1848"
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="tex2html1845"
65
+<LI><A NAME="tex2html1851"
66 66
   HREF="node93.html">ClamMail</A>
67
-<LI><A NAME="tex2html1846"
67
+<LI><A NAME="tex2html1852"
68 68
   HREF="node94.html">POP3 Virus Scanner Daemon</A>
69
-<LI><A NAME="tex2html1847"
69
+<LI><A NAME="tex2html1853"
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-01-09
76
+2006-04-29
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="tex2html1858"
30
+<A NAME="tex2html1864"
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="tex2html1854"
33
+<A NAME="tex2html1860"
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="tex2html1848"
36
+<A NAME="tex2html1854"
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="tex2html1856"
39
+<A NAME="tex2html1862"
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="tex2html1859"
43
+<B> Next:</B> <A NAME="tex2html1865"
44 44
   HREF="node94.html">POP3 Virus Scanner Daemon</A>
45
-<B> Up:</B> <A NAME="tex2html1855"
45
+<B> Up:</B> <A NAME="tex2html1861"
46 46
   HREF="node92.html">MTA + POP3 Proxy</A>
47
-<B> Previous:</B> <A NAME="tex2html1849"
47
+<B> Previous:</B> <A NAME="tex2html1855"
48 48
   HREF="node92.html">MTA + POP3 Proxy</A>
49
- &nbsp <B>  <A NAME="tex2html1857"
49
+ &nbsp <B>  <A NAME="tex2html1863"
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-01-09
68
+2006-04-29
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="tex2html1870"
30
+<A NAME="tex2html1876"
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="tex2html1866"
33
+<A NAME="tex2html1872"
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="tex2html1860"
36
+<A NAME="tex2html1866"
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="tex2html1868"
39
+<A NAME="tex2html1874"
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="tex2html1871"
43
+<B> Next:</B> <A NAME="tex2html1877"
44 44
   HREF="node95.html">pop3.proxy</A>
45
-<B> Up:</B> <A NAME="tex2html1867"
45
+<B> Up:</B> <A NAME="tex2html1873"
46 46
   HREF="node92.html">MTA + POP3 Proxy</A>
47
-<B> Previous:</B> <A NAME="tex2html1861"
47
+<B> Previous:</B> <A NAME="tex2html1867"
48 48
   HREF="node93.html">ClamMail</A>
49
- &nbsp <B>  <A NAME="tex2html1869"
49
+ &nbsp <B>  <A NAME="tex2html1875"
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-01-09
73
+2006-04-29
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="tex2html1880"
29
+<A NAME="tex2html1886"
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="tex2html1876"
32
+<A NAME="tex2html1882"
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="tex2html1872"
35
+<A NAME="tex2html1878"
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="tex2html1878"
38
+<A NAME="tex2html1884"
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="tex2html1881"
42
+<B> Next:</B> <A NAME="tex2html1887"
43 43
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
44
-<B> Up:</B> <A NAME="tex2html1877"
44
+<B> Up:</B> <A NAME="tex2html1883"
45 45
   HREF="node92.html">MTA + POP3 Proxy</A>
46
-<B> Previous:</B> <A NAME="tex2html1873"
46
+<B> Previous:</B> <A NAME="tex2html1879"
47 47
   HREF="node94.html">POP3 Virus Scanner Daemon</A>
48
- &nbsp <B>  <A NAME="tex2html1879"
48
+ &nbsp <B>  <A NAME="tex2html1885"
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-01-09
74
+2006-04-29
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="tex2html1892"
30
+<A NAME="tex2html1898"
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="tex2html1888"
33
+<A NAME="tex2html1894"
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="tex2html1882"
36
+<A NAME="tex2html1888"
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="tex2html1890"
39
+<A NAME="tex2html1896"
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="tex2html1893"
43
+<B> Next:</B> <A NAME="tex2html1899"
44 44
   HREF="node97.html">DansGuardian Anti-Virus Patch</A>
45
-<B> Up:</B> <A NAME="tex2html1889"
45
+<B> Up:</B> <A NAME="tex2html1895"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html1883"
47
+<B> Previous:</B> <A NAME="tex2html1889"
48 48
   HREF="node95.html">pop3.proxy</A>
49
- &nbsp <B>  <A NAME="tex2html1891"
49
+ &nbsp <B>  <A NAME="tex2html1897"
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="tex2html1894"
65
+<LI><A NAME="tex2html1900"
66 66
   HREF="node97.html">DansGuardian Anti-Virus Patch</A>
67
-<LI><A NAME="tex2html1895"
67
+<LI><A NAME="tex2html1901"
68 68
   HREF="node98.html">Frox</A>
69
-<LI><A NAME="tex2html1896"
69
+<LI><A NAME="tex2html1902"
70 70
   HREF="node99.html">HTTP Anti Virus Proxy</A>
71
-<LI><A NAME="tex2html1897"
71
+<LI><A NAME="tex2html1903"
72 72
   HREF="node100.html">mod_clamav</A>
73
-<LI><A NAME="tex2html1898"
73
+<LI><A NAME="tex2html1904"
74 74
   HREF="node101.html">ClamAV module for ProFTPD</A>
75
-<LI><A NAME="tex2html1899"
75
+<LI><A NAME="tex2html1905"
76 76
   HREF="node102.html">SafeSquid</A>
77
-<LI><A NAME="tex2html1900"
77
+<LI><A NAME="tex2html1906"
78 78
   HREF="node103.html">SquidClamAV Redirector</A>
79
-<LI><A NAME="tex2html1901"
79
+<LI><A NAME="tex2html1907"
80 80
   HREF="node104.html">Squidclam</A>
81
-<LI><A NAME="tex2html1902"
81
+<LI><A NAME="tex2html1908"
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-01-09
88
+2006-04-29
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="tex2html1913"
30
+<A NAME="tex2html1919"
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="tex2html1909"
33
+<A NAME="tex2html1915"
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="tex2html1903"
36
+<A NAME="tex2html1909"
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="tex2html1911"
39
+<A NAME="tex2html1917"
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="tex2html1914"
43
+<B> Next:</B> <A NAME="tex2html1920"
44 44
   HREF="node98.html">Frox</A>
45
-<B> Up:</B> <A NAME="tex2html1910"
45
+<B> Up:</B> <A NAME="tex2html1916"
46 46
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1904"
47
+<B> Previous:</B> <A NAME="tex2html1910"
48 48
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html1912"
49
+ &nbsp <B>  <A NAME="tex2html1918"
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-01-09
70
+2006-04-29
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="tex2html1925"
30
+<A NAME="tex2html1931"
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="tex2html1921"
33
+<A NAME="tex2html1927"
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="tex2html1915"
36
+<A NAME="tex2html1921"
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="tex2html1923"
39
+<A NAME="tex2html1929"
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="tex2html1926"
43
+<B> Next:</B> <A NAME="tex2html1932"
44 44
   HREF="node99.html">HTTP Anti Virus Proxy</A>
45
-<B> Up:</B> <A NAME="tex2html1922"
45
+<B> Up:</B> <A NAME="tex2html1928"
46 46
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1916"
47
+<B> Previous:</B> <A NAME="tex2html1922"
48 48
   HREF="node97.html">DansGuardian Anti-Virus Patch</A>
49
- &nbsp <B>  <A NAME="tex2html1924"
49
+ &nbsp <B>  <A NAME="tex2html1930"
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-01-09
72
+2006-04-29
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="tex2html1937"
30
+<A NAME="tex2html1943"
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="tex2html1933"
33
+<A NAME="tex2html1939"
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="tex2html1927"
36
+<A NAME="tex2html1933"
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="tex2html1935"
39
+<A NAME="tex2html1941"
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="tex2html1938"
43
+<B> Next:</B> <A NAME="tex2html1944"
44 44
   HREF="node100.html">mod_clamav</A>
45
-<B> Up:</B> <A NAME="tex2html1934"
45
+<B> Up:</B> <A NAME="tex2html1940"
46 46
   HREF="node96.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1928"
47
+<B> Previous:</B> <A NAME="tex2html1934"
48 48
   HREF="node98.html">Frox</A>
49
- &nbsp <B>  <A NAME="tex2html1936"
49
+ &nbsp <B>  <A NAME="tex2html1942"
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-01-09
71
+2006-04-29
72 72
 </ADDRESS>
73 73
 </BODY>
74 74
 </HTML>
... ...
@@ -50,6 +50,7 @@
50 50
 #include "../libclamav/others.h"
51 51
 #include "../libclamav/str.h" /* cli_strtok */
52 52
 #include "dns.h"
53
+#include "execute.h"
53 54
 
54 55
 
55 56
 int downloadmanager(const struct cfgstruct *copt, const struct optstruct *opt, const char *hostname)
... ...
@@ -723,9 +724,9 @@ struct cl_cvd *remote_cvdhead(const char *file, int socketfd, const char *hostna
723 723
 	*ims = 1;
724 724
     }
725 725
 
726
-    ch = buffer;
727
-    i = 0;
728
-    while (1) {
726
+    i = 3;
727
+    ch = buffer + i;
728
+    while(i < sizeof(buffer)) {
729 729
       if (*ch == '\n' && *(ch - 1) == '\r' && *(ch - 2) == '\n' && *(ch - 3) == '\r') {
730 730
 	ch++;
731 731
 	i++;
... ...
@@ -733,7 +734,12 @@ struct cl_cvd *remote_cvdhead(const char *file, int socketfd, const char *hostna
733 733
       }
734 734
       ch++;
735 735
       i++;
736
-    }  
736
+    }
737
+
738
+    if(sizeof(buffer) - i < 512) {
739
+	mprintf("@Malformed CVD header detected.\n");
740
+	return NULL;
741
+    }
737 742
 
738 743
     memset(head, 0, sizeof(head));
739 744
 
... ...
@@ -819,7 +825,7 @@ int get_database(const char *dbfile, int socketfd, const char *file, const char
819 819
     while (1) {
820 820
       /* recv one byte at a time, until we reach \r\n\r\n */
821 821
 
822
-      if(recv(socketfd, buffer + i, 1, 0) == -1) {
822
+      if((i >= sizeof(buffer)) || recv(socketfd, buffer + i, 1, 0) == -1) {
823 823
         mprintf("@Error while reading database from %s\n", hostname);
824 824
         close(fd);
825 825
         unlink(file);
... ...
@@ -405,7 +405,7 @@ fileblobSetFilename(fileblob *fb, const char *dir, const char *filename)
405 405
 		(int)(sizeof(fullname) - 9 - strlen(dir)), filename);
406 406
 #endif
407 407
 
408
-#if	defined(C_LINUX) || defined(C_BSD) || defined(HAVE_MKSTEMP) || defined(C_SOLARIS) || defined(C_CYGWIN) || defined(C_QNX6)
408
+#if    defined(C_LINUX) || defined(C_BSD) || defined(HAVE_MKSTEMP) || defined(C_SOLARIS) || defined(C_CYGWIN) || defined(C_QNX6) || defined(C_KFREEBSD_GNU)
409 409
 	cli_dbgmsg("fileblobSetFilename: mkstemp(%s)\n", fullname);
410 410
 	fd = mkstemp(fullname);
411 411
 #else
... ...
@@ -3049,7 +3049,7 @@ strip(char *buf, int len)
3049 3049
 		return i;
3050 3050
 	ptr = &buf[--len];
3051 3051
 
3052
-#if	defined(UNIX) || defined(C_LINUX) || defined(C_DARWIN)	/* watch - it may be in shared text area */
3052
+#if    defined(UNIX) || defined(C_LINUX) || defined(C_DARWIN) || defined(C_KFREEBSD_GNU) /* watch - it may be in shared text area */
3053 3053
 	do
3054 3054
 		if(*ptr)
3055 3055
 			*ptr = '\0';
... ...
@@ -3518,7 +3518,7 @@ rfc1341(message *m, const char *dir)
3518 3518
 	if(id == NULL)
3519 3519
 		return -1;
3520 3520
 
3521
-#ifdef  CYGWIN
3521
+#ifdef  C_CYGWIN
3522 3522
 	if((tmpdir = getenv("TEMP")) == (char *)NULL)
3523 3523
 		if((tmpdir = getenv("TMP")) == (char *)NULL)
3524 3524
 			if((tmpdir = getenv("TMPDIR")) == (char *)NULL)
... ...
@@ -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 7 /* don't touch it */
75
+#define CL_FLEVEL 8 /* don't touch it */
76 76
 
77 77
 short cli_debug_flag = 0, cli_leavetemps_flag = 0;
78 78
 
... ...
@@ -71,6 +71,11 @@ static inline uint32_t EC32(uint32_t v)
71 71
 
72 72
 extern short cli_leavetemps_flag;
73 73
 
74
+struct offset_list {
75
+    uint32_t offset;
76
+    struct offset_list *next;
77
+};
78
+
74 79
 static uint32_t cli_rawaddr(uint32_t rva, struct pe_image_section_hdr *shp, uint16_t nos, unsigned int *err)
75 80
 {
76 81
 	int i, found = 0;
... ...
@@ -84,7 +89,6 @@ static uint32_t cli_rawaddr(uint32_t rva, struct pe_image_section_hdr *shp, uint
84 84
     }
85 85
 
86 86
     if(!found) {
87
-	cli_dbgmsg("Can't calculate raw address from RVA 0x%x\n", rva);
88 87
 	*err = 1;
89 88
 	return 0;
90 89
     }
... ...
@@ -153,17 +157,20 @@ int cli_scanpe(int desc, const char **virname, unsigned long int *scanned, const
153 153
 	uint16_t nsections;
154 154
 	uint32_t e_lfanew; /* address of new exe header */
155 155
 	uint32_t ep; /* entry point (raw) */
156
+	uint8_t polipos = 0;
156 157
 	time_t timestamp;
157 158
 	struct pe_image_file_hdr file_hdr;
158 159
 	struct pe_image_optional_hdr optional_hdr;
159 160
 	struct pe_image_section_hdr *section_hdr;
160 161
 	struct stat sb;
161 162
 	char sname[9], buff[4096], *tempfile;
163
+	unsigned char *ubuff;
164
+	ssize_t bytes;
162 165
 	unsigned int i, found, upx_success = 0, min = 0, max = 0, err, broken = 0;
163 166
 	unsigned int ssize = 0, dsize = 0, dll = 0;
164 167
 	int (*upxfn)(char *, uint32_t , char *, uint32_t *, uint32_t, uint32_t, uint32_t) = NULL;
165 168
 	char *src = NULL, *dest = NULL;
166
-	int ndesc, ret;
169
+	int ndesc, ret = CL_CLEAN;
167 170
 
168 171
 
169 172
     if(read(desc, &e_magic, sizeof(e_magic)) != sizeof(e_magic)) {
... ...
@@ -481,6 +488,12 @@ int cli_scanpe(int desc, const char **virname, unsigned long int *scanned, const
481 481
 		max = EC32(section_hdr[i].VirtualAddress) + EC32(section_hdr[i].SizeOfRawData);
482 482
 	}
483 483
 
484
+	if(!strlen(sname)) {
485
+	    if(EC32(section_hdr[i].VirtualSize) > 40000 && EC32(section_hdr[i].VirtualSize) < 70000) {
486
+		if(EC32(section_hdr[i].Characteristics) == 0xe0000060)
487
+		    polipos = i;
488
+	    }
489
+	}
484 490
     }
485 491
 
486 492
     if((ep = EC32(optional_hdr.AddressOfEntryPoint)) >= min && !(ep = cli_rawaddr(EC32(optional_hdr.AddressOfEntryPoint), section_hdr, nsections, &err)) && err) {
... ...
@@ -549,6 +562,97 @@ int cli_scanpe(int desc, const char **virname, unsigned long int *scanned, const
549 549
 	}
550 550
     }
551 551
 
552
+    /* W32.Polipos.A */
553
+   if(polipos && !dll && nsections > 2 && nsections < 13 && e_lfanew <= 0x800 && (EC16(optional_hdr.Subsystem) == 2 || EC16(optional_hdr.Subsystem) == 3) && EC16(file_hdr.Machine) == 0x14c && optional_hdr.SizeOfStackReserve >= 0x80000) {
554
+	    uint32_t remaining = EC32(section_hdr[0].SizeOfRawData);
555
+	    uint32_t chunk = sizeof(buff);
556
+	    uint32_t val, shift, raddr, curroff, total = 0;
557
+	    const char *jpt;
558
+	    struct offset_list *offlist = NULL, *offnode;
559
+
560
+
561
+	cli_dbgmsg("Detected W32.Polipos.A characteristics\n");
562
+
563
+	if(remaining < chunk)
564
+	    chunk = remaining;
565
+
566
+	lseek(desc, EC32(section_hdr[0].PointerToRawData), SEEK_SET);
567
+	while((bytes = cli_readn(desc, buff, chunk)) > 0) {
568
+	    shift = 0;
569
+	    while(bytes - 5 > shift) {
570
+		jpt = buff + shift;
571
+		if(*jpt != '\xe9' && *jpt != '\xe8') {
572
+		    shift++;
573
+		    continue;
574
+		}
575
+		val = cli_readint32(jpt + 1);
576
+		val += 5 + EC32(section_hdr[0].VirtualAddress) + total + shift;
577
+		raddr = cli_rawaddr(val, section_hdr, nsections, &err);
578
+
579
+		if(!err && (raddr >= EC32(section_hdr[polipos].PointerToRawData) && raddr < EC32(section_hdr[polipos].PointerToRawData) + EC32(section_hdr[polipos].SizeOfRawData)) && (!offlist || (raddr != offlist->offset))) {
580
+		    offnode = (struct offset_list *) cli_malloc(sizeof(struct offset_list));
581
+		    if(!offnode) {
582
+			free(section_hdr);
583
+			while(offlist) {
584
+			    offnode = offlist;
585
+			    offlist = offlist->next;
586
+			    free(offnode);
587
+			}
588
+			return CL_EMEM;
589
+		    }
590
+		    offnode->offset = raddr;
591
+		    offnode->next = offlist;
592
+		    offlist = offnode;
593
+		}
594
+
595
+		shift++;
596
+	    }
597
+
598
+	    if(remaining < chunk) {
599
+		chunk = remaining;
600
+	    } else {
601
+		remaining -= bytes;
602
+		if(remaining < chunk) {
603
+		    chunk = remaining;
604
+		}
605
+	    }
606
+
607
+	    if(!remaining)
608
+		break;
609
+
610
+	    total += bytes;
611
+	}
612
+
613
+	offnode = offlist;
614
+	while(offnode) {
615
+	    cli_dbgmsg("Polipos: Checking offset 0x%x (%u) - ", offnode->offset, offnode->offset);
616
+	    lseek(desc, offnode->offset, SEEK_SET);
617
+	    if(cli_readn(desc, buff, 9) == 9) {
618
+		ubuff = (unsigned char *) buff;
619
+		if(ubuff[0] == 0x55 && ubuff[1] == 0x8b && ubuff[2] == 0xec &&
620
+		   ((ubuff[3] == 0x83 && ubuff[4] == 0xec && ubuff[6] == 0x60) ||  ubuff[3] == 0x60 ||
621
+		    (ubuff[3] == 0x81 && ubuff[4] == 0xec && ubuff[7] == 0x00 && ubuff[8] == 0x00))) {
622
+		    ret = CL_VIRUS;
623
+		    *virname = "W32.Polipos.A";
624
+		    break;
625
+		}
626
+	    }
627
+	    offnode = offnode->next;
628
+	}
629
+
630
+	while(offlist) {
631
+	    offnode = offlist;
632
+	    offlist = offlist->next;
633
+	    free(offnode);
634
+	}
635
+
636
+	if(ret == CL_VIRUS) {
637
+	    free(section_hdr);
638
+	    return CL_VIRUS;
639
+	}
640
+    }
641
+
642
+
552 643
     if(broken) {
553 644
 	free(section_hdr);
554 645
 	return CL_CLEAN;
... ...
@@ -932,7 +932,7 @@ int cl_loaddb(const char *filename, struct cl_node **root, unsigned int *signo)
932 932
     } else if(cli_strbcasestr(filename, ".cvd")) {
933 933
 	    int warn = 0;
934 934
 
935
-	if(!strcmp(filename, "daily.cvd"))
935
+	if(strstr(filename, "daily.cvd"))
936 936
 	    warn = 1;
937 937
 
938 938
 	ret = cli_cvdload(fd, root, signo, warn);
... ...
@@ -69,6 +69,7 @@ extern int cli_mbox(const char *dir, int desc, unsigned int options); /* FIXME *
69 69
 #include "untar.h"
70 70
 #include "special.h"
71 71
 #include "binhex.h"
72
+#include "tnef.h"
72 73
 
73 74
 #ifdef HAVE_ZLIB_H
74 75
 #include <zlib.h>
... ...
@@ -378,7 +379,7 @@ static int cli_scanzip(int desc, const char **virname, unsigned long int *scanne
378 378
 	 * Bit 6: Strong encryption was used
379 379
 	 * Bit 13: Encrypted central directory
380 380
 	 */
381
-	encrypted = (zdirent.d_flags & 0x2041 != 0);
381
+	encrypted = ((zdirent.d_flags & 0x2041) != 0);
382 382
 
383 383
 	cli_dbgmsg("Zip: %s, crc32: 0x%x, offset: %d, encrypted: %d, compressed: %u, normal: %u, method: %d, ratio: %d (max: %d)\n", zdirent.d_name, zdirent.d_crc32, zdirent.d_off, encrypted, zdirent.d_csize, zdirent.st_size, zdirent.d_compr, zdirent.d_csize ? (zdirent.st_size / zdirent.d_csize) : 0, limits ? limits->maxratio : 0);
384 384
 
... ...
@@ -1394,8 +1395,7 @@ static int cli_scanraw(int desc, const char **virname, unsigned long int *scanne
1394 1394
 
1395 1395
 int cli_magic_scandesc(int desc, const char **virname, unsigned long int *scanned, const struct cl_node *root, const struct cl_limits *limits, unsigned int options, unsigned int arec, unsigned int mrec)
1396 1396
 {
1397
-	int ret = CL_CLEAN, nret;
1398
-	int bread = 0;
1397
+	int ret = CL_CLEAN;
1399 1398
 	cli_file_t type;
1400 1399
 	struct stat sb;
1401 1400
 
... ...
@@ -28,6 +28,7 @@
28 28
 #include "clamav.h"
29 29
 #include "others.h"
30 30
 #include "cltypes.h"
31
+#include "special.h"
31 32
 
32 33
 #define FALSE (0)
33 34
 #define TRUE (1)
... ...
@@ -245,7 +245,7 @@ cli_untar(const char *dir, int desc, unsigned int posix)
245 245
 			}
246 246
 			snprintf(fullname, sizeof(fullname) - 1 - suffixLen, "%s/%.*sXXXXXX", dir,
247 247
 				(int)(sizeof(fullname) - 9 - suffixLen - strlen(dir)), name);
248
-#if	defined(C_LINUX) || defined(C_BSD) || defined(HAVE_MKSTEMP) || defined(C_SOLARIS) || defined(C_CYGWIN)
248
+#if    defined(C_LINUX) || defined(C_BSD) || defined(HAVE_MKSTEMP) || defined(C_SOLARIS) || defined(C_CYGWIN) || defined(C_KFREEBSD_GNU)
249 249
 			fd = mkstemp(fullname);
250 250
 #else
251 251
 			(void)mktemp(fullname);
... ...
@@ -30,6 +30,8 @@
30 30
 #include <sys/stat.h>
31 31
 #include <unistd.h>
32 32
 
33
+#include "others.h"
34
+
33 35
 /*
34 36
 #include "__mmap.h"
35 37
 #include "__debug.h"
... ...
@@ -41,7 +41,7 @@ struct cfgstruct *parsecfg(const char *cfgfile, int messages)
41 41
 	struct cfgoption *pt;
42 42
 
43 43
 	struct cfgoption cfg_options[] = {
44
-	    {"LogFile", OPT_FULLSTR},
44
+	    {"LogFile", OPT_STR},
45 45
 	    {"LogFileUnlock", OPT_NOARG},
46 46
 	    {"LogFileMaxSize", OPT_COMPSIZE},
47 47
 	    {"LogTime", OPT_NOARG},
... ...
@@ -49,8 +49,8 @@ struct cfgstruct *parsecfg(const char *cfgfile, int messages)
49 49
 	    {"LogVerbose", OPT_NOARG}, /* clamd + freshclam */
50 50
 	    {"LogSyslog", OPT_NOARG},
51 51
 	    {"LogFacility", OPT_STR},
52
-	    {"PidFile", OPT_FULLSTR},
53
-	    {"TemporaryDirectory", OPT_FULLSTR},
52
+	    {"PidFile", OPT_STR},
53
+	    {"TemporaryDirectory", OPT_STR},
54 54
 	    {"DisableDefaultScanOptions", OPT_NOARG},
55 55
 	    {"ScanPE", OPT_NOARG},
56 56
 	    {"DetectBrokenExecutables", OPT_NOARG},
... ...
@@ -67,11 +67,11 @@ struct cfgstruct *parsecfg(const char *cfgfile, int messages)
67 67
 	    {"ArchiveLimitMemoryUsage", OPT_NOARG},
68 68
 	    {"ArchiveBlockEncrypted", OPT_NOARG},
69 69
 	    {"ArchiveBlockMax", OPT_NOARG},
70
-	    {"DataDirectory", OPT_FULLSTR}, /* obsolete */
71
-	    {"DatabaseDirectory", OPT_FULLSTR}, /* clamd + freshclam */
70
+	    {"DataDirectory", OPT_STR}, /* obsolete */
71
+	    {"DatabaseDirectory", OPT_STR}, /* clamd + freshclam */
72 72
 	    {"TCPAddr", OPT_STR},
73 73
 	    {"TCPSocket", OPT_NUM},
74
-	    {"LocalSocket", OPT_FULLSTR},
74
+	    {"LocalSocket", OPT_STR},
75 75
 	    {"MaxConnectionQueueLength", OPT_NUM},
76 76
 	    {"StreamMaxLength", OPT_COMPSIZE},
77 77
 	    {"StreamMinPort", OPT_NUM},
... ...
@@ -102,7 +102,7 @@ struct cfgstruct *parsecfg(const char *cfgfile, int messages)
102 102
 	    {"ClamukoScanArchive", OPT_NOARG},
103 103
 	    {"DatabaseOwner", OPT_STR}, /* freshclam */
104 104
 	    {"Checks", OPT_NUM}, /* freshclam */
105
-	    {"UpdateLogFile", OPT_FULLSTR}, /* freshclam */
105
+	    {"UpdateLogFile", OPT_STR}, /* freshclam */
106 106
 	    {"DNSDatabaseInfo", OPT_STR}, /* freshclam */
107 107
 	    {"DatabaseMirror", OPT_STR}, /* freshclam */
108 108
 	    {"MaxAttempts", OPT_NUM}, /* freshclam */
... ...
@@ -28,6 +28,7 @@
28 28
 #include <sys/types.h>
29 29
 #include <sys/stat.h>
30 30
 #include <fcntl.h>
31
+#include <ctype.h>
31 32
 
32 33
 #include "clamav.h"
33 34
 #include "cfgparser.h"