Browse code

merge backport fixes for 0.86.2

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

Sven Strickroth authored on 2007/02/18 23:33:00
Showing 179 changed files
... ...
@@ -1,3 +1,41 @@
1
+Sun Jul 24 23:57:42 CEST 2005
2
+-----------------------------
3
+  V 0.86.2
4
+  * Fixes backported from CVS:
5
+    - configure.in: disable support for URLs downloading with libcurl
6
+      (--with-libcurl) by default (tk)
7
+    - libclamav/others.c: cli_rmdirs: fix possible infinite loop (tk)
8
+      Patch by Mark Pizzolato <clamav-devel*subscriptions.pizzolato.net>
9
+    - libclamav/mspack: Some cab archives were not properly decompressed (tk)
10
+      Problem reported by Diego d'Ambra <diego*clamav.net>
11
+    - libclamav/pe.c: cli_peheader: Sync entry point calculation with
12
+      cli_scanpe (tk)
13
+      Problem reported by Christoph Cordes <ccordes*clamav.net>
14
+    - configure.in: fix compilation error when curl is installed in
15
+      a non-standard location (tk)
16
+      Reported by Serge van den Boom <svdb*stack.nl>
17
+    - configure.in: Add support for DragonFly (tk)
18
+      Thanks to Joerg Sonnenberger <joerg*britannica.bec.de>
19
+    - clamscan/clamscan.c: Verify arguments passed to --max-dir-recursion and
20
+      --max-ratio (tk)
21
+      Problem reported by Jo Mills <Jonathan.Mills*frequentis.com>
22
+    - libclamav/fsg.c: Fix possible integer overflow (acab)
23
+      Reported by Alex Wheeler.
24
+    - libclamav/mbox.c: Fix name clash with glibc library (njh)
25
+      Reported by Brian Bruns <bruns at 2mbit.com>
26
+    - libclamav/others.c: Check for 0 byte allocations in cli_(m|c|re)alloc (tk)
27
+    - libclamav/chmunpack.c: Fix possible malloc overflow (trog)
28
+      Reported by Alex Wheeler.
29
+    - libclamav/tnef.c: Fix possible crash if the length field is 0 or negative
30
+      in headers (njh)
31
+      Reported by Alex Wheeler (alexbling at gmail.com)
32
+    - clamav-milter: Honour LogClean. Only syslog once when storing email in
33
+      quarantine (reported by Panagiotis Christias, christias at gmail.com).
34
+      Log database reloads to the LogFile (njh)
35
+    - clamav-milter: Changed the default child_timeout to 5 minutes. Keep a
36
+      copy of the trie root in privdata. Removed trylock/unlock code in
37
+      clamfi_abort (njh)
38
+
1 39
 Thu Jun 23 23:13:41 CEST 2005
2 40
 -----------------------------
3 41
   V 0.86.1
... ...
@@ -1,7 +1,9 @@
1
-0.86.1
1
+0.86.2
2 2
 ------
3 3
 
4
-A possible crash in the libmspack's Quantum decompressor has been fixed.
4
+Changes in this release include fixes for three possible integer overflows
5
+in libclamav, improved scanning of Cabinet and FSG compressed files, better
6
+database handling in clamav-milter, and others.
5 7
 
6 8
 --
7 9
 The ClamAV team (http://www.clamav.net/team.html)
... ...
@@ -2,6 +2,16 @@ Note: This README/NEWS file refers to the source tarball. Some things described
2 2
 here may not be available in binary packages.
3 3
 --
4 4
 
5
+0.86.2
6
+------
7
+
8
+Changes in this release include fixes for three possible integer overflows
9
+in libclamav, improved scanning of Cabinet and FSG compressed files, better
10
+database handling in clamav-milter, and others.
11
+
12
+--
13
+The ClamAV team (http://www.clamav.net/team.html)
14
+
5 15
 0.86.1
6 16
 ------
7 17
 
... ...
@@ -196,7 +196,7 @@ static const struct cidr_net {
196 196
 };
197 197
 
198 198
 /*
199
- * Each thread has one of these
199
+ * Each libmilter thread has one of these
200 200
  */
201 201
 struct	privdata {
202 202
 	char	*from;	/* Who sent the message */
... ...
@@ -226,6 +226,7 @@ struct	privdata {
226 226
 				 */
227 227
 	int	statusCount;	/* number of X-Virus-Status headers */
228 228
 	int	serverNumber;	/* Index into serverIPs */
229
+	struct  cl_node *root; /* database of viruses used to scan this one */
229 230
 };
230 231
 
231 232
 #ifdef	SESSION
... ...
@@ -372,7 +373,7 @@ static	pthread_mutex_t	n_children_mutex = PTHREAD_MUTEX_INITIALIZER;
372 372
 static	pthread_cond_t	n_children_cond = PTHREAD_COND_INITIALIZER;
373 373
 static	volatile	unsigned	int	n_children = 0;
374 374
 static	unsigned	int	max_children = 0;
375
-static	int	child_timeout = 0;	/* number of seconds to wait for
375
+static	int	child_timeout = 300;	/* number of seconds to wait for
376 376
 					 * a child to die. Set to 0 to
377 377
 					 * wait forever
378 378
 					 */
... ...
@@ -2578,22 +2579,25 @@ clamfi_eom(SMFICTX *ctx)
2578 2578
 	if(!external) {
2579 2579
 		const char *virname;
2580 2580
 		unsigned long int scanned = 0L;
2581
-		struct cl_node *scanning_root;
2582 2581
 
2583 2582
 		/*
2584 2583
 		 * TODO: consider using cl_scandesc and not using a temporary
2585 2584
 		 *	file from the mail being read in
2586 2585
 		 */
2587 2586
 		pthread_mutex_lock(&root_mutex);
2588
-		scanning_root = cl_dup(root);
2587
+		privdata->root = cl_dup(root);
2589 2588
 		pthread_mutex_unlock(&root_mutex);
2590
-		if(scanning_root == NULL) {
2591
-			cli_errmsg("scanning_root == NULL\n");
2589
+		if(privdata->root == NULL) {
2590
+			cli_errmsg("privdata->root == NULL\n");
2592 2591
 			clamfi_cleanup(ctx);
2593 2592
 			return cl_error;
2594 2593
 		}
2595
-		switch(cl_scanfile(privdata->filename, &virname, &scanned, scanning_root, &limits, options)) {
2594
+		switch(cl_scanfile(privdata->filename, &virname, &scanned, privdata->root, &limits, options)) {
2596 2595
 			case CL_CLEAN:
2596
+				if(logClean) {
2597
+					snprintf(mess, sizeof(mess), "%s: OK", privdata->filename);
2598
+					logger(mess);
2599
+				}
2597 2600
 				strcpy(mess, "OK");
2598 2601
 				break;
2599 2602
 			case CL_VIRUS:
... ...
@@ -2605,7 +2609,8 @@ clamfi_eom(SMFICTX *ctx)
2605 2605
 				logger(mess);
2606 2606
 				break;
2607 2607
 		}
2608
-		cl_free(scanning_root);
2608
+		cl_free(privdata->root);
2609
+		privdata->root = NULL;
2609 2610
 
2610 2611
 #ifdef	SESSION
2611 2612
 		session = NULL;
... ...
@@ -2896,9 +2901,6 @@ clamfi_eom(SMFICTX *ctx)
2896 2896
 			free(err);
2897 2897
 		}
2898 2898
 
2899
-		if(quarantine_dir != NULL)
2900
-			qfile(privdata, sendmailId, virusname);
2901
-
2902 2899
 		if(!qflag) {
2903 2900
 			char cmd[128];
2904 2901
 			FILE *sendmail;
... ...
@@ -3015,8 +3017,8 @@ clamfi_eom(SMFICTX *ctx)
3015 3015
 		}
3016 3016
 
3017 3017
 		if(quarantine_dir) {
3018
-			if(use_syslog)
3019
-				syslog(LOG_NOTICE, _("Quarantined infected mail as %s"), privdata->filename);
3018
+			qfile(privdata, sendmailId, virusname);
3019
+
3020 3020
 			/*
3021 3021
 			 * Cleanup filename here otherwise clamfi_free() will
3022 3022
 			 * delete the file that we wish to keep because it
... ...
@@ -3116,15 +3118,6 @@ clamfi_abort(SMFICTX *ctx)
3116 3116
 #endif
3117 3117
 
3118 3118
 	cli_dbgmsg("clamfi_abort\n");
3119
-	/*
3120
-	 * Unlock incase we're called during a cond_timedwait in envfrom
3121
-	 *
3122
-	 * TODO: There *must* be a tidier a safer way of doing this!
3123
-	 */
3124
-	if((max_children > 0) && (n_children >= max_children)) {
3125
-		(void)pthread_mutex_trylock(&n_children_mutex);
3126
-		(void)pthread_mutex_unlock(&n_children_mutex);
3127
-	}
3128 3119
 
3129 3120
 	clamfi_cleanup(ctx);
3130 3121
 
... ...
@@ -3277,7 +3270,15 @@ clamfi_free(struct privdata *privdata)
3277 3277
 				privdata->cmdSocket = -1;
3278 3278
 			}
3279 3279
 #endif
3280
-		}
3280
+		} else if(privdata->root)
3281
+			/*
3282
+			 * Since only one of clamfi_abort() and clamfi_eom()
3283
+			 * can ever be called, and the only cl_dup is in
3284
+			 * clamfi_eom() which calls cl_free soon after, this
3285
+			 * should be overkill, since this can "never happen"
3286
+			 */
3287
+			cl_free(privdata->root);
3288
+
3281 3289
 		if(privdata->headers)
3282 3290
 			header_list_free(privdata->headers);
3283 3291
 
... ...
@@ -3497,7 +3498,7 @@ updateSigFile(void)
3497 3497
 
3498 3498
 	signature = cli_realloc(signature, statb.st_size);
3499 3499
 	if(signature)
3500
-		read(fd, signature, statb.st_size);
3500
+		cli_readn(fd, signature, statb.st_size);
3501 3501
 	close(fd);
3502 3502
 
3503 3503
 	return statb.st_size;
... ...
@@ -3989,7 +3990,14 @@ sendtemplate(SMFICTX *ctx, const char *filename, FILE *sendmail, const char *vir
3989 3989
 			syslog(LOG_ERR, _("Out of memory"));
3990 3990
 		return -1;
3991 3991
 	}
3992
-	fread(buf, sizeof(char), statb.st_size, fin);
3992
+	if(fread(buf, sizeof(char), statb.st_size, fin) != statb.st_size) {
3993
+		perror(filename);
3994
+		if(use_syslog)
3995
+			syslog(LOG_ERR, _("Error reading e-mail template file %s"),
3996
+				filename);
3997
+		fclose(fin);
3998
+		return -1;
3999
+	}
3993 4000
 	fclose(fin);
3994 4001
 	buf[statb.st_size] = '\0';
3995 4002
 
... ...
@@ -4134,7 +4142,7 @@ qfile(struct privdata *privdata, const char *sendmailId, const char *virusname)
4134 4134
 	privdata->filename = newname;
4135 4135
 
4136 4136
 	if(use_syslog)
4137
-		syslog(LOG_INFO, _("File quarantined as %s"), newname);
4137
+		syslog(LOG_INFO, _("Email quarantined as %s"), newname);
4138 4138
 
4139 4139
 	return 0;
4140 4140
 }
... ...
@@ -4563,7 +4571,11 @@ watchdog(void *a)
4563 4563
 
4564 4564
 		/*
4565 4565
 		 * Re-load the database.
4566
-		 */
4566
+ 		 * TODO: sanity check that if n_children == 0, that
4567
+ 		 * root->refcount == 0. Unfortunatly root->refcount isn't
4568
+ 		 * thread-safe, since it's governed by a mutex that we can't
4569
+ 		 * see, and there's no access to it via an approved method
4570
+ 		 */
4567 4571
 		switch(cl_statchkdir(&dbstat)) {
4568 4572
 			case 1:
4569 4573
 				cli_dbgmsg("Database has changed\n");
... ...
@@ -4584,7 +4596,6 @@ watchdog(void *a)
4584 4584
 				cli_errmsg("Database error - %s is stopping\n", progname);
4585 4585
 				return NULL;
4586 4586
 		}
4587
-		continue;
4588 4587
 	}
4589 4588
 	cli_dbgmsg("watchdog quits\n");
4590 4589
 	return NULL;
... ...
@@ -4866,8 +4877,12 @@ loadDatabase(void)
4866 4866
 		syslog(LOG_INFO, _("ClamAV: Protecting against %u viruses"), signatures);
4867 4867
 	}
4868 4868
 	if(oldroot) {
4869
-		cli_dbgmsg("Database updated\n");
4869
+		char mess[128];
4870
+
4870 4871
 		cl_free(oldroot);
4872
+		sprintf(mess, "Database correctly reloaded (%d signatures)\n", signatures);
4873
+		logger(mess);
4874
+		cli_dbgmsg("Database updated\n");
4871 4875
 	} else
4872 4876
 		cli_dbgmsg("Database loaded\n");
4873 4877
 
... ...
@@ -4983,7 +4998,7 @@ verifyIncomingSocketName(const char *sockName)
4983 4983
 }
4984 4984
 
4985 4985
 /*
4986
- * If the given email address is whitelisted don't scan their emails
4986
+ * If the given email address is whitelisted don't scan emails to them
4987 4987
  *
4988 4988
  * TODO: Allow regular expressions in the emails
4989 4989
  * TODO: Syntax check the contents of the files
... ...
@@ -137,6 +137,17 @@ int clamscan(struct optstruct *opt)
137 137
 	    return 40;
138 138
 	}
139 139
 
140
+    if(optl(opt, "max-dir-recursion"))
141
+	if(!isnumb(getargl(opt, "max-dir-recursion"))) {
142
+	    logg("!--max-dir-recursion requires natural number.\n");
143
+	    return 40;
144
+	}
145
+
146
+    if(optl(opt, "max-ratio"))
147
+	if(!isnumb(getargl(opt, "max-ratio"))) {
148
+	    logg("!--max-ratio requires natural number.\n");
149
+	    return 40;
150
+	}
140 151
 
141 152
     time(&starttime);
142 153
     /* ctime() does \n, but I need it once more */
... ...
@@ -237,8 +248,9 @@ void help(void)
237 237
     mprintf("    --detect-broken                      Try to detect broken executable files\n");
238 238
     mprintf("    --block-encrypted                    Block encrypted archives\n");
239 239
     mprintf("    --block-max                          Block archives that exceed limits\n");
240
+#ifdef WITH_CURL
240 241
     mprintf("    --mail-follow-urls                   Download and scan URLs\n");
241
-
242
+#endif
242 243
     mprintf("\n");
243 244
     mprintf("    --max-space=#n                       Only extract first #n kilobytes from\n");
244 245
     mprintf("                                         archived files\n");
... ...
@@ -196,7 +196,11 @@ int scanmanager(const struct optstruct *opt)
196 196
 	options |= CL_SCAN_MAIL;
197 197
 
198 198
 	if(optl(opt, "mail-follow-urls"))
199
+#ifdef WITH_CURL
199 200
 	    options |= CL_SCAN_MAILURL;
201
+#else
202
+	    mprintf("WARNING: Support for URLs downloading with libcurl not compiled in\n");
203
+#endif
200 204
     }
201 205
 
202 206
 #ifdef C_LINUX
... ...
@@ -144,6 +144,11 @@ int rmdirs(const char *dirname)
144 144
     if((dd = opendir(dirname)) != NULL) {
145 145
 	while(stat(dirname, &maind) != -1) {
146 146
 	    if(!rmdir(dirname)) break;
147
+	    if(errno != ENOTEMPTY && errno != EEXIST) {
148
+		mprintf("@Can't remove temporary directory %s: %s\n", dirname, strerror(errno));
149
+		closedir(dd);
150
+		return 0;
151
+	    }
147 152
 
148 153
 	    while((dent = readdir(dd))) {
149 154
 #ifndef C_INTERIX
... ...
@@ -1021,7 +1021,7 @@ Optional Features:
1021 1021
   --disable-bzip2	  disable bzip2 support
1022 1022
   --disable-dns           disable support for database verification through
1023 1023
                           DNS
1024
-  --disable-clamuko	  disable clamuko support (Linux and FreeBSD only)
1024
+  --disable-clamuko	  disable clamuko support (Linux, DragonFly and FreeBSD only)
1025 1025
   --enable-milter	  build clamav-milter
1026 1026
   --disable-dsig	  disable support for digital signatures
1027 1027
   --disable-pthreads      disable POSIX threads support
... ...
@@ -1042,7 +1042,7 @@ Optional Packages:
1042 1042
   --with-zlib=DIR	  path to directory containing zlib library (default=
1043 1043
 			  /usr/local or /usr if not found in /usr/local)
1044 1044
   --with-sendmail=PATH    specify location of Sendmail binary (default=auto find)
1045
-  --with-libcurl	  support URLs downloading with libcurl (default=auto)
1045
+  --with-libcurl	  support URLs downloading with libcurl (default=no)
1046 1046
   --with-user=uid	  name of the clamav user (default=clamav)
1047 1047
   --with-group=gid	  name of the clamav group (default=clamav)
1048 1048
   --with-dbdir=path	  path to virus database directory
... ...
@@ -2073,7 +2073,7 @@ fi
2073 2073
 
2074 2074
 # Define the identity of the package.
2075 2075
  PACKAGE=clamav
2076
- VERSION="0.86.1"
2076
+ VERSION="0.86.2"
2077 2077
 
2078 2078
 
2079 2079
 cat >>confdefs.h <<_ACEOF
... ...
@@ -2207,7 +2207,7 @@ am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
2207 2207
 
2208 2208
 
2209 2209
 LC_CURRENT=1
2210
-LC_REVISION=15
2210
+LC_REVISION=16
2211 2211
 LC_AGE=0
2212 2212
 LIBCLAMAV_VERSION="$LC_CURRENT":"$LC_REVISION":"$LC_AGE"
2213 2213
 
... ...
@@ -11381,7 +11381,7 @@ echo "$as_me: error: --with-libcurl does not take an argument" >&2;}
11381 11381
    { (exit 1); exit 1; }; } ;;
11382 11382
   esac
11383 11383
 else
11384
-   lcurl=auto
11384
+   lcurl=no
11385 11385
 fi;
11386 11386
 
11387 11387
 if test "$lcurl" != "no"
... ...
@@ -11400,7 +11400,11 @@ echo $ECHO_N "checking for curl >= $check... $ECHO_C" >&6
11400 11400
 
11401 11401
 	if test x$fail != x1; then
11402 11402
 	    curl_libs=`curl-config --libs`
11403
-	    LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS $curl_libs"
11403
+	    # openssl libs are required to link libcurl
11404
+	    openssl_libs="`pkg-config --libs openssl`"
11405
+	    curl_flags=`curl-config --cflags`
11406
+	    LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS $curl_libs $openssl_libs"
11407
+	    CPPFLAGS="$CPPFLAGS -I$ZLIB_HOME/include $curl_flags"
11404 11408
 	    my_cv_curl_vers="$ver"
11405 11409
 	    echo "$as_me:$LINENO: result: $my_cv_curl_vers" >&5
11406 11410
 echo "${ECHO_T}$my_cv_curl_vers" >&6
... ...
@@ -11818,6 +11822,37 @@ _ACEOF
11818 11818
 
11819 11819
     use_gethostbyname_r="no"
11820 11820
     ;;
11821
+dragonfly*)
11822
+    if test "$have_pthreads" = "yes"; then
11823
+	LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -pthread"
11824
+	CLAMD_LIBS="$CLAMD_LIBS -pthread"
11825
+	CLAMAV_MILTER_LIBS="$CLAMAV_MILTER_LIBS -pthread"
11826
+	TH_SAFE="-thread-safe"
11827
+
11828
+cat >>confdefs.h <<\_ACEOF
11829
+#define CL_THREAD_SAFE 1
11830
+_ACEOF
11831
+
11832
+
11833
+cat >>confdefs.h <<\_ACEOF
11834
+#define _REENTRANT 1
11835
+_ACEOF
11836
+
11837
+	if test "$want_clamuko" = "yes"; then
11838
+
11839
+cat >>confdefs.h <<\_ACEOF
11840
+#define CLAMUKO 1
11841
+_ACEOF
11842
+
11843
+	fi
11844
+    fi
11845
+
11846
+cat >>confdefs.h <<\_ACEOF
11847
+#define C_BSD 1
11848
+_ACEOF
11849
+
11850
+    use_gethostbyname_r="no"
11851
+    ;;
11821 11852
 openbsd*)
11822 11853
     if test "$have_pthreads" = "yes"; then
11823 11854
 	LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -pthread"
... ...
@@ -18,11 +18,11 @@ dnl   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 18
 
19 19
 AC_INIT(clamscan/clamscan.c)
20 20
 AC_CREATE_TARGET_H(target.h)
21
-AM_INIT_AUTOMAKE(clamav, "0.86.1")
21
+AM_INIT_AUTOMAKE(clamav, "0.86.2")
22 22
 AM_CONFIG_HEADER(clamav-config.h)
23 23
 
24 24
 LC_CURRENT=1
25
-LC_REVISION=15
25
+LC_REVISION=16
26 26
 LC_AGE=0
27 27
 LIBCLAMAV_VERSION="$LC_CURRENT":"$LC_REVISION":"$LC_AGE"
28 28
 AC_SUBST(LIBCLAMAV_VERSION)
... ...
@@ -150,7 +150,7 @@ if test $want_dns = yes; then
150 150
 fi
151 151
 
152 152
 AC_ARG_ENABLE(clamuko,
153
-[  --disable-clamuko	  disable clamuko support (Linux and FreeBSD only)],
153
+[  --disable-clamuko	  disable clamuko support (Linux, DragonFly and FreeBSD only)],
154 154
 want_clamuko=$enableval, want_clamuko="yes")
155 155
 
156 156
 AC_FUNC_SETPGRP
... ...
@@ -195,12 +195,12 @@ fi
195 195
 
196 196
 dnl libcurl
197 197
 AC_ARG_WITH(libcurl,
198
-[  --with-libcurl	  support URLs downloading with libcurl (default=auto)],
198
+[  --with-libcurl	  support URLs downloading with libcurl (default=no)],
199 199
 [ case "$withval" in
200 200
   yes|no) lcurl="$withval" ;;
201 201
   *)      AC_MSG_ERROR([--with-libcurl does not take an argument]) ;;
202 202
   esac],
203
-[ lcurl=auto ])
203
+[ lcurl=no ])
204 204
 
205 205
 dnl Based on http://curl.signal42.com/libcurl/using/autoconf.html
206 206
 if test "$lcurl" != "no"
... ...
@@ -220,7 +220,11 @@ then
220 220
 
221 221
 	if test x$fail != x1; then
222 222
 	    curl_libs=`curl-config --libs`
223
-	    LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS $curl_libs"
223
+	    # openssl libs are required to link libcurl
224
+	    openssl_libs="`pkg-config --libs openssl`"
225
+	    curl_flags=`curl-config --cflags`
226
+	    LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS $curl_libs $openssl_libs"
227
+	    CPPFLAGS="$CPPFLAGS -I$ZLIB_HOME/include $curl_flags"
224 228
 	    my_cv_curl_vers="$ver"
225 229
 	    AC_MSG_RESULT([$my_cv_curl_vers])
226 230
 	    AC_DEFINE(WITH_CURL,1,use libcurl in mbox code)
... ...
@@ -402,6 +406,21 @@ freebsd*)
402 402
     AC_DEFINE(C_BSD,1,[os is freebsd])
403 403
     use_gethostbyname_r="no"
404 404
     ;;
405
+dragonfly*)
406
+    if test "$have_pthreads" = "yes"; then
407
+	LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -pthread"
408
+	CLAMD_LIBS="$CLAMD_LIBS -pthread"
409
+	CLAMAV_MILTER_LIBS="$CLAMAV_MILTER_LIBS -pthread"
410
+	TH_SAFE="-thread-safe"
411
+	AC_DEFINE(CL_THREAD_SAFE,1,[thread safe])
412
+	AC_DEFINE(_REENTRANT,1,[thread safe])
413
+	if test "$want_clamuko" = "yes"; then
414
+	    AC_DEFINE(CLAMUKO,1,[enable clamuko])
415
+	fi
416
+    fi
417
+    AC_DEFINE(C_BSD,1,[os is dragonfly])
418
+    use_gethostbyname_r="no"
419
+    ;;
405 420
 openbsd*)
406 421
     if test "$have_pthreads" = "yes"; then
407 422
 	LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -pthread"
408 423
Binary files a/docs/clamdoc.pdf and b/docs/clamdoc.pdf differ
... ...
@@ -69,7 +69,7 @@
69 69
     \vspace{3cm}
70 70
     \begin{flushright}
71 71
 	\rule[-1ex]{8cm}{3pt}\\
72
-	\huge Clam AntiVirus 0.86.1\\
72
+	\huge Clam AntiVirus 0.86.2\\
73 73
 	\huge \emph{User Manual}\\
74 74
     \end{flushright}
75 75
 
... ...
@@ -449,18 +449,18 @@
449 449
     to connect it with Sendmail add the following lines to
450 450
     \verb+/etc/mail/sendmail.mc+:
451 451
     \begin{verbatim}
452
-INPUT_MAIL_FILTER(`clmilter',`S=local:/var/run/clmilter.sock,
452
+INPUT_MAIL_FILTER(`clmilter',`S=local:/var/run/clamav/clmilter.sock,
453 453
 F=, T=S:4m;R:4m')dnl
454 454
 define(`confINPUT_MAIL_FILTERS', `clmilter')
455 455
     \end{verbatim}
456 456
     If you're running it in \verb+--external+ mode, check entry in
457 457
     \verb+clamd.conf+ of the form:
458 458
     \begin{verbatim}
459
-	LocalSocket /var/run/clamd.sock
459
+	LocalSocket /var/run/clamav/clamd.sock
460 460
     \end{verbatim}
461 461
     Start clamav-milter
462 462
     \begin{verbatim}
463
-	/usr/local/sbin/clamav-milter -lo /var/run/clmilter.sock
463
+	/usr/local/sbin/clamav-milter -lo /var/run/clamav/clmilter.sock
464 464
     \end{verbatim}
465 465
     and restart sendmail.
466 466
 
... ...
@@ -1413,9 +1413,9 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
1413 1413
     \subsubsection{qSheff}
1414 1414
     \textbf{Homepage:} \url{http://www.enderunix.org/qsheff}\\
1415 1415
     \textbf{Supports:} clamdscan, clamd\\[4pt]
1416
-    The tool allows running anti-virus and content filtering software
1417
-    simultaneously. Supports ClamAV for virus checking and Zabit for
1418
-    content filtering.
1416
+    The tool allows running anti-virus, body/subject/attachment filtering, user 
1417
+    defined white/black lists, and alternative qmail logging. Supports ClamAV
1418
+    for virus checking.
1419 1419
 
1420 1420
     \subsubsection{RevolSys SMTP kit for Postfix}
1421 1421
     \textbf{Homepage:} \url{http://smtp.revolsys.org/}\\
... ...
@@ -1474,7 +1474,7 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
1474 1474
     antivirus scanning using ClamAV.
1475 1475
 
1476 1476
     \subsubsection{smf-clamd}
1477
-    \textbf{Homepage:} \url{}\\
1477
+    \textbf{Homepage:} \url{http://smfs.sourceforge.net/smf-clamd.html}\\
1478 1478
     \textbf{Supports:} clamd\\[4pt]
1479 1479
     SmartSendmailFilter-clamd is a lightweight filter for Sendmail. It's
1480 1480
     a small (less than 550 lines of C code), fast and very stable filter
... ...
@@ -2007,8 +2007,8 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
2007 2007
 	\url{clamav.dbplc.com} & 217.154.108.81 & United Kingdom & Simon Pither\\
2008 2008
 			       &		&		 & \email{<simon*digitalbrain.com>}\\ \hline
2009 2009
 
2010
-	\url{clamav.unet.brandeis.edu} & 129.64.99.170 & USA & Rich Graves\\
2011
-				       &	       &     & \email{<rcgraves*brandeis.edu>}\\ \hline
2010
+	\url{clamav.unet.brandeis.edu} & 129.64.99.170 & USA & Elliot Kendall\\
2011
+				       &	       &     & \email{<ekendall*brandeis.edu>}\\ \hline
2012 2012
 
2013 2013
 	\url{clamav.im1.net} & 65.77.42.207 & Florida, US & Dmitri Pavlenkov\\
2014 2014
 			     &		    &		  & \email{<dmitri*im1.com>}\\ \hline
... ...
@@ -2182,6 +2182,8 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
2182 2182
 			      &		      &		 & \email{<japc*co.sapo.pt>}\\ \hline
2183 2183
 	\url{clamav.westlinks.com} & 67.43.173.205 & USA & Tim Treaster\\
2184 2184
 				   &		   &	 & \email{<tim*westlinks.com>}\\ \hline
2185
+	\url{clamav.liquidweb.com} & 209.59.139.38 & USA & Steven Collins\\
2186
+				   &		   &	 & \email{<scollins*liquidweb.com>}\\ \hline
2185 2187
     \end{tabular}}
2186 2188
     \end{center}
2187 2189
 
... ...
@@ -2449,6 +2451,7 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
2449 2449
 	\item Cheahch from Singapore
2450 2450
 	\item Conexim Australia - business web hosting (\url{http://www.conexim.com.au})
2451 2451
 	\item Joe Cooper
2452
+	\item CustomLogic LLC (\url{http://www.customlogic.com/})
2452 2453
 	\item Ron DeFulio
2453 2454
 	\item Steve Donegan (\url{http://www.donegan.org/})
2454 2455
 	\item Dynamic Network Services, Inc (\url{http://www.dyndns.org/})
... ...
@@ -2500,6 +2503,7 @@ level required:MD5 checksum:digital signature:builder name:build time (sec)
2500 2500
 	\item Paul Morgan
2501 2501
 	\item Tomas Morkus
2502 2502
 	\item Michael Nolan (\url{http://www.michaelnolan.co.uk/})
2503
+	\item Jorgen Norgaard
2503 2504
 	\item Oneworkspace.com (\url{http://www.oneworkspace.com/})
2504 2505
 	\item Origin Solutions (\url{http://www.originsolutions.com.au/})
2505 2506
 	\item outermedia GmbH (\url{http://www.outermedia.de/})
... ...
@@ -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="tex2html312"
27
+<A NAME="tex2html314"
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="tex2html310"
32
+<A NAME="tex2html312"
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="tex2html313"
36
+<B> Next:</B> <A NAME="tex2html315"
37 37
   HREF="node1.html">Contents</A>
38
- &nbsp <B>  <A NAME="tex2html311"
38
+ &nbsp <B>  <A NAME="tex2html313"
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.86.1
62
+<BR>	<FONT SIZE="+3">Clam AntiVirus 0.86.2
63 63
 <BR>	<FONT SIZE="+3"><I>User Manual</I>
64 64
 <BR>    
65 65
 </FONT></FONT></DIV>
... ...
@@ -71,370 +71,370 @@ 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="tex2html314"
74
+<LI><A NAME="tex2html316"
75 75
   HREF="node1.html">Contents</A>
76
-<LI><A NAME="tex2html315"
76
+<LI><A NAME="tex2html317"
77 77
   HREF="node2.html">Introduction</A>
78 78
 <UL>
79
-<LI><A NAME="tex2html316"
79
+<LI><A NAME="tex2html318"
80 80
   HREF="node3.html">Features</A>
81
-<LI><A NAME="tex2html317"
81
+<LI><A NAME="tex2html319"
82 82
   HREF="node4.html">Mailing lists</A>
83
-<LI><A NAME="tex2html318"
83
+<LI><A NAME="tex2html320"
84 84
   HREF="node5.html">Virus submitting</A>
85 85
 </UL>
86
-<LI><A NAME="tex2html319"
86
+<LI><A NAME="tex2html321"
87 87
   HREF="node6.html">Base package</A>
88 88
 <UL>
89
-<LI><A NAME="tex2html320"
89
+<LI><A NAME="tex2html322"
90 90
   HREF="node7.html">Supported platforms</A>
91
-<LI><A NAME="tex2html321"
91
+<LI><A NAME="tex2html323"
92 92
   HREF="node8.html">Binary packages</A>
93
-<LI><A NAME="tex2html322"
93
+<LI><A NAME="tex2html324"
94 94
   HREF="node9.html">Daily built snapshots</A>
95 95
 </UL>
96
-<LI><A NAME="tex2html323"
96
+<LI><A NAME="tex2html325"
97 97
   HREF="node10.html">Installation</A>
98 98
 <UL>
99
-<LI><A NAME="tex2html324"
99
+<LI><A NAME="tex2html326"
100 100
   HREF="node11.html">Requirements</A>
101
-<LI><A NAME="tex2html325"
101
+<LI><A NAME="tex2html327"
102 102
   HREF="node12.html">Installing on a shell account</A>
103
-<LI><A NAME="tex2html326"
103
+<LI><A NAME="tex2html328"
104 104
   HREF="node13.html">Adding new system user and group</A>
105
-<LI><A NAME="tex2html327"
105
+<LI><A NAME="tex2html329"
106 106
   HREF="node14.html">Compilation of base package</A>
107
-<LI><A NAME="tex2html328"
107
+<LI><A NAME="tex2html330"
108 108
   HREF="node15.html">Compilation with clamav-milter enabled</A>
109 109
 </UL>
110
-<LI><A NAME="tex2html329"
110
+<LI><A NAME="tex2html331"
111 111
   HREF="node16.html">Configuration</A>
112 112
 <UL>
113
-<LI><A NAME="tex2html330"
113
+<LI><A NAME="tex2html332"
114 114
   HREF="node17.html">clamd</A>
115 115
 <UL>
116
-<LI><A NAME="tex2html331"
116
+<LI><A NAME="tex2html333"
117 117
   HREF="node18.html">On-access scanning</A>
118 118
 </UL>
119
-<LI><A NAME="tex2html332"
119
+<LI><A NAME="tex2html334"
120 120
   HREF="node19.html">clamav-milter</A>
121
-<LI><A NAME="tex2html333"
121
+<LI><A NAME="tex2html335"
122 122
   HREF="node20.html">Testing</A>
123
-<LI><A NAME="tex2html334"
123
+<LI><A NAME="tex2html336"
124 124
   HREF="node21.html">Setting up auto-updating</A>
125
-<LI><A NAME="tex2html335"
125
+<LI><A NAME="tex2html337"
126 126
   HREF="node22.html">Closest mirrors</A>
127 127
 </UL>
128
-<LI><A NAME="tex2html336"
128
+<LI><A NAME="tex2html338"
129 129
   HREF="node23.html">Usage</A>
130 130
 <UL>
131
-<LI><A NAME="tex2html337"
131
+<LI><A NAME="tex2html339"
132 132
   HREF="node24.html">Clam daemon</A>
133
-<LI><A NAME="tex2html338"
133
+<LI><A NAME="tex2html340"
134 134
   HREF="node25.html">Clam<B>d</B>scan</A>
135
-<LI><A NAME="tex2html339"
135
+<LI><A NAME="tex2html341"
136 136
   HREF="node26.html">Clamuko</A>
137
-<LI><A NAME="tex2html340"
137
+<LI><A NAME="tex2html342"
138 138
   HREF="node27.html">Output format</A>
139 139
 <UL>
140
-<LI><A NAME="tex2html341"
140
+<LI><A NAME="tex2html343"
141 141
   HREF="node28.html">clamscan</A>
142
-<LI><A NAME="tex2html342"
142
+<LI><A NAME="tex2html344"
143 143
   HREF="node29.html">clamd</A>
144 144
 </UL>
145 145
 </UL>
146
-<LI><A NAME="tex2html343"
146
+<LI><A NAME="tex2html345"
147 147
   HREF="node30.html">LibClamAV</A>
148 148
 <UL>
149
-<LI><A NAME="tex2html344"
149
+<LI><A NAME="tex2html346"
150 150
   HREF="node31.html">Licence</A>
151
-<LI><A NAME="tex2html345"
151
+<LI><A NAME="tex2html347"
152 152
   HREF="node32.html">Features</A>
153 153
 <UL>
154
-<LI><A NAME="tex2html346"
154
+<LI><A NAME="tex2html348"
155 155
   HREF="node33.html">Archives and compressed files</A>
156
-<LI><A NAME="tex2html347"
156
+<LI><A NAME="tex2html349"
157 157
   HREF="node34.html">Mail files</A>
158 158
 </UL>
159
-<LI><A NAME="tex2html348"
159
+<LI><A NAME="tex2html350"
160 160
   HREF="node35.html">API</A>
161 161
 <UL>
162
-<LI><A NAME="tex2html349"
162
+<LI><A NAME="tex2html351"
163 163
   HREF="node36.html">Header file</A>
164
-<LI><A NAME="tex2html350"
164
+<LI><A NAME="tex2html352"
165 165
   HREF="node37.html">Database loading</A>
166
-<LI><A NAME="tex2html351"
166
+<LI><A NAME="tex2html353"
167 167
   HREF="node38.html">Error handling</A>
168
-<LI><A NAME="tex2html352"
168
+<LI><A NAME="tex2html354"
169 169
   HREF="node39.html">Database structure</A>
170 170
 </UL>
171
-<LI><A NAME="tex2html353"
171
+<LI><A NAME="tex2html355"
172 172
   HREF="node40.html">Database reloading</A>
173 173
 <UL>
174
-<LI><A NAME="tex2html354"
174
+<LI><A NAME="tex2html356"
175 175
   HREF="node41.html">Data scan functions</A>
176
-<LI><A NAME="tex2html355"
176
+<LI><A NAME="tex2html357"
177 177
   HREF="node42.html">Memory</A>
178
-<LI><A NAME="tex2html356"
178
+<LI><A NAME="tex2html358"
179 179
   HREF="node43.html">clamav-config</A>
180
-<LI><A NAME="tex2html357"
180
+<LI><A NAME="tex2html359"
181 181
   HREF="node44.html">Example</A>
182 182
 </UL>
183
-<LI><A NAME="tex2html358"
183
+<LI><A NAME="tex2html360"
184 184
   HREF="node45.html">CVD format</A>
185 185
 </UL>
186
-<LI><A NAME="tex2html359"
186
+<LI><A NAME="tex2html361"
187 187
   HREF="node46.html">Frequently Asked Questions</A>
188
-<LI><A NAME="tex2html360"
188
+<LI><A NAME="tex2html362"
189 189
   HREF="node47.html">Third party software</A>
190 190
 <UL>
191
-<LI><A NAME="tex2html361"
191
+<LI><A NAME="tex2html363"
192 192
   HREF="node48.html"><I>MTA + ClamAV</I></A>
193 193
 <UL>
194
-<LI><A NAME="tex2html362"
194
+<LI><A NAME="tex2html364"
195 195
   HREF="node49.html">amavisd-new</A>
196
-<LI><A NAME="tex2html363"
196
+<LI><A NAME="tex2html365"
197 197
   HREF="node50.html">AMaViS - "Next Generation"</A>
198
-<LI><A NAME="tex2html364"
198
+<LI><A NAME="tex2html366"
199 199
   HREF="node51.html">ClamdMail</A>
200
-<LI><A NAME="tex2html365"
200
+<LI><A NAME="tex2html367"
201 201
   HREF="node52.html">cgpav</A>
202
-<LI><A NAME="tex2html366"
202
+<LI><A NAME="tex2html368"
203 203
   HREF="node53.html">ClamCour</A>
204
-<LI><A NAME="tex2html367"
204
+<LI><A NAME="tex2html369"
205 205
   HREF="node54.html">clamfilter</A>
206
-<LI><A NAME="tex2html368"
206
+<LI><A NAME="tex2html370"
207 207
   HREF="node55.html">ClamSMTP</A>
208
-<LI><A NAME="tex2html369"
208
+<LI><A NAME="tex2html371"
209 209
   HREF="node56.html">clapf</A>
210
-<LI><A NAME="tex2html370"
210
+<LI><A NAME="tex2html372"
211 211
   HREF="node57.html">DSpamPD</A>
212
-<LI><A NAME="tex2html371"
212
+<LI><A NAME="tex2html373"
213 213
   HREF="node58.html">exiscan</A>
214
-<LI><A NAME="tex2html372"
214
+<LI><A NAME="tex2html374"
215 215
   HREF="node59.html">Gadoyanvirus</A>
216
-<LI><A NAME="tex2html373"
216
+<LI><A NAME="tex2html375"
217 217
   HREF="node60.html">hMailServer</A>
218
-<LI><A NAME="tex2html374"
218
+<LI><A NAME="tex2html376"
219 219
   HREF="node61.html">IVS Milter</A>
220
-<LI><A NAME="tex2html375"
220
+<LI><A NAME="tex2html377"
221 221
   HREF="node62.html">j-chkmail</A>
222
-<LI><A NAME="tex2html376"
222
+<LI><A NAME="tex2html378"
223 223
   HREF="node63.html">Mail Avenger</A>
224
-<LI><A NAME="tex2html377"
224
+<LI><A NAME="tex2html379"
225 225
   HREF="node64.html">Mailnees</A>
226
-<LI><A NAME="tex2html378"
226
+<LI><A NAME="tex2html380"
227 227
   HREF="node65.html">MailScanner</A>
228
-<LI><A NAME="tex2html379"
228
+<LI><A NAME="tex2html381"
229 229
   HREF="node66.html">Maverix</A>
230
-<LI><A NAME="tex2html380"
230
+<LI><A NAME="tex2html382"
231 231
   HREF="node67.html">MIMEDefang</A>
232
-<LI><A NAME="tex2html381"
232
+<LI><A NAME="tex2html383"
233 233
   HREF="node68.html">mxGuard for IMail</A>
234
-<LI><A NAME="tex2html382"
234
+<LI><A NAME="tex2html384"
235 235
   HREF="node69.html">OdeiaVir</A>
236
-<LI><A NAME="tex2html383"
236
+<LI><A NAME="tex2html385"
237 237
   HREF="node70.html">OpenProtect</A>
238
-<LI><A NAME="tex2html384"
238
+<LI><A NAME="tex2html386"
239 239
   HREF="node71.html">Protea AntiVirus Tools</A>
240
-<LI><A NAME="tex2html385"
240
+<LI><A NAME="tex2html387"
241 241
   HREF="node72.html">PTSMail Utilities</A>
242
-<LI><A NAME="tex2html386"
242
+<LI><A NAME="tex2html388"
243 243
   HREF="node73.html">pymavis</A>
244
-<LI><A NAME="tex2html387"
244
+<LI><A NAME="tex2html389"
245 245
   HREF="node74.html">Qmail-Scanner</A>
246
-<LI><A NAME="tex2html388"
246
+<LI><A NAME="tex2html390"
247 247
   HREF="node75.html">qpsmtp</A>
248
-<LI><A NAME="tex2html389"
248
+<LI><A NAME="tex2html391"
249 249
   HREF="node76.html">qscanq</A>
250
-<LI><A NAME="tex2html390"
250
+<LI><A NAME="tex2html392"
251 251
   HREF="node77.html">qSheff</A>
252
-<LI><A NAME="tex2html391"
252
+<LI><A NAME="tex2html393"
253 253
   HREF="node78.html">RevolSys SMTP kit for Postfix</A>
254
-<LI><A NAME="tex2html392"
254
+<LI><A NAME="tex2html394"
255 255
   HREF="node79.html">Sagator</A>
256
-<LI><A NAME="tex2html393"
256
+<LI><A NAME="tex2html395"
257 257
   HREF="node80.html">Scrubber</A>
258
-<LI><A NAME="tex2html394"
258
+<LI><A NAME="tex2html396"
259 259
   HREF="node81.html">Secure Mail Intelligence!</A>
260
-<LI><A NAME="tex2html395"
260
+<LI><A NAME="tex2html397"
261 261
   HREF="node82.html">simscan</A>
262
-<LI><A NAME="tex2html396"
262
+<LI><A NAME="tex2html398"
263 263
   HREF="node83.html">SmarterMail Filter</A>
264
-<LI><A NAME="tex2html397"
264
+<LI><A NAME="tex2html399"
265 265
   HREF="node84.html">smf-clamd</A>
266
-<LI><A NAME="tex2html398"
266
+<LI><A NAME="tex2html400"
267 267
   HREF="node85.html">smtpfilter</A>
268
-<LI><A NAME="tex2html399"
268
+<LI><A NAME="tex2html401"
269 269
   HREF="node86.html">smtp-vilter</A>
270
-<LI><A NAME="tex2html400"
270
+<LI><A NAME="tex2html402"
271 271
   HREF="node87.html">Zabit</A>
272
-<LI><A NAME="tex2html401"
272
+<LI><A NAME="tex2html403"
273 273
   HREF="node88.html">zmscanner</A>
274 274
 </UL>
275
-<LI><A NAME="tex2html402"
275
+<LI><A NAME="tex2html404"
276 276
   HREF="node89.html"><I>MTA + POP3 Proxy + ClamAV</I></A>
277 277
 <UL>
278
-<LI><A NAME="tex2html403"
278
+<LI><A NAME="tex2html405"
279 279
   HREF="node90.html">ClamMail</A>
280
-<LI><A NAME="tex2html404"
280
+<LI><A NAME="tex2html406"
281 281
   HREF="node91.html">POP3 Virus Scanner Daemon</A>
282
-<LI><A NAME="tex2html405"
282
+<LI><A NAME="tex2html407"
283 283
   HREF="node92.html">pop3.proxy</A>
284 284
 </UL>
285
-<LI><A NAME="tex2html406"
285
+<LI><A NAME="tex2html408"
286 286
   HREF="node93.html"><I>Web/FTP Proxy + ClamAV</I></A>
287 287
 <UL>
288
-<LI><A NAME="tex2html407"
288
+<LI><A NAME="tex2html409"
289 289
   HREF="node94.html">DansGuardian Anti-Virus Patch</A>
290
-<LI><A NAME="tex2html408"
290
+<LI><A NAME="tex2html410"
291 291
   HREF="node95.html">Frox</A>
292
-<LI><A NAME="tex2html409"
292
+<LI><A NAME="tex2html411"
293 293
   HREF="node96.html">HTTP Anti Virus Proxy</A>
294
-<LI><A NAME="tex2html410"
294
+<LI><A NAME="tex2html412"
295 295
   HREF="node97.html">Frox</A>
296
-<LI><A NAME="tex2html411"
296
+<LI><A NAME="tex2html413"
297 297
   HREF="node98.html">mod_clamav</A>
298
-<LI><A NAME="tex2html412"
298
+<LI><A NAME="tex2html414"
299 299
   HREF="node99.html">SafeSquid</A>
300
-<LI><A NAME="tex2html413"
300
+<LI><A NAME="tex2html415"
301 301
   HREF="node100.html">SquidClamAV Redirector</A>
302
-<LI><A NAME="tex2html414"
302
+<LI><A NAME="tex2html416"
303 303
   HREF="node101.html">Squidclam</A>
304
-<LI><A NAME="tex2html415"
304
+<LI><A NAME="tex2html417"
305 305
   HREF="node102.html">Viralator</A>
306 306
 </UL>
307
-<LI><A NAME="tex2html416"
307
+<LI><A NAME="tex2html418"
308 308
   HREF="node103.html"><I>Filesystem + ClamAV</I></A>
309 309
 <UL>
310
-<LI><A NAME="tex2html417"
310
+<LI><A NAME="tex2html419"
311 311
   HREF="node104.html">Dazuko</A>
312
-<LI><A NAME="tex2html418"
312
+<LI><A NAME="tex2html420"
313 313
   HREF="node105.html">Famuko</A>
314
-<LI><A NAME="tex2html419"
314
+<LI><A NAME="tex2html421"
315 315
   HREF="node106.html">OpenAntiVirus samba-vscan</A>
316 316
 </UL>
317
-<LI><A NAME="tex2html420"
317
+<LI><A NAME="tex2html422"
318 318
   HREF="node107.html"><I>Mail User Agent + ClamAV</I></A>
319 319
 <UL>
320
-<LI><A NAME="tex2html421"
320
+<LI><A NAME="tex2html423"
321 321
   HREF="node108.html">clamailfilter</A>
322
-<LI><A NAME="tex2html422"
322
+<LI><A NAME="tex2html424"
323 323
   HREF="node109.html">ClamAssassin</A>
324
-<LI><A NAME="tex2html423"
324
+<LI><A NAME="tex2html425"
325 325
   HREF="node110.html">clamscan-procfilter</A>
326
-<LI><A NAME="tex2html424"
326
+<LI><A NAME="tex2html426"
327 327
   HREF="node111.html">KMail</A>
328
-<LI><A NAME="tex2html425"
328
+<LI><A NAME="tex2html427"
329 329
   HREF="node112.html">MyClamMailFilter</A>
330
-<LI><A NAME="tex2html426"
330
+<LI><A NAME="tex2html428"
331 331
   HREF="node113.html">OpenWebMail</A>
332
-<LI><A NAME="tex2html427"
332
+<LI><A NAME="tex2html429"
333 333
   HREF="node114.html">QClam</A>
334
-<LI><A NAME="tex2html428"
334
+<LI><A NAME="tex2html430"
335 335
   HREF="node115.html">QMVC - Qmail Mail and Virus Control</A>
336
-<LI><A NAME="tex2html429"
336
+<LI><A NAME="tex2html431"
337 337
   HREF="node116.html">Sylpheed Claws</A>
338
-<LI><A NAME="tex2html430"
338
+<LI><A NAME="tex2html432"
339 339
   HREF="node117.html">SoftlabsAV</A>
340 340
 </UL>
341
-<LI><A NAME="tex2html431"
341
+<LI><A NAME="tex2html433"
342 342
   HREF="node118.html"><I>Graphical User Interface + ClamAV</I></A>
343 343
 <UL>
344
-<LI><A NAME="tex2html432"
344
+<LI><A NAME="tex2html434"
345 345
   HREF="node119.html">AVScan</A>
346
-<LI><A NAME="tex2html433"
346
+<LI><A NAME="tex2html435"
347 347
   HREF="node120.html">BeClam</A>
348
-<LI><A NAME="tex2html434"
348
+<LI><A NAME="tex2html436"
349 349
   HREF="node121.html">Clamaktion</A>
350
-<LI><A NAME="tex2html435"
350
+<LI><A NAME="tex2html437"
351 351
   HREF="node122.html">ClamShell</A>
352
-<LI><A NAME="tex2html436"
352
+<LI><A NAME="tex2html438"
353 353
   HREF="node123.html">ClamTk</A>
354
-<LI><A NAME="tex2html437"
354
+<LI><A NAME="tex2html439"
355 355
   HREF="node124.html">clamXav</A>
356
-<LI><A NAME="tex2html438"
356
+<LI><A NAME="tex2html440"
357 357
   HREF="node125.html">ClamWin</A>
358
-<LI><A NAME="tex2html439"
358
+<LI><A NAME="tex2html441"
359 359
   HREF="node126.html">FETCAV</A>
360
-<LI><A NAME="tex2html440"
360
+<LI><A NAME="tex2html442"
361 361
   HREF="node127.html">KlamAV</A>
362
-<LI><A NAME="tex2html441"
362
+<LI><A NAME="tex2html443"
363 363
   HREF="node128.html">QtClamAVclient</A>
364
-<LI><A NAME="tex2html442"
364
+<LI><A NAME="tex2html444"
365 365
   HREF="node129.html">wbmclamav</A>
366 366
 </UL>
367
-<LI><A NAME="tex2html443"
367
+<LI><A NAME="tex2html445"
368 368
   HREF="node130.html"><I>Library + ClamAV</I></A>
369 369
 <UL>
370
-<LI><A NAME="tex2html444"
370
+<LI><A NAME="tex2html446"
371 371
   HREF="node131.html">ClamAVPlugin</A>
372
-<LI><A NAME="tex2html445"
372
+<LI><A NAME="tex2html447"
373 373
   HREF="node132.html">clamavr</A>
374
-<LI><A NAME="tex2html446"
374
+<LI><A NAME="tex2html448"
375 375
   HREF="node133.html">D bindings for ClamAV</A>
376
-<LI><A NAME="tex2html447"
376
+<LI><A NAME="tex2html449"
377 377
   HREF="node134.html">File::Scan::ClamAV</A>
378
-<LI><A NAME="tex2html448"
378
+<LI><A NAME="tex2html450"
379 379
   HREF="node135.html">Mail::ClamAV</A>
380
-<LI><A NAME="tex2html449"
380
+<LI><A NAME="tex2html451"
381 381
   HREF="node136.html">php-clamav</A>
382
-<LI><A NAME="tex2html450"
382
+<LI><A NAME="tex2html452"
383 383
   HREF="node137.html">pyclamav</A>
384
-<LI><A NAME="tex2html451"
384
+<LI><A NAME="tex2html453"
385 385
   HREF="node138.html">WRAVLib</A>
386 386
 </UL>
387
-<LI><A NAME="tex2html452"
387
+<LI><A NAME="tex2html454"
388 388
   HREF="node139.html"><I>Miscellaneous + ClamAV</I></A>
389 389
 <UL>
390
-<LI><A NAME="tex2html453"
390
+<LI><A NAME="tex2html455"
391 391
   HREF="node140.html">INSERT</A>
392
-<LI><A NAME="tex2html454"
392
+<LI><A NAME="tex2html456"
393 393
   HREF="node141.html">Local Area Security</A>
394
-<LI><A NAME="tex2html455"
394
+<LI><A NAME="tex2html457"
395 395
   HREF="node142.html">mailgraph</A>
396
-<LI><A NAME="tex2html456"
396
+<LI><A NAME="tex2html458"
397 397
   HREF="node143.html">mailman-clamav</A>
398
-<LI><A NAME="tex2html457"
398
+<LI><A NAME="tex2html459"
399 399
   HREF="node144.html">Moodle</A>
400
-<LI><A NAME="tex2html458"
400
+<LI><A NAME="tex2html460"
401 401
   HREF="node145.html">nclamd</A>
402
-<LI><A NAME="tex2html459"
402
+<LI><A NAME="tex2html461"
403 403
   HREF="node146.html">qmailmrtg7</A>
404
-<LI><A NAME="tex2html460"
404
+<LI><A NAME="tex2html462"
405 405
   HREF="node147.html">redWall Firewall</A>
406
-<LI><A NAME="tex2html461"
406
+<LI><A NAME="tex2html463"
407 407
   HREF="node148.html">Scan Log Analyzer</A>
408
-<LI><A NAME="tex2html462"
408
+<LI><A NAME="tex2html464"
409 409
   HREF="node149.html">snort-inline</A>
410
-<LI><A NAME="tex2html463"
410
+<LI><A NAME="tex2html465"
411 411
   HREF="node150.html">Snort-ClamAV</A>
412 412
 </UL>
413 413
 </UL>
414
-<LI><A NAME="tex2html464"
414
+<LI><A NAME="tex2html466"
415 415
   HREF="node151.html">Credits</A>
416 416
 <UL>
417
-<LI><A NAME="tex2html465"
417
+<LI><A NAME="tex2html467"
418 418
   HREF="node152.html">Database mirrors</A>
419
-<LI><A NAME="tex2html466"
419
+<LI><A NAME="tex2html468"
420 420
   HREF="node153.html">Contributors</A>
421
-<LI><A NAME="tex2html467"
421
+<LI><A NAME="tex2html469"
422 422
   HREF="node154.html">Donors</A>
423
-<LI><A NAME="tex2html468"
423
+<LI><A NAME="tex2html470"
424 424
   HREF="node155.html">Graphics</A>
425
-<LI><A NAME="tex2html469"
425
+<LI><A NAME="tex2html471"
426 426
   HREF="node156.html">OpenAntiVirus</A>
427 427
 </UL>
428
-<LI><A NAME="tex2html470"
428
+<LI><A NAME="tex2html472"
429 429
   HREF="node157.html">Authors</A>
430
-<LI><A NAME="tex2html471"
430
+<LI><A NAME="tex2html473"
431 431
   HREF="node158.html">About this document ...</A>
432 432
 </UL>
433 433
 <!--End of Table of Child-Links-->
434 434
 <BR><HR>
435 435
 <ADDRESS>
436 436
 Tomasz Kojm
437
-2005-06-23
437
+2005-07-25
438 438
 </ADDRESS>
439 439
 </BODY>
440 440
 </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="tex2html312"
27
+<A NAME="tex2html314"
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="tex2html310"
32
+<A NAME="tex2html312"
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="tex2html313"
36
+<B> Next:</B> <A NAME="tex2html315"
37 37
   HREF="node1.html">Contents</A>
38
- &nbsp <B>  <A NAME="tex2html311"
38
+ &nbsp <B>  <A NAME="tex2html313"
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.86.1
62
+<BR>	<FONT SIZE="+3">Clam AntiVirus 0.86.2
63 63
 <BR>	<FONT SIZE="+3"><I>User Manual</I>
64 64
 <BR>    
65 65
 </FONT></FONT></DIV>
... ...
@@ -71,370 +71,370 @@ 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="tex2html314"
74
+<LI><A NAME="tex2html316"
75 75
   HREF="node1.html">Contents</A>
76
-<LI><A NAME="tex2html315"
76
+<LI><A NAME="tex2html317"
77 77
   HREF="node2.html">Introduction</A>
78 78
 <UL>
79
-<LI><A NAME="tex2html316"
79
+<LI><A NAME="tex2html318"
80 80
   HREF="node3.html">Features</A>
81
-<LI><A NAME="tex2html317"
81
+<LI><A NAME="tex2html319"
82 82
   HREF="node4.html">Mailing lists</A>
83
-<LI><A NAME="tex2html318"
83
+<LI><A NAME="tex2html320"
84 84
   HREF="node5.html">Virus submitting</A>
85 85
 </UL>
86
-<LI><A NAME="tex2html319"
86
+<LI><A NAME="tex2html321"
87 87
   HREF="node6.html">Base package</A>
88 88
 <UL>
89
-<LI><A NAME="tex2html320"
89
+<LI><A NAME="tex2html322"
90 90
   HREF="node7.html">Supported platforms</A>
91
-<LI><A NAME="tex2html321"
91
+<LI><A NAME="tex2html323"
92 92
   HREF="node8.html">Binary packages</A>
93
-<LI><A NAME="tex2html322"
93
+<LI><A NAME="tex2html324"
94 94
   HREF="node9.html">Daily built snapshots</A>
95 95
 </UL>
96
-<LI><A NAME="tex2html323"
96
+<LI><A NAME="tex2html325"
97 97
   HREF="node10.html">Installation</A>
98 98
 <UL>
99
-<LI><A NAME="tex2html324"
99
+<LI><A NAME="tex2html326"
100 100
   HREF="node11.html">Requirements</A>
101
-<LI><A NAME="tex2html325"
101
+<LI><A NAME="tex2html327"
102 102
   HREF="node12.html">Installing on a shell account</A>
103
-<LI><A NAME="tex2html326"
103
+<LI><A NAME="tex2html328"
104 104
   HREF="node13.html">Adding new system user and group</A>
105
-<LI><A NAME="tex2html327"
105
+<LI><A NAME="tex2html329"
106 106
   HREF="node14.html">Compilation of base package</A>
107
-<LI><A NAME="tex2html328"
107
+<LI><A NAME="tex2html330"
108 108
   HREF="node15.html">Compilation with clamav-milter enabled</A>
109 109
 </UL>
110
-<LI><A NAME="tex2html329"
110
+<LI><A NAME="tex2html331"
111 111
   HREF="node16.html">Configuration</A>
112 112
 <UL>
113
-<LI><A NAME="tex2html330"
113
+<LI><A NAME="tex2html332"
114 114
   HREF="node17.html">clamd</A>
115 115
 <UL>
116
-<LI><A NAME="tex2html331"
116
+<LI><A NAME="tex2html333"
117 117
   HREF="node18.html">On-access scanning</A>
118 118
 </UL>
119
-<LI><A NAME="tex2html332"
119
+<LI><A NAME="tex2html334"
120 120
   HREF="node19.html">clamav-milter</A>
121
-<LI><A NAME="tex2html333"
121
+<LI><A NAME="tex2html335"
122 122
   HREF="node20.html">Testing</A>
123
-<LI><A NAME="tex2html334"
123
+<LI><A NAME="tex2html336"
124 124
   HREF="node21.html">Setting up auto-updating</A>
125
-<LI><A NAME="tex2html335"
125
+<LI><A NAME="tex2html337"
126 126
   HREF="node22.html">Closest mirrors</A>
127 127
 </UL>
128
-<LI><A NAME="tex2html336"
128
+<LI><A NAME="tex2html338"
129 129
   HREF="node23.html">Usage</A>
130 130
 <UL>
131
-<LI><A NAME="tex2html337"
131
+<LI><A NAME="tex2html339"
132 132
   HREF="node24.html">Clam daemon</A>
133
-<LI><A NAME="tex2html338"
133
+<LI><A NAME="tex2html340"
134 134
   HREF="node25.html">Clam<B>d</B>scan</A>
135
-<LI><A NAME="tex2html339"
135
+<LI><A NAME="tex2html341"
136 136
   HREF="node26.html">Clamuko</A>
137
-<LI><A NAME="tex2html340"
137
+<LI><A NAME="tex2html342"
138 138
   HREF="node27.html">Output format</A>
139 139
 <UL>
140
-<LI><A NAME="tex2html341"
140
+<LI><A NAME="tex2html343"
141 141
   HREF="node28.html">clamscan</A>
142
-<LI><A NAME="tex2html342"
142
+<LI><A NAME="tex2html344"
143 143
   HREF="node29.html">clamd</A>
144 144
 </UL>
145 145
 </UL>
146
-<LI><A NAME="tex2html343"
146
+<LI><A NAME="tex2html345"
147 147
   HREF="node30.html">LibClamAV</A>
148 148
 <UL>
149
-<LI><A NAME="tex2html344"
149
+<LI><A NAME="tex2html346"
150 150
   HREF="node31.html">Licence</A>
151
-<LI><A NAME="tex2html345"
151
+<LI><A NAME="tex2html347"
152 152
   HREF="node32.html">Features</A>
153 153
 <UL>
154
-<LI><A NAME="tex2html346"
154
+<LI><A NAME="tex2html348"
155 155
   HREF="node33.html">Archives and compressed files</A>
156
-<LI><A NAME="tex2html347"
156
+<LI><A NAME="tex2html349"
157 157
   HREF="node34.html">Mail files</A>
158 158
 </UL>
159
-<LI><A NAME="tex2html348"
159
+<LI><A NAME="tex2html350"
160 160
   HREF="node35.html">API</A>
161 161
 <UL>
162
-<LI><A NAME="tex2html349"
162
+<LI><A NAME="tex2html351"
163 163
   HREF="node36.html">Header file</A>
164
-<LI><A NAME="tex2html350"
164
+<LI><A NAME="tex2html352"
165 165
   HREF="node37.html">Database loading</A>
166
-<LI><A NAME="tex2html351"
166
+<LI><A NAME="tex2html353"
167 167
   HREF="node38.html">Error handling</A>
168
-<LI><A NAME="tex2html352"
168
+<LI><A NAME="tex2html354"
169 169
   HREF="node39.html">Database structure</A>
170 170
 </UL>
171
-<LI><A NAME="tex2html353"
171
+<LI><A NAME="tex2html355"
172 172
   HREF="node40.html">Database reloading</A>
173 173
 <UL>
174
-<LI><A NAME="tex2html354"
174
+<LI><A NAME="tex2html356"
175 175
   HREF="node41.html">Data scan functions</A>
176
-<LI><A NAME="tex2html355"
176
+<LI><A NAME="tex2html357"
177 177
   HREF="node42.html">Memory</A>
178
-<LI><A NAME="tex2html356"
178
+<LI><A NAME="tex2html358"
179 179
   HREF="node43.html">clamav-config</A>
180
-<LI><A NAME="tex2html357"
180
+<LI><A NAME="tex2html359"
181 181
   HREF="node44.html">Example</A>
182 182
 </UL>
183
-<LI><A NAME="tex2html358"
183
+<LI><A NAME="tex2html360"
184 184
   HREF="node45.html">CVD format</A>
185 185
 </UL>
186
-<LI><A NAME="tex2html359"
186
+<LI><A NAME="tex2html361"
187 187
   HREF="node46.html">Frequently Asked Questions</A>
188
-<LI><A NAME="tex2html360"
188
+<LI><A NAME="tex2html362"
189 189
   HREF="node47.html">Third party software</A>
190 190
 <UL>
191
-<LI><A NAME="tex2html361"
191
+<LI><A NAME="tex2html363"
192 192
   HREF="node48.html"><I>MTA + ClamAV</I></A>
193 193
 <UL>
194
-<LI><A NAME="tex2html362"
194
+<LI><A NAME="tex2html364"
195 195
   HREF="node49.html">amavisd-new</A>
196
-<LI><A NAME="tex2html363"
196
+<LI><A NAME="tex2html365"
197 197
   HREF="node50.html">AMaViS - "Next Generation"</A>
198
-<LI><A NAME="tex2html364"
198
+<LI><A NAME="tex2html366"
199 199
   HREF="node51.html">ClamdMail</A>
200
-<LI><A NAME="tex2html365"
200
+<LI><A NAME="tex2html367"
201 201
   HREF="node52.html">cgpav</A>
202
-<LI><A NAME="tex2html366"
202
+<LI><A NAME="tex2html368"
203 203
   HREF="node53.html">ClamCour</A>
204
-<LI><A NAME="tex2html367"
204
+<LI><A NAME="tex2html369"
205 205
   HREF="node54.html">clamfilter</A>
206
-<LI><A NAME="tex2html368"
206
+<LI><A NAME="tex2html370"
207 207
   HREF="node55.html">ClamSMTP</A>
208
-<LI><A NAME="tex2html369"
208
+<LI><A NAME="tex2html371"
209 209
   HREF="node56.html">clapf</A>
210
-<LI><A NAME="tex2html370"
210
+<LI><A NAME="tex2html372"
211 211
   HREF="node57.html">DSpamPD</A>
212
-<LI><A NAME="tex2html371"
212
+<LI><A NAME="tex2html373"
213 213
   HREF="node58.html">exiscan</A>
214
-<LI><A NAME="tex2html372"
214
+<LI><A NAME="tex2html374"
215 215
   HREF="node59.html">Gadoyanvirus</A>
216
-<LI><A NAME="tex2html373"
216
+<LI><A NAME="tex2html375"
217 217
   HREF="node60.html">hMailServer</A>
218
-<LI><A NAME="tex2html374"
218
+<LI><A NAME="tex2html376"
219 219
   HREF="node61.html">IVS Milter</A>
220
-<LI><A NAME="tex2html375"
220
+<LI><A NAME="tex2html377"
221 221
   HREF="node62.html">j-chkmail</A>
222
-<LI><A NAME="tex2html376"
222
+<LI><A NAME="tex2html378"
223 223
   HREF="node63.html">Mail Avenger</A>
224
-<LI><A NAME="tex2html377"
224
+<LI><A NAME="tex2html379"
225 225
   HREF="node64.html">Mailnees</A>
226
-<LI><A NAME="tex2html378"
226
+<LI><A NAME="tex2html380"
227 227
   HREF="node65.html">MailScanner</A>
228
-<LI><A NAME="tex2html379"
228
+<LI><A NAME="tex2html381"
229 229
   HREF="node66.html">Maverix</A>
230
-<LI><A NAME="tex2html380"
230
+<LI><A NAME="tex2html382"
231 231
   HREF="node67.html">MIMEDefang</A>
232
-<LI><A NAME="tex2html381"
232
+<LI><A NAME="tex2html383"
233 233
   HREF="node68.html">mxGuard for IMail</A>
234
-<LI><A NAME="tex2html382"
234
+<LI><A NAME="tex2html384"
235 235
   HREF="node69.html">OdeiaVir</A>
236
-<LI><A NAME="tex2html383"
236
+<LI><A NAME="tex2html385"
237 237
   HREF="node70.html">OpenProtect</A>
238
-<LI><A NAME="tex2html384"
238
+<LI><A NAME="tex2html386"
239 239
   HREF="node71.html">Protea AntiVirus Tools</A>
240
-<LI><A NAME="tex2html385"
240
+<LI><A NAME="tex2html387"
241 241
   HREF="node72.html">PTSMail Utilities</A>
242
-<LI><A NAME="tex2html386"
242
+<LI><A NAME="tex2html388"
243 243
   HREF="node73.html">pymavis</A>
244
-<LI><A NAME="tex2html387"
244
+<LI><A NAME="tex2html389"
245 245
   HREF="node74.html">Qmail-Scanner</A>
246
-<LI><A NAME="tex2html388"
246
+<LI><A NAME="tex2html390"
247 247
   HREF="node75.html">qpsmtp</A>
248
-<LI><A NAME="tex2html389"
248
+<LI><A NAME="tex2html391"
249 249
   HREF="node76.html">qscanq</A>
250
-<LI><A NAME="tex2html390"
250
+<LI><A NAME="tex2html392"
251 251
   HREF="node77.html">qSheff</A>
252
-<LI><A NAME="tex2html391"
252
+<LI><A NAME="tex2html393"
253 253
   HREF="node78.html">RevolSys SMTP kit for Postfix</A>
254
-<LI><A NAME="tex2html392"
254
+<LI><A NAME="tex2html394"
255 255
   HREF="node79.html">Sagator</A>
256
-<LI><A NAME="tex2html393"
256
+<LI><A NAME="tex2html395"
257 257
   HREF="node80.html">Scrubber</A>
258
-<LI><A NAME="tex2html394"
258
+<LI><A NAME="tex2html396"
259 259
   HREF="node81.html">Secure Mail Intelligence!</A>
260
-<LI><A NAME="tex2html395"
260
+<LI><A NAME="tex2html397"
261 261
   HREF="node82.html">simscan</A>
262
-<LI><A NAME="tex2html396"
262
+<LI><A NAME="tex2html398"
263 263
   HREF="node83.html">SmarterMail Filter</A>
264
-<LI><A NAME="tex2html397"
264
+<LI><A NAME="tex2html399"
265 265
   HREF="node84.html">smf-clamd</A>
266
-<LI><A NAME="tex2html398"
266
+<LI><A NAME="tex2html400"
267 267
   HREF="node85.html">smtpfilter</A>
268
-<LI><A NAME="tex2html399"
268
+<LI><A NAME="tex2html401"
269 269
   HREF="node86.html">smtp-vilter</A>
270
-<LI><A NAME="tex2html400"
270
+<LI><A NAME="tex2html402"
271 271
   HREF="node87.html">Zabit</A>
272
-<LI><A NAME="tex2html401"
272
+<LI><A NAME="tex2html403"
273 273
   HREF="node88.html">zmscanner</A>
274 274
 </UL>
275
-<LI><A NAME="tex2html402"
275
+<LI><A NAME="tex2html404"
276 276
   HREF="node89.html"><I>MTA + POP3 Proxy + ClamAV</I></A>
277 277
 <UL>
278
-<LI><A NAME="tex2html403"
278
+<LI><A NAME="tex2html405"
279 279
   HREF="node90.html">ClamMail</A>
280
-<LI><A NAME="tex2html404"
280
+<LI><A NAME="tex2html406"
281 281
   HREF="node91.html">POP3 Virus Scanner Daemon</A>
282
-<LI><A NAME="tex2html405"
282
+<LI><A NAME="tex2html407"
283 283
   HREF="node92.html">pop3.proxy</A>
284 284
 </UL>
285
-<LI><A NAME="tex2html406"
285
+<LI><A NAME="tex2html408"
286 286
   HREF="node93.html"><I>Web/FTP Proxy + ClamAV</I></A>
287 287
 <UL>
288
-<LI><A NAME="tex2html407"
288
+<LI><A NAME="tex2html409"
289 289
   HREF="node94.html">DansGuardian Anti-Virus Patch</A>
290
-<LI><A NAME="tex2html408"
290
+<LI><A NAME="tex2html410"
291 291
   HREF="node95.html">Frox</A>
292
-<LI><A NAME="tex2html409"
292
+<LI><A NAME="tex2html411"
293 293
   HREF="node96.html">HTTP Anti Virus Proxy</A>
294
-<LI><A NAME="tex2html410"
294
+<LI><A NAME="tex2html412"
295 295
   HREF="node97.html">Frox</A>
296
-<LI><A NAME="tex2html411"
296
+<LI><A NAME="tex2html413"
297 297
   HREF="node98.html">mod_clamav</A>
298
-<LI><A NAME="tex2html412"
298
+<LI><A NAME="tex2html414"
299 299
   HREF="node99.html">SafeSquid</A>
300
-<LI><A NAME="tex2html413"
300
+<LI><A NAME="tex2html415"
301 301
   HREF="node100.html">SquidClamAV Redirector</A>
302
-<LI><A NAME="tex2html414"
302
+<LI><A NAME="tex2html416"
303 303
   HREF="node101.html">Squidclam</A>
304
-<LI><A NAME="tex2html415"
304
+<LI><A NAME="tex2html417"
305 305
   HREF="node102.html">Viralator</A>
306 306
 </UL>
307
-<LI><A NAME="tex2html416"
307
+<LI><A NAME="tex2html418"
308 308
   HREF="node103.html"><I>Filesystem + ClamAV</I></A>
309 309
 <UL>
310
-<LI><A NAME="tex2html417"
310
+<LI><A NAME="tex2html419"
311 311
   HREF="node104.html">Dazuko</A>
312
-<LI><A NAME="tex2html418"
312
+<LI><A NAME="tex2html420"
313 313
   HREF="node105.html">Famuko</A>
314
-<LI><A NAME="tex2html419"
314
+<LI><A NAME="tex2html421"
315 315
   HREF="node106.html">OpenAntiVirus samba-vscan</A>
316 316
 </UL>
317
-<LI><A NAME="tex2html420"
317
+<LI><A NAME="tex2html422"
318 318
   HREF="node107.html"><I>Mail User Agent + ClamAV</I></A>
319 319
 <UL>
320
-<LI><A NAME="tex2html421"
320
+<LI><A NAME="tex2html423"
321 321
   HREF="node108.html">clamailfilter</A>
322
-<LI><A NAME="tex2html422"
322
+<LI><A NAME="tex2html424"
323 323
   HREF="node109.html">ClamAssassin</A>
324
-<LI><A NAME="tex2html423"
324
+<LI><A NAME="tex2html425"
325 325
   HREF="node110.html">clamscan-procfilter</A>
326
-<LI><A NAME="tex2html424"
326
+<LI><A NAME="tex2html426"
327 327
   HREF="node111.html">KMail</A>
328
-<LI><A NAME="tex2html425"
328
+<LI><A NAME="tex2html427"
329 329
   HREF="node112.html">MyClamMailFilter</A>
330
-<LI><A NAME="tex2html426"
330
+<LI><A NAME="tex2html428"
331 331
   HREF="node113.html">OpenWebMail</A>
332
-<LI><A NAME="tex2html427"
332
+<LI><A NAME="tex2html429"
333 333
   HREF="node114.html">QClam</A>
334
-<LI><A NAME="tex2html428"
334
+<LI><A NAME="tex2html430"
335 335
   HREF="node115.html">QMVC - Qmail Mail and Virus Control</A>
336
-<LI><A NAME="tex2html429"
336
+<LI><A NAME="tex2html431"
337 337
   HREF="node116.html">Sylpheed Claws</A>
338
-<LI><A NAME="tex2html430"
338
+<LI><A NAME="tex2html432"
339 339
   HREF="node117.html">SoftlabsAV</A>
340 340
 </UL>
341
-<LI><A NAME="tex2html431"
341
+<LI><A NAME="tex2html433"
342 342
   HREF="node118.html"><I>Graphical User Interface + ClamAV</I></A>
343 343
 <UL>
344
-<LI><A NAME="tex2html432"
344
+<LI><A NAME="tex2html434"
345 345
   HREF="node119.html">AVScan</A>
346
-<LI><A NAME="tex2html433"
346
+<LI><A NAME="tex2html435"
347 347
   HREF="node120.html">BeClam</A>
348
-<LI><A NAME="tex2html434"
348
+<LI><A NAME="tex2html436"
349 349
   HREF="node121.html">Clamaktion</A>
350
-<LI><A NAME="tex2html435"
350
+<LI><A NAME="tex2html437"
351 351
   HREF="node122.html">ClamShell</A>
352
-<LI><A NAME="tex2html436"
352
+<LI><A NAME="tex2html438"
353 353
   HREF="node123.html">ClamTk</A>
354
-<LI><A NAME="tex2html437"
354
+<LI><A NAME="tex2html439"
355 355
   HREF="node124.html">clamXav</A>
356
-<LI><A NAME="tex2html438"
356
+<LI><A NAME="tex2html440"
357 357
   HREF="node125.html">ClamWin</A>
358
-<LI><A NAME="tex2html439"
358
+<LI><A NAME="tex2html441"
359 359
   HREF="node126.html">FETCAV</A>
360
-<LI><A NAME="tex2html440"
360
+<LI><A NAME="tex2html442"
361 361
   HREF="node127.html">KlamAV</A>
362
-<LI><A NAME="tex2html441"
362
+<LI><A NAME="tex2html443"
363 363
   HREF="node128.html">QtClamAVclient</A>
364
-<LI><A NAME="tex2html442"
364
+<LI><A NAME="tex2html444"
365 365
   HREF="node129.html">wbmclamav</A>
366 366
 </UL>
367
-<LI><A NAME="tex2html443"
367
+<LI><A NAME="tex2html445"
368 368
   HREF="node130.html"><I>Library + ClamAV</I></A>
369 369
 <UL>
370
-<LI><A NAME="tex2html444"
370
+<LI><A NAME="tex2html446"
371 371
   HREF="node131.html">ClamAVPlugin</A>
372
-<LI><A NAME="tex2html445"
372
+<LI><A NAME="tex2html447"
373 373
   HREF="node132.html">clamavr</A>
374
-<LI><A NAME="tex2html446"
374
+<LI><A NAME="tex2html448"
375 375
   HREF="node133.html">D bindings for ClamAV</A>
376
-<LI><A NAME="tex2html447"
376
+<LI><A NAME="tex2html449"
377 377
   HREF="node134.html">File::Scan::ClamAV</A>
378
-<LI><A NAME="tex2html448"
378
+<LI><A NAME="tex2html450"
379 379
   HREF="node135.html">Mail::ClamAV</A>
380
-<LI><A NAME="tex2html449"
380
+<LI><A NAME="tex2html451"
381 381
   HREF="node136.html">php-clamav</A>
382
-<LI><A NAME="tex2html450"
382
+<LI><A NAME="tex2html452"
383 383
   HREF="node137.html">pyclamav</A>
384
-<LI><A NAME="tex2html451"
384
+<LI><A NAME="tex2html453"
385 385
   HREF="node138.html">WRAVLib</A>
386 386
 </UL>
387
-<LI><A NAME="tex2html452"
387
+<LI><A NAME="tex2html454"
388 388
   HREF="node139.html"><I>Miscellaneous + ClamAV</I></A>
389 389
 <UL>
390
-<LI><A NAME="tex2html453"
390
+<LI><A NAME="tex2html455"
391 391
   HREF="node140.html">INSERT</A>
392
-<LI><A NAME="tex2html454"
392
+<LI><A NAME="tex2html456"
393 393
   HREF="node141.html">Local Area Security</A>
394
-<LI><A NAME="tex2html455"
394
+<LI><A NAME="tex2html457"
395 395
   HREF="node142.html">mailgraph</A>
396
-<LI><A NAME="tex2html456"
396
+<LI><A NAME="tex2html458"
397 397
   HREF="node143.html">mailman-clamav</A>
398
-<LI><A NAME="tex2html457"
398
+<LI><A NAME="tex2html459"
399 399
   HREF="node144.html">Moodle</A>
400
-<LI><A NAME="tex2html458"
400
+<LI><A NAME="tex2html460"
401 401
   HREF="node145.html">nclamd</A>
402
-<LI><A NAME="tex2html459"
402
+<LI><A NAME="tex2html461"
403 403
   HREF="node146.html">qmailmrtg7</A>
404
-<LI><A NAME="tex2html460"
404
+<LI><A NAME="tex2html462"
405 405
   HREF="node147.html">redWall Firewall</A>
406
-<LI><A NAME="tex2html461"
406
+<LI><A NAME="tex2html463"
407 407
   HREF="node148.html">Scan Log Analyzer</A>
408
-<LI><A NAME="tex2html462"
408
+<LI><A NAME="tex2html464"
409 409
   HREF="node149.html">snort-inline</A>
410
-<LI><A NAME="tex2html463"
410
+<LI><A NAME="tex2html465"
411 411
   HREF="node150.html">Snort-ClamAV</A>
412 412
 </UL>
413 413
 </UL>
414
-<LI><A NAME="tex2html464"
414
+<LI><A NAME="tex2html466"
415 415
   HREF="node151.html">Credits</A>
416 416
 <UL>
417
-<LI><A NAME="tex2html465"
417
+<LI><A NAME="tex2html467"
418 418
   HREF="node152.html">Database mirrors</A>
419
-<LI><A NAME="tex2html466"
419
+<LI><A NAME="tex2html468"
420 420
   HREF="node153.html">Contributors</A>
421
-<LI><A NAME="tex2html467"
421
+<LI><A NAME="tex2html469"
422 422
   HREF="node154.html">Donors</A>
423
-<LI><A NAME="tex2html468"
423
+<LI><A NAME="tex2html470"
424 424
   HREF="node155.html">Graphics</A>
425
-<LI><A NAME="tex2html469"
425
+<LI><A NAME="tex2html471"
426 426
   HREF="node156.html">OpenAntiVirus</A>
427 427
 </UL>
428
-<LI><A NAME="tex2html470"
428
+<LI><A NAME="tex2html472"
429 429
   HREF="node157.html">Authors</A>
430
-<LI><A NAME="tex2html471"
430
+<LI><A NAME="tex2html473"
431 431
   HREF="node158.html">About this document ...</A>
432 432
 </UL>
433 433
 <!--End of Table of Child-Links-->
434 434
 <BR><HR>
435 435
 <ADDRESS>
436 436
 Tomasz Kojm
437
-2005-06-23
437
+2005-07-25
438 438
 </ADDRESS>
439 439
 </BODY>
440 440
 </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="tex2html480"
30
+<A NAME="tex2html482"
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="tex2html478"
33
+<A NAME="tex2html480"
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="tex2html472"
36
+<A NAME="tex2html474"
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="tex2html481"
40
+<B> Next:</B> <A NAME="tex2html483"
41 41
   HREF="node2.html">Introduction</A>
42
-<B> Up:</B> <A NAME="tex2html479"
42
+<B> Up:</B> <A NAME="tex2html481"
43 43
   HREF="clamdoc.html">clamdoc</A>
44
-<B> Previous:</B> <A NAME="tex2html473"
44
+<B> Previous:</B> <A NAME="tex2html475"
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="tex2html482"
57
+<LI><A NAME="tex2html484"
58 58
   HREF="node2.html">Introduction</A>
59 59
 <UL>
60
-<LI><A NAME="tex2html483"
60
+<LI><A NAME="tex2html485"
61 61
   HREF="node3.html">Features</A>
62
-<LI><A NAME="tex2html484"
62
+<LI><A NAME="tex2html486"
63 63
   HREF="node4.html">Mailing lists</A>
64
-<LI><A NAME="tex2html485"
64
+<LI><A NAME="tex2html487"
65 65
   HREF="node5.html">Virus submitting</A>
66 66
 </UL>
67
-<LI><A NAME="tex2html486"
67
+<LI><A NAME="tex2html488"
68 68
   HREF="node6.html">Base package</A>
69 69
 <UL>
70
-<LI><A NAME="tex2html487"
70
+<LI><A NAME="tex2html489"
71 71
   HREF="node7.html">Supported platforms</A>
72
-<LI><A NAME="tex2html488"
72
+<LI><A NAME="tex2html490"
73 73
   HREF="node8.html">Binary packages</A>
74
-<LI><A NAME="tex2html489"
74
+<LI><A NAME="tex2html491"
75 75
   HREF="node9.html">Daily built snapshots</A>
76 76
 </UL>
77
-<LI><A NAME="tex2html490"
77
+<LI><A NAME="tex2html492"
78 78
   HREF="node10.html">Installation</A>
79 79
 <UL>
80
-<LI><A NAME="tex2html491"
80
+<LI><A NAME="tex2html493"
81 81
   HREF="node11.html">Requirements</A>
82
-<LI><A NAME="tex2html492"
82
+<LI><A NAME="tex2html494"
83 83
   HREF="node12.html">Installing on a shell account</A>
84
-<LI><A NAME="tex2html493"
84
+<LI><A NAME="tex2html495"
85 85
   HREF="node13.html">Adding new system user and group</A>
86
-<LI><A NAME="tex2html494"
86
+<LI><A NAME="tex2html496"
87 87
   HREF="node14.html">Compilation of base package</A>
88
-<LI><A NAME="tex2html495"
88
+<LI><A NAME="tex2html497"
89 89
   HREF="node15.html">Compilation with clamav-milter enabled</A>
90 90
 </UL>
91
-<LI><A NAME="tex2html496"
91
+<LI><A NAME="tex2html498"
92 92
   HREF="node16.html">Configuration</A>
93 93
 <UL>
94
-<LI><A NAME="tex2html497"
94
+<LI><A NAME="tex2html499"
95 95
   HREF="node17.html">clamd</A>
96
-<LI><A NAME="tex2html498"
96
+<LI><A NAME="tex2html500"
97 97
   HREF="node19.html">clamav-milter</A>
98
-<LI><A NAME="tex2html499"
98
+<LI><A NAME="tex2html501"
99 99
   HREF="node20.html">Testing</A>
100
-<LI><A NAME="tex2html500"
100
+<LI><A NAME="tex2html502"
101 101
   HREF="node21.html">Setting up auto-updating</A>
102
-<LI><A NAME="tex2html501"
102
+<LI><A NAME="tex2html503"
103 103
   HREF="node22.html">Closest mirrors</A>
104 104
 </UL>
105
-<LI><A NAME="tex2html502"
105
+<LI><A NAME="tex2html504"
106 106
   HREF="node23.html">Usage</A>
107 107
 <UL>
108
-<LI><A NAME="tex2html503"
108
+<LI><A NAME="tex2html505"
109 109
   HREF="node24.html">Clam daemon</A>
110
-<LI><A NAME="tex2html504"
110
+<LI><A NAME="tex2html506"
111 111
   HREF="node25.html">Clam<B>d</B>scan</A>
112
-<LI><A NAME="tex2html505"
112
+<LI><A NAME="tex2html507"
113 113
   HREF="node26.html">Clamuko</A>
114
-<LI><A NAME="tex2html506"
114
+<LI><A NAME="tex2html508"
115 115
   HREF="node27.html">Output format</A>
116 116
 </UL>
117
-<LI><A NAME="tex2html507"
117
+<LI><A NAME="tex2html509"
118 118
   HREF="node30.html">LibClamAV</A>
119 119
 <UL>
120
-<LI><A NAME="tex2html508"
120
+<LI><A NAME="tex2html510"
121 121
   HREF="node31.html">Licence</A>
122
-<LI><A NAME="tex2html509"
122
+<LI><A NAME="tex2html511"
123 123
   HREF="node32.html">Features</A>
124
-<LI><A NAME="tex2html510"
124
+<LI><A NAME="tex2html512"
125 125
   HREF="node35.html">API</A>
126
-<LI><A NAME="tex2html511"
126
+<LI><A NAME="tex2html513"
127 127
   HREF="node40.html">Database reloading</A>
128
-<LI><A NAME="tex2html512"
128
+<LI><A NAME="tex2html514"
129 129
   HREF="node45.html">CVD format</A>
130 130
 </UL>
131
-<LI><A NAME="tex2html513"
131
+<LI><A NAME="tex2html515"
132 132
   HREF="node46.html">Frequently Asked Questions</A>
133
-<LI><A NAME="tex2html514"
133
+<LI><A NAME="tex2html516"
134 134
   HREF="node47.html">Third party software</A>
135 135
 <UL>
136
-<LI><A NAME="tex2html515"
136
+<LI><A NAME="tex2html517"
137 137
   HREF="node48.html"><I>MTA + ClamAV</I></A>
138
-<LI><A NAME="tex2html516"
138
+<LI><A NAME="tex2html518"
139 139
   HREF="node89.html"><I>MTA + POP3 Proxy + ClamAV</I></A>
140
-<LI><A NAME="tex2html517"
140
+<LI><A NAME="tex2html519"
141 141
   HREF="node93.html"><I>Web/FTP Proxy + ClamAV</I></A>
142
-<LI><A NAME="tex2html518"
142
+<LI><A NAME="tex2html520"
143 143
   HREF="node103.html"><I>Filesystem + ClamAV</I></A>
144
-<LI><A NAME="tex2html519"
144
+<LI><A NAME="tex2html521"
145 145
   HREF="node107.html"><I>Mail User Agent + ClamAV</I></A>
146
-<LI><A NAME="tex2html520"
146
+<LI><A NAME="tex2html522"
147 147
   HREF="node118.html"><I>Graphical User Interface + ClamAV</I></A>
148
-<LI><A NAME="tex2html521"
148
+<LI><A NAME="tex2html523"
149 149
   HREF="node130.html"><I>Library + ClamAV</I></A>
150
-<LI><A NAME="tex2html522"
150
+<LI><A NAME="tex2html524"
151 151
   HREF="node139.html"><I>Miscellaneous + ClamAV</I></A>
152 152
 </UL>
153
-<LI><A NAME="tex2html523"
153
+<LI><A NAME="tex2html525"
154 154
   HREF="node151.html">Credits</A>
155 155
 <UL>
156
-<LI><A NAME="tex2html524"
156
+<LI><A NAME="tex2html526"
157 157
   HREF="node152.html">Database mirrors</A>
158
-<LI><A NAME="tex2html525"
158
+<LI><A NAME="tex2html527"
159 159
   HREF="node153.html">Contributors</A>
160
-<LI><A NAME="tex2html526"
160
+<LI><A NAME="tex2html528"
161 161
   HREF="node154.html">Donors</A>
162
-<LI><A NAME="tex2html527"
162
+<LI><A NAME="tex2html529"
163 163
   HREF="node155.html">Graphics</A>
164
-<LI><A NAME="tex2html528"
164
+<LI><A NAME="tex2html530"
165 165
   HREF="node156.html">OpenAntiVirus</A>
166 166
 </UL>
167
-<LI><A NAME="tex2html529"
167
+<LI><A NAME="tex2html531"
168 168
   HREF="node157.html">Authors</A>
169
-<LI><A NAME="tex2html530"
169
+<LI><A NAME="tex2html532"
170 170
   HREF="node158.html">About this document ...</A>
171 171
 </UL>
172 172
 <!--End of Table of Contents-->    <BR>
... ...
@@ -234,7 +234,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
234 234
 <BR><HR>
235 235
 <ADDRESS>
236 236
 Tomasz Kojm
237
-2005-06-23
237
+2005-07-25
238 238
 </ADDRESS>
239 239
 </BODY>
240 240
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html639"
30
+<A NAME="tex2html641"
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="tex2html635"
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="tex2html629"
36
+<A NAME="tex2html631"
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="tex2html637"
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="tex2html640"
43
+<B> Next:</B> <A NAME="tex2html642"
44 44
   HREF="node11.html">Requirements</A>
45
-<B> Up:</B> <A NAME="tex2html636"
45
+<B> Up:</B> <A NAME="tex2html638"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html630"
47
+<B> Previous:</B> <A NAME="tex2html632"
48 48
   HREF="node9.html">Daily built snapshots</A>
49
- &nbsp <B>  <A NAME="tex2html638"
49
+ &nbsp <B>  <A NAME="tex2html640"
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="tex2html641"
65
+<LI><A NAME="tex2html643"
66 66
   HREF="node11.html">Requirements</A>
67
-<LI><A NAME="tex2html642"
67
+<LI><A NAME="tex2html644"
68 68
   HREF="node12.html">Installing on a shell account</A>
69
-<LI><A NAME="tex2html643"
69
+<LI><A NAME="tex2html645"
70 70
   HREF="node13.html">Adding new system user and group</A>
71
-<LI><A NAME="tex2html644"
71
+<LI><A NAME="tex2html646"
72 72
   HREF="node14.html">Compilation of base package</A>
73
-<LI><A NAME="tex2html645"
73
+<LI><A NAME="tex2html647"
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
-2005-06-23
80
+2005-07-25
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="tex2html1897"
30
+<A NAME="tex2html1899"
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="tex2html1893"
33
+<A NAME="tex2html1895"
34 34
   HREF="node93.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1887"
36
+<A NAME="tex2html1889"
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="tex2html1895"
39
+<A NAME="tex2html1897"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1898"
43
+<B> Next:</B> <A NAME="tex2html1900"
44 44
   HREF="node101.html">Squidclam</A>
45
-<B> Up:</B> <A NAME="tex2html1894"
45
+<B> Up:</B> <A NAME="tex2html1896"
46 46
   HREF="node93.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1888"
47
+<B> Previous:</B> <A NAME="tex2html1890"
48 48
   HREF="node99.html">SafeSquid</A>
49
- &nbsp <B>  <A NAME="tex2html1896"
49
+ &nbsp <B>  <A NAME="tex2html1898"
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
-2005-06-23
73
+2005-07-25
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="tex2html1909"
30
+<A NAME="tex2html1911"
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="tex2html1905"
33
+<A NAME="tex2html1907"
34 34
   HREF="node93.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1899"
36
+<A NAME="tex2html1901"
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="tex2html1907"
39
+<A NAME="tex2html1909"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1910"
43
+<B> Next:</B> <A NAME="tex2html1912"
44 44
   HREF="node102.html">Viralator</A>
45
-<B> Up:</B> <A NAME="tex2html1906"
45
+<B> Up:</B> <A NAME="tex2html1908"
46 46
   HREF="node93.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1900"
47
+<B> Previous:</B> <A NAME="tex2html1902"
48 48
   HREF="node100.html">SquidClamAV Redirector</A>
49
- &nbsp <B>  <A NAME="tex2html1908"
49
+ &nbsp <B>  <A NAME="tex2html1910"
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
-2005-06-23
69
+2005-07-25
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="tex2html1919"
29
+<A NAME="tex2html1921"
30 30
   HREF="node103.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html1915"
32
+<A NAME="tex2html1917"
33 33
   HREF="node93.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html1911"
35
+<A NAME="tex2html1913"
36 36
   HREF="node101.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html1917"
38
+<A NAME="tex2html1919"
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="tex2html1920"
42
+<B> Next:</B> <A NAME="tex2html1922"
43 43
   HREF="node103.html">Filesystem + ClamAV</A>
44
-<B> Up:</B> <A NAME="tex2html1916"
44
+<B> Up:</B> <A NAME="tex2html1918"
45 45
   HREF="node93.html">Web/FTP Proxy + ClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html1912"
46
+<B> Previous:</B> <A NAME="tex2html1914"
47 47
   HREF="node101.html">Squidclam</A>
48
- &nbsp <B>  <A NAME="tex2html1918"
48
+ &nbsp <B>  <A NAME="tex2html1920"
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
-2005-06-23
68
+2005-07-25
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="tex2html1931"
30
+<A NAME="tex2html1933"
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="tex2html1927"
33
+<A NAME="tex2html1929"
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="tex2html1921"
36
+<A NAME="tex2html1923"
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="tex2html1929"
39
+<A NAME="tex2html1931"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1932"
43
+<B> Next:</B> <A NAME="tex2html1934"
44 44
   HREF="node104.html">Dazuko</A>
45
-<B> Up:</B> <A NAME="tex2html1928"
45
+<B> Up:</B> <A NAME="tex2html1930"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html1922"
47
+<B> Previous:</B> <A NAME="tex2html1924"
48 48
   HREF="node102.html">Viralator</A>
49
- &nbsp <B>  <A NAME="tex2html1930"
49
+ &nbsp <B>  <A NAME="tex2html1932"
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="tex2html1933"
65
+<LI><A NAME="tex2html1935"
66 66
   HREF="node104.html">Dazuko</A>
67
-<LI><A NAME="tex2html1934"
67
+<LI><A NAME="tex2html1936"
68 68
   HREF="node105.html">Famuko</A>
69
-<LI><A NAME="tex2html1935"
69
+<LI><A NAME="tex2html1937"
70 70
   HREF="node106.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
-2005-06-23
76
+2005-07-25
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="tex2html1946"
30
+<A NAME="tex2html1948"
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="tex2html1942"
33
+<A NAME="tex2html1944"
34 34
   HREF="node103.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1936"
36
+<A NAME="tex2html1938"
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="tex2html1944"
39
+<A NAME="tex2html1946"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1947"
43
+<B> Next:</B> <A NAME="tex2html1949"
44 44
   HREF="node105.html">Famuko</A>
45
-<B> Up:</B> <A NAME="tex2html1943"
45
+<B> Up:</B> <A NAME="tex2html1945"
46 46
   HREF="node103.html">Filesystem + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1937"
47
+<B> Previous:</B> <A NAME="tex2html1939"
48 48
   HREF="node103.html">Filesystem + ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html1945"
49
+ &nbsp <B>  <A NAME="tex2html1947"
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
-2005-06-23
76
+2005-07-25
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="tex2html1958"
30
+<A NAME="tex2html1960"
31 31
   HREF="node106.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1954"
33
+<A NAME="tex2html1956"
34 34
   HREF="node103.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1948"
36
+<A NAME="tex2html1950"
37 37
   HREF="node104.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1956"
39
+<A NAME="tex2html1958"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1959"
43
+<B> Next:</B> <A NAME="tex2html1961"
44 44
   HREF="node106.html">OpenAntiVirus samba-vscan</A>
45
-<B> Up:</B> <A NAME="tex2html1955"
45
+<B> Up:</B> <A NAME="tex2html1957"
46 46
   HREF="node103.html">Filesystem + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1949"
47
+<B> Previous:</B> <A NAME="tex2html1951"
48 48
   HREF="node104.html">Dazuko</A>
49
- &nbsp <B>  <A NAME="tex2html1957"
49
+ &nbsp <B>  <A NAME="tex2html1959"
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
-2005-06-23
68
+2005-07-25
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="tex2html1968"
29
+<A NAME="tex2html1970"
30 30
   HREF="node107.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html1964"
32
+<A NAME="tex2html1966"
33 33
   HREF="node103.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html1960"
35
+<A NAME="tex2html1962"
36 36
   HREF="node105.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html1966"
38
+<A NAME="tex2html1968"
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="tex2html1969"
42
+<B> Next:</B> <A NAME="tex2html1971"
43 43
   HREF="node107.html">Mail User Agent +</A>
44
-<B> Up:</B> <A NAME="tex2html1965"
44
+<B> Up:</B> <A NAME="tex2html1967"
45 45
   HREF="node103.html">Filesystem + ClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html1961"
46
+<B> Previous:</B> <A NAME="tex2html1963"
47 47
   HREF="node105.html">Famuko</A>
48
- &nbsp <B>  <A NAME="tex2html1967"
48
+ &nbsp <B>  <A NAME="tex2html1969"
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
-2005-06-23
69
+2005-07-25
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="tex2html1980"
30
+<A NAME="tex2html1982"
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="tex2html1976"
33
+<A NAME="tex2html1978"
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="tex2html1970"
36
+<A NAME="tex2html1972"
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="tex2html1978"
39
+<A NAME="tex2html1980"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1981"
43
+<B> Next:</B> <A NAME="tex2html1983"
44 44
   HREF="node108.html">clamailfilter</A>
45
-<B> Up:</B> <A NAME="tex2html1977"
45
+<B> Up:</B> <A NAME="tex2html1979"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html1971"
47
+<B> Previous:</B> <A NAME="tex2html1973"
48 48
   HREF="node106.html">OpenAntiVirus samba-vscan</A>
49
- &nbsp <B>  <A NAME="tex2html1979"
49
+ &nbsp <B>  <A NAME="tex2html1981"
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="tex2html1982"
65
+<LI><A NAME="tex2html1984"
66 66
   HREF="node108.html">clamailfilter</A>
67
-<LI><A NAME="tex2html1983"
67
+<LI><A NAME="tex2html1985"
68 68
   HREF="node109.html">ClamAssassin</A>
69
-<LI><A NAME="tex2html1984"
69
+<LI><A NAME="tex2html1986"
70 70
   HREF="node110.html">clamscan-procfilter</A>
71
-<LI><A NAME="tex2html1985"
71
+<LI><A NAME="tex2html1987"
72 72
   HREF="node111.html">KMail</A>
73
-<LI><A NAME="tex2html1986"
73
+<LI><A NAME="tex2html1988"
74 74
   HREF="node112.html">MyClamMailFilter</A>
75
-<LI><A NAME="tex2html1987"
75
+<LI><A NAME="tex2html1989"
76 76
   HREF="node113.html">OpenWebMail</A>
77
-<LI><A NAME="tex2html1988"
77
+<LI><A NAME="tex2html1990"
78 78
   HREF="node114.html">QClam</A>
79
-<LI><A NAME="tex2html1989"
79
+<LI><A NAME="tex2html1991"
80 80
   HREF="node115.html">QMVC - Qmail Mail and Virus Control</A>
81
-<LI><A NAME="tex2html1990"
81
+<LI><A NAME="tex2html1992"
82 82
   HREF="node116.html">Sylpheed Claws</A>
83
-<LI><A NAME="tex2html1991"
83
+<LI><A NAME="tex2html1993"
84 84
   HREF="node117.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
-2005-06-23
90
+2005-07-25
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="tex2html2002"
30
+<A NAME="tex2html2004"
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="tex2html1998"
33
+<A NAME="tex2html2000"
34 34
   HREF="node107.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1992"
36
+<A NAME="tex2html1994"
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="tex2html2000"
39
+<A NAME="tex2html2002"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2003"
43
+<B> Next:</B> <A NAME="tex2html2005"
44 44
   HREF="node109.html">ClamAssassin</A>
45
-<B> Up:</B> <A NAME="tex2html1999"
45
+<B> Up:</B> <A NAME="tex2html2001"
46 46
   HREF="node107.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html1993"
47
+<B> Previous:</B> <A NAME="tex2html1995"
48 48
   HREF="node107.html">Mail User Agent +</A>
49
- &nbsp <B>  <A NAME="tex2html2001"
49
+ &nbsp <B>  <A NAME="tex2html2003"
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
-2005-06-23
69
+2005-07-25
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="tex2html2014"
30
+<A NAME="tex2html2016"
31 31
   HREF="node110.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2010"
33
+<A NAME="tex2html2012"
34 34
   HREF="node107.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2004"
36
+<A NAME="tex2html2006"
37 37
   HREF="node108.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2012"
39
+<A NAME="tex2html2014"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2015"
43
+<B> Next:</B> <A NAME="tex2html2017"
44 44
   HREF="node110.html">clamscan-procfilter</A>
45
-<B> Up:</B> <A NAME="tex2html2011"
45
+<B> Up:</B> <A NAME="tex2html2013"
46 46
   HREF="node107.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2005"
47
+<B> Previous:</B> <A NAME="tex2html2007"
48 48
   HREF="node108.html">clamailfilter</A>
49
- &nbsp <B>  <A NAME="tex2html2013"
49
+ &nbsp <B>  <A NAME="tex2html2015"
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
-2005-06-23
70
+2005-07-25
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="tex2html656"
30
+<A NAME="tex2html658"
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="tex2html652"
33
+<A NAME="tex2html654"
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="tex2html646"
36
+<A NAME="tex2html648"
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="tex2html654"
39
+<A NAME="tex2html656"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html657"
43
+<B> Next:</B> <A NAME="tex2html659"
44 44
   HREF="node12.html">Installing on a shell</A>
45
-<B> Up:</B> <A NAME="tex2html653"
45
+<B> Up:</B> <A NAME="tex2html655"
46 46
   HREF="node10.html">Installation</A>
47
-<B> Previous:</B> <A NAME="tex2html647"
47
+<B> Previous:</B> <A NAME="tex2html649"
48 48
   HREF="node10.html">Installation</A>
49
- &nbsp <B>  <A NAME="tex2html655"
49
+ &nbsp <B>  <A NAME="tex2html657"
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
-2005-06-23
92
+2005-07-25
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="tex2html2026"
30
+<A NAME="tex2html2028"
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="tex2html2022"
33
+<A NAME="tex2html2024"
34 34
   HREF="node107.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2016"
36
+<A NAME="tex2html2018"
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="tex2html2024"
39
+<A NAME="tex2html2026"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2027"
43
+<B> Next:</B> <A NAME="tex2html2029"
44 44
   HREF="node111.html">KMail</A>
45
-<B> Up:</B> <A NAME="tex2html2023"
45
+<B> Up:</B> <A NAME="tex2html2025"
46 46
   HREF="node107.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2017"
47
+<B> Previous:</B> <A NAME="tex2html2019"
48 48
   HREF="node109.html">ClamAssassin</A>
49
- &nbsp <B>  <A NAME="tex2html2025"
49
+ &nbsp <B>  <A NAME="tex2html2027"
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
-2005-06-23
70
+2005-07-25
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="tex2html2038"
30
+<A NAME="tex2html2040"
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="tex2html2034"
33
+<A NAME="tex2html2036"
34 34
   HREF="node107.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2028"
36
+<A NAME="tex2html2030"
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="tex2html2036"
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="tex2html2039"
43
+<B> Next:</B> <A NAME="tex2html2041"
44 44
   HREF="node112.html">MyClamMailFilter</A>
45
-<B> Up:</B> <A NAME="tex2html2035"
45
+<B> Up:</B> <A NAME="tex2html2037"
46 46
   HREF="node107.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2029"
47
+<B> Previous:</B> <A NAME="tex2html2031"
48 48
   HREF="node110.html">clamscan-procfilter</A>
49
- &nbsp <B>  <A NAME="tex2html2037"
49
+ &nbsp <B>  <A NAME="tex2html2039"
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
-2005-06-23
69
+2005-07-25
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="tex2html2050"
30
+<A NAME="tex2html2052"
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="tex2html2046"
33
+<A NAME="tex2html2048"
34 34
   HREF="node107.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2040"
36
+<A NAME="tex2html2042"
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="tex2html2048"
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="tex2html2051"
43
+<B> Next:</B> <A NAME="tex2html2053"
44 44
   HREF="node113.html">OpenWebMail</A>
45
-<B> Up:</B> <A NAME="tex2html2047"
45
+<B> Up:</B> <A NAME="tex2html2049"
46 46
   HREF="node107.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2041"
47
+<B> Previous:</B> <A NAME="tex2html2043"
48 48
   HREF="node111.html">KMail</A>
49
- &nbsp <B>  <A NAME="tex2html2049"
49
+ &nbsp <B>  <A NAME="tex2html2051"
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
-2005-06-23
71
+2005-07-25
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="tex2html2062"
30
+<A NAME="tex2html2064"
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="tex2html2058"
33
+<A NAME="tex2html2060"
34 34
   HREF="node107.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2052"
36
+<A NAME="tex2html2054"
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="tex2html2060"
39
+<A NAME="tex2html2062"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2063"
43
+<B> Next:</B> <A NAME="tex2html2065"
44 44
   HREF="node114.html">QClam</A>
45
-<B> Up:</B> <A NAME="tex2html2059"
45
+<B> Up:</B> <A NAME="tex2html2061"
46 46
   HREF="node107.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2053"
47
+<B> Previous:</B> <A NAME="tex2html2055"
48 48
   HREF="node112.html">MyClamMailFilter</A>
49
- &nbsp <B>  <A NAME="tex2html2061"
49
+ &nbsp <B>  <A NAME="tex2html2063"
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
-2005-06-23
71
+2005-07-25
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="tex2html2074"
30
+<A NAME="tex2html2076"
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="tex2html2070"
33
+<A NAME="tex2html2072"
34 34
   HREF="node107.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2064"
36
+<A NAME="tex2html2066"
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="tex2html2072"
39
+<A NAME="tex2html2074"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2075"
43
+<B> Next:</B> <A NAME="tex2html2077"
44 44
   HREF="node115.html">QMVC - Qmail Mail</A>
45
-<B> Up:</B> <A NAME="tex2html2071"
45
+<B> Up:</B> <A NAME="tex2html2073"
46 46
   HREF="node107.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2065"
47
+<B> Previous:</B> <A NAME="tex2html2067"
48 48
   HREF="node113.html">OpenWebMail</A>
49
- &nbsp <B>  <A NAME="tex2html2073"
49
+ &nbsp <B>  <A NAME="tex2html2075"
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
-2005-06-23
72
+2005-07-25
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="tex2html2086"
30
+<A NAME="tex2html2088"
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="tex2html2082"
33
+<A NAME="tex2html2084"
34 34
   HREF="node107.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2076"
36
+<A NAME="tex2html2078"
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="tex2html2084"
39
+<A NAME="tex2html2086"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2087"
43
+<B> Next:</B> <A NAME="tex2html2089"
44 44
   HREF="node116.html">Sylpheed Claws</A>
45
-<B> Up:</B> <A NAME="tex2html2083"
45
+<B> Up:</B> <A NAME="tex2html2085"
46 46
   HREF="node107.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2077"
47
+<B> Previous:</B> <A NAME="tex2html2079"
48 48
   HREF="node114.html">QClam</A>
49
- &nbsp <B>  <A NAME="tex2html2085"
49
+ &nbsp <B>  <A NAME="tex2html2087"
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
-2005-06-23
70
+2005-07-25
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="tex2html2098"
30
+<A NAME="tex2html2100"
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="tex2html2094"
33
+<A NAME="tex2html2096"
34 34
   HREF="node107.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2088"
36
+<A NAME="tex2html2090"
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="tex2html2096"
39
+<A NAME="tex2html2098"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2099"
43
+<B> Next:</B> <A NAME="tex2html2101"
44 44
   HREF="node117.html">SoftlabsAV</A>
45
-<B> Up:</B> <A NAME="tex2html2095"
45
+<B> Up:</B> <A NAME="tex2html2097"
46 46
   HREF="node107.html">Mail User Agent +</A>
47
-<B> Previous:</B> <A NAME="tex2html2089"
47
+<B> Previous:</B> <A NAME="tex2html2091"
48 48
   HREF="node115.html">QMVC - Qmail Mail</A>
49
- &nbsp <B>  <A NAME="tex2html2097"
49
+ &nbsp <B>  <A NAME="tex2html2099"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -68,7 +68,7 @@ Sylpheed Claws is a bleeding edge branch of Sylpheed, a light weight mail
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-23
71
+2005-07-25
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="tex2html2108"
29
+<A NAME="tex2html2110"
30 30
   HREF="node118.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html2104"
32
+<A NAME="tex2html2106"
33 33
   HREF="node107.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html2100"
35
+<A NAME="tex2html2102"
36 36
   HREF="node116.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html2106"
38
+<A NAME="tex2html2108"
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="tex2html2109"
42
+<B> Next:</B> <A NAME="tex2html2111"
43 43
   HREF="node118.html">Graphical User Interface +</A>
44
-<B> Up:</B> <A NAME="tex2html2105"
44
+<B> Up:</B> <A NAME="tex2html2107"
45 45
   HREF="node107.html">Mail User Agent +</A>
46
-<B> Previous:</B> <A NAME="tex2html2101"
46
+<B> Previous:</B> <A NAME="tex2html2103"
47 47
   HREF="node116.html">Sylpheed Claws</A>
48
- &nbsp <B>  <A NAME="tex2html2107"
48
+ &nbsp <B>  <A NAME="tex2html2109"
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
-2005-06-23
69
+2005-07-25
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="tex2html2120"
30
+<A NAME="tex2html2122"
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="tex2html2116"
33
+<A NAME="tex2html2118"
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="tex2html2110"
36
+<A NAME="tex2html2112"
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="tex2html2118"
39
+<A NAME="tex2html2120"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2121"
43
+<B> Next:</B> <A NAME="tex2html2123"
44 44
   HREF="node119.html">AVScan</A>
45
-<B> Up:</B> <A NAME="tex2html2117"
45
+<B> Up:</B> <A NAME="tex2html2119"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html2111"
47
+<B> Previous:</B> <A NAME="tex2html2113"
48 48
   HREF="node117.html">SoftlabsAV</A>
49
- &nbsp <B>  <A NAME="tex2html2119"
49
+ &nbsp <B>  <A NAME="tex2html2121"
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="tex2html2122"
65
+<LI><A NAME="tex2html2124"
66 66
   HREF="node119.html">AVScan</A>
67
-<LI><A NAME="tex2html2123"
67
+<LI><A NAME="tex2html2125"
68 68
   HREF="node120.html">BeClam</A>
69
-<LI><A NAME="tex2html2124"
69
+<LI><A NAME="tex2html2126"
70 70
   HREF="node121.html">Clamaktion</A>
71
-<LI><A NAME="tex2html2125"
71
+<LI><A NAME="tex2html2127"
72 72
   HREF="node122.html">ClamShell</A>
73
-<LI><A NAME="tex2html2126"
73
+<LI><A NAME="tex2html2128"
74 74
   HREF="node123.html">ClamTk</A>
75
-<LI><A NAME="tex2html2127"
75
+<LI><A NAME="tex2html2129"
76 76
   HREF="node124.html">clamXav</A>
77
-<LI><A NAME="tex2html2128"
77
+<LI><A NAME="tex2html2130"
78 78
   HREF="node125.html">ClamWin</A>
79
-<LI><A NAME="tex2html2129"
79
+<LI><A NAME="tex2html2131"
80 80
   HREF="node126.html">FETCAV</A>
81
-<LI><A NAME="tex2html2130"
81
+<LI><A NAME="tex2html2132"
82 82
   HREF="node127.html">KlamAV</A>
83
-<LI><A NAME="tex2html2131"
83
+<LI><A NAME="tex2html2133"
84 84
   HREF="node128.html">QtClamAVclient</A>
85
-<LI><A NAME="tex2html2132"
85
+<LI><A NAME="tex2html2134"
86 86
   HREF="node129.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
-2005-06-23
92
+2005-07-25
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="tex2html2143"
30
+<A NAME="tex2html2145"
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="tex2html2139"
33
+<A NAME="tex2html2141"
34 34
   HREF="node118.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2133"
36
+<A NAME="tex2html2135"
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="tex2html2141"
39
+<A NAME="tex2html2143"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2144"
43
+<B> Next:</B> <A NAME="tex2html2146"
44 44
   HREF="node120.html">BeClam</A>
45
-<B> Up:</B> <A NAME="tex2html2140"
45
+<B> Up:</B> <A NAME="tex2html2142"
46 46
   HREF="node118.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2134"
47
+<B> Previous:</B> <A NAME="tex2html2136"
48 48
   HREF="node118.html">Graphical User Interface +</A>
49
- &nbsp <B>  <A NAME="tex2html2142"
49
+ &nbsp <B>  <A NAME="tex2html2144"
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
-2005-06-23
71
+2005-07-25
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="tex2html668"
30
+<A NAME="tex2html670"
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="tex2html664"
33
+<A NAME="tex2html666"
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="tex2html658"
36
+<A NAME="tex2html660"
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="tex2html666"
39
+<A NAME="tex2html668"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html669"
43
+<B> Next:</B> <A NAME="tex2html671"
44 44
   HREF="node13.html">Adding new system user</A>
45
-<B> Up:</B> <A NAME="tex2html665"
45
+<B> Up:</B> <A NAME="tex2html667"
46 46
   HREF="node10.html">Installation</A>
47
-<B> Previous:</B> <A NAME="tex2html659"
47
+<B> Previous:</B> <A NAME="tex2html661"
48 48
   HREF="node11.html">Requirements</A>
49
- &nbsp <B>  <A NAME="tex2html667"
49
+ &nbsp <B>  <A NAME="tex2html669"
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
-2005-06-23
78
+2005-07-25
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="tex2html2155"
30
+<A NAME="tex2html2157"
31 31
   HREF="node121.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2151"
33
+<A NAME="tex2html2153"
34 34
   HREF="node118.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2145"
36
+<A NAME="tex2html2147"
37 37
   HREF="node119.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2153"
39
+<A NAME="tex2html2155"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2156"
43
+<B> Next:</B> <A NAME="tex2html2158"
44 44
   HREF="node121.html">Clamaktion</A>
45
-<B> Up:</B> <A NAME="tex2html2152"
45
+<B> Up:</B> <A NAME="tex2html2154"
46 46
   HREF="node118.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2146"
47
+<B> Previous:</B> <A NAME="tex2html2148"
48 48
   HREF="node119.html">AVScan</A>
49
- &nbsp <B>  <A NAME="tex2html2154"
49
+ &nbsp <B>  <A NAME="tex2html2156"
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
-2005-06-23
68
+2005-07-25
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="tex2html2167"
30
+<A NAME="tex2html2169"
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="tex2html2163"
33
+<A NAME="tex2html2165"
34 34
   HREF="node118.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2157"
36
+<A NAME="tex2html2159"
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="tex2html2165"
39
+<A NAME="tex2html2167"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2168"
43
+<B> Next:</B> <A NAME="tex2html2170"
44 44
   HREF="node122.html">ClamShell</A>
45
-<B> Up:</B> <A NAME="tex2html2164"
45
+<B> Up:</B> <A NAME="tex2html2166"
46 46
   HREF="node118.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2158"
47
+<B> Previous:</B> <A NAME="tex2html2160"
48 48
   HREF="node120.html">BeClam</A>
49
- &nbsp <B>  <A NAME="tex2html2166"
49
+ &nbsp <B>  <A NAME="tex2html2168"
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
-2005-06-23
69
+2005-07-25
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="tex2html2179"
30
+<A NAME="tex2html2181"
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="tex2html2175"
33
+<A NAME="tex2html2177"
34 34
   HREF="node118.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2169"
36
+<A NAME="tex2html2171"
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="tex2html2177"
39
+<A NAME="tex2html2179"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2180"
43
+<B> Next:</B> <A NAME="tex2html2182"
44 44
   HREF="node123.html">ClamTk</A>
45
-<B> Up:</B> <A NAME="tex2html2176"
45
+<B> Up:</B> <A NAME="tex2html2178"
46 46
   HREF="node118.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2170"
47
+<B> Previous:</B> <A NAME="tex2html2172"
48 48
   HREF="node121.html">Clamaktion</A>
49
- &nbsp <B>  <A NAME="tex2html2178"
49
+ &nbsp <B>  <A NAME="tex2html2180"
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
-2005-06-23
69
+2005-07-25
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="tex2html2191"
30
+<A NAME="tex2html2193"
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="tex2html2187"
33
+<A NAME="tex2html2189"
34 34
   HREF="node118.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2181"
36
+<A NAME="tex2html2183"
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="tex2html2189"
39
+<A NAME="tex2html2191"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2192"
43
+<B> Next:</B> <A NAME="tex2html2194"
44 44
   HREF="node124.html">clamXav</A>
45
-<B> Up:</B> <A NAME="tex2html2188"
45
+<B> Up:</B> <A NAME="tex2html2190"
46 46
   HREF="node118.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2182"
47
+<B> Previous:</B> <A NAME="tex2html2184"
48 48
   HREF="node122.html">ClamShell</A>
49
- &nbsp <B>  <A NAME="tex2html2190"
49
+ &nbsp <B>  <A NAME="tex2html2192"
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
-2005-06-23
68
+2005-07-25
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="tex2html2203"
30
+<A NAME="tex2html2205"
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="tex2html2199"
33
+<A NAME="tex2html2201"
34 34
   HREF="node118.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2193"
36
+<A NAME="tex2html2195"
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="tex2html2201"
39
+<A NAME="tex2html2203"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2204"
43
+<B> Next:</B> <A NAME="tex2html2206"
44 44
   HREF="node125.html">ClamWin</A>
45
-<B> Up:</B> <A NAME="tex2html2200"
45
+<B> Up:</B> <A NAME="tex2html2202"
46 46
   HREF="node118.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2194"
47
+<B> Previous:</B> <A NAME="tex2html2196"
48 48
   HREF="node123.html">ClamTk</A>
49
- &nbsp <B>  <A NAME="tex2html2202"
49
+ &nbsp <B>  <A NAME="tex2html2204"
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
-2005-06-23
69
+2005-07-25
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="tex2html2215"
30
+<A NAME="tex2html2217"
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="tex2html2211"
33
+<A NAME="tex2html2213"
34 34
   HREF="node118.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2205"
36
+<A NAME="tex2html2207"
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="tex2html2213"
39
+<A NAME="tex2html2215"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2216"
43
+<B> Next:</B> <A NAME="tex2html2218"
44 44
   HREF="node126.html">FETCAV</A>
45
-<B> Up:</B> <A NAME="tex2html2212"
45
+<B> Up:</B> <A NAME="tex2html2214"
46 46
   HREF="node118.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2206"
47
+<B> Previous:</B> <A NAME="tex2html2208"
48 48
   HREF="node124.html">clamXav</A>
49
- &nbsp <B>  <A NAME="tex2html2214"
49
+ &nbsp <B>  <A NAME="tex2html2216"
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
-2005-06-23
75
+2005-07-25
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="tex2html2227"
30
+<A NAME="tex2html2229"
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="tex2html2223"
33
+<A NAME="tex2html2225"
34 34
   HREF="node118.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2217"
36
+<A NAME="tex2html2219"
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="tex2html2225"
39
+<A NAME="tex2html2227"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2228"
43
+<B> Next:</B> <A NAME="tex2html2230"
44 44
   HREF="node127.html">KlamAV</A>
45
-<B> Up:</B> <A NAME="tex2html2224"
45
+<B> Up:</B> <A NAME="tex2html2226"
46 46
   HREF="node118.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2218"
47
+<B> Previous:</B> <A NAME="tex2html2220"
48 48
   HREF="node125.html">ClamWin</A>
49
- &nbsp <B>  <A NAME="tex2html2226"
49
+ &nbsp <B>  <A NAME="tex2html2228"
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
-2005-06-23
69
+2005-07-25
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="tex2html2239"
30
+<A NAME="tex2html2241"
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="tex2html2235"
33
+<A NAME="tex2html2237"
34 34
   HREF="node118.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2229"
36
+<A NAME="tex2html2231"
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="tex2html2237"
39
+<A NAME="tex2html2239"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2240"
43
+<B> Next:</B> <A NAME="tex2html2242"
44 44
   HREF="node128.html">QtClamAVclient</A>
45
-<B> Up:</B> <A NAME="tex2html2236"
45
+<B> Up:</B> <A NAME="tex2html2238"
46 46
   HREF="node118.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2230"
47
+<B> Previous:</B> <A NAME="tex2html2232"
48 48
   HREF="node126.html">FETCAV</A>
49
- &nbsp <B>  <A NAME="tex2html2238"
49
+ &nbsp <B>  <A NAME="tex2html2240"
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
-2005-06-23
71
+2005-07-25
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="tex2html2251"
30
+<A NAME="tex2html2253"
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="tex2html2247"
33
+<A NAME="tex2html2249"
34 34
   HREF="node118.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2241"
36
+<A NAME="tex2html2243"
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="tex2html2249"
39
+<A NAME="tex2html2251"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2252"
43
+<B> Next:</B> <A NAME="tex2html2254"
44 44
   HREF="node129.html">wbmclamav</A>
45
-<B> Up:</B> <A NAME="tex2html2248"
45
+<B> Up:</B> <A NAME="tex2html2250"
46 46
   HREF="node118.html">Graphical User Interface +</A>
47
-<B> Previous:</B> <A NAME="tex2html2242"
47
+<B> Previous:</B> <A NAME="tex2html2244"
48 48
   HREF="node127.html">KlamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2250"
49
+ &nbsp <B>  <A NAME="tex2html2252"
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
-2005-06-23
70
+2005-07-25
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="tex2html2261"
29
+<A NAME="tex2html2263"
30 30
   HREF="node130.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html2257"
32
+<A NAME="tex2html2259"
33 33
   HREF="node118.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html2253"
35
+<A NAME="tex2html2255"
36 36
   HREF="node128.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html2259"
38
+<A NAME="tex2html2261"
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="tex2html2262"
42
+<B> Next:</B> <A NAME="tex2html2264"
43 43
   HREF="node130.html">Library + ClamAV</A>
44
-<B> Up:</B> <A NAME="tex2html2258"
44
+<B> Up:</B> <A NAME="tex2html2260"
45 45
   HREF="node118.html">Graphical User Interface +</A>
46
-<B> Previous:</B> <A NAME="tex2html2254"
46
+<B> Previous:</B> <A NAME="tex2html2256"
47 47
   HREF="node128.html">QtClamAVclient</A>
48
- &nbsp <B>  <A NAME="tex2html2260"
48
+ &nbsp <B>  <A NAME="tex2html2262"
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
-2005-06-23
68
+2005-07-25
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="tex2html680"
30
+<A NAME="tex2html682"
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="tex2html676"
33
+<A NAME="tex2html678"
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="tex2html670"
36
+<A NAME="tex2html672"
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="tex2html678"
39
+<A NAME="tex2html680"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html681"
43
+<B> Next:</B> <A NAME="tex2html683"
44 44
   HREF="node14.html">Compilation of base package</A>
45
-<B> Up:</B> <A NAME="tex2html677"
45
+<B> Up:</B> <A NAME="tex2html679"
46 46
   HREF="node10.html">Installation</A>
47
-<B> Previous:</B> <A NAME="tex2html671"
47
+<B> Previous:</B> <A NAME="tex2html673"
48 48
   HREF="node12.html">Installing on a shell</A>
49
- &nbsp <B>  <A NAME="tex2html679"
49
+ &nbsp <B>  <A NAME="tex2html681"
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
-2005-06-23
72
+2005-07-25
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="tex2html2273"
30
+<A NAME="tex2html2275"
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="tex2html2269"
33
+<A NAME="tex2html2271"
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="tex2html2263"
36
+<A NAME="tex2html2265"
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="tex2html2271"
39
+<A NAME="tex2html2273"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2274"
43
+<B> Next:</B> <A NAME="tex2html2276"
44 44
   HREF="node131.html">ClamAVPlugin</A>
45
-<B> Up:</B> <A NAME="tex2html2270"
45
+<B> Up:</B> <A NAME="tex2html2272"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html2264"
47
+<B> Previous:</B> <A NAME="tex2html2266"
48 48
   HREF="node129.html">wbmclamav</A>
49
- &nbsp <B>  <A NAME="tex2html2272"
49
+ &nbsp <B>  <A NAME="tex2html2274"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,28 +62,28 @@ 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="tex2html2275"
65
+<LI><A NAME="tex2html2277"
66 66
   HREF="node131.html">ClamAVPlugin</A>
67
-<LI><A NAME="tex2html2276"
67
+<LI><A NAME="tex2html2278"
68 68
   HREF="node132.html">clamavr</A>
69
-<LI><A NAME="tex2html2277"
69
+<LI><A NAME="tex2html2279"
70 70
   HREF="node133.html">D bindings for ClamAV</A>
71
-<LI><A NAME="tex2html2278"
71
+<LI><A NAME="tex2html2280"
72 72
   HREF="node134.html">File::Scan::ClamAV</A>
73
-<LI><A NAME="tex2html2279"
73
+<LI><A NAME="tex2html2281"
74 74
   HREF="node135.html">Mail::ClamAV</A>
75
-<LI><A NAME="tex2html2280"
75
+<LI><A NAME="tex2html2282"
76 76
   HREF="node136.html">php-clamav</A>
77
-<LI><A NAME="tex2html2281"
77
+<LI><A NAME="tex2html2283"
78 78
   HREF="node137.html">pyclamav</A>
79
-<LI><A NAME="tex2html2282"
79
+<LI><A NAME="tex2html2284"
80 80
   HREF="node138.html">WRAVLib</A>
81 81
 </UL>
82 82
 <!--End of Table of Child-Links-->
83 83
 <BR><HR>
84 84
 <ADDRESS>
85 85
 Tomasz Kojm
86
-2005-06-23
86
+2005-07-25
87 87
 </ADDRESS>
88 88
 </BODY>
89 89
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2293"
30
+<A NAME="tex2html2295"
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="tex2html2289"
33
+<A NAME="tex2html2291"
34 34
   HREF="node130.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2283"
36
+<A NAME="tex2html2285"
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="tex2html2291"
39
+<A NAME="tex2html2293"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2294"
43
+<B> Next:</B> <A NAME="tex2html2296"
44 44
   HREF="node132.html">clamavr</A>
45
-<B> Up:</B> <A NAME="tex2html2290"
45
+<B> Up:</B> <A NAME="tex2html2292"
46 46
   HREF="node130.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2284"
47
+<B> Previous:</B> <A NAME="tex2html2286"
48 48
   HREF="node130.html">Library + ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2292"
49
+ &nbsp <B>  <A NAME="tex2html2294"
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
-2005-06-23
68
+2005-07-25
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="tex2html2305"
30
+<A NAME="tex2html2307"
31 31
   HREF="node133.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2301"
33
+<A NAME="tex2html2303"
34 34
   HREF="node130.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2295"
36
+<A NAME="tex2html2297"
37 37
   HREF="node131.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2303"
39
+<A NAME="tex2html2305"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2306"
43
+<B> Next:</B> <A NAME="tex2html2308"
44 44
   HREF="node133.html">D bindings for ClamAV</A>
45
-<B> Up:</B> <A NAME="tex2html2302"
45
+<B> Up:</B> <A NAME="tex2html2304"
46 46
   HREF="node130.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2296"
47
+<B> Previous:</B> <A NAME="tex2html2298"
48 48
   HREF="node131.html">ClamAVPlugin</A>
49
- &nbsp <B>  <A NAME="tex2html2304"
49
+ &nbsp <B>  <A NAME="tex2html2306"
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
-2005-06-23
68
+2005-07-25
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="tex2html2317"
30
+<A NAME="tex2html2319"
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="tex2html2313"
33
+<A NAME="tex2html2315"
34 34
   HREF="node130.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2307"
36
+<A NAME="tex2html2309"
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="tex2html2315"
39
+<A NAME="tex2html2317"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2318"
43
+<B> Next:</B> <A NAME="tex2html2320"
44 44
   HREF="node134.html">File::Scan::ClamAV</A>
45
-<B> Up:</B> <A NAME="tex2html2314"
45
+<B> Up:</B> <A NAME="tex2html2316"
46 46
   HREF="node130.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2308"
47
+<B> Previous:</B> <A NAME="tex2html2310"
48 48
   HREF="node132.html">clamavr</A>
49
- &nbsp <B>  <A NAME="tex2html2316"
49
+ &nbsp <B>  <A NAME="tex2html2318"
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
-2005-06-23
70
+2005-07-25
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="tex2html2329"
30
+<A NAME="tex2html2331"
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="tex2html2325"
33
+<A NAME="tex2html2327"
34 34
   HREF="node130.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2319"
36
+<A NAME="tex2html2321"
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="tex2html2327"
39
+<A NAME="tex2html2329"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2330"
43
+<B> Next:</B> <A NAME="tex2html2332"
44 44
   HREF="node135.html">Mail::ClamAV</A>
45
-<B> Up:</B> <A NAME="tex2html2326"
45
+<B> Up:</B> <A NAME="tex2html2328"
46 46
   HREF="node130.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2320"
47
+<B> Previous:</B> <A NAME="tex2html2322"
48 48
   HREF="node133.html">D bindings for ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2328"
49
+ &nbsp <B>  <A NAME="tex2html2330"
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
-2005-06-23
68
+2005-07-25
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="tex2html2341"
30
+<A NAME="tex2html2343"
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="tex2html2337"
33
+<A NAME="tex2html2339"
34 34
   HREF="node130.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2331"
36
+<A NAME="tex2html2333"
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="tex2html2339"
39
+<A NAME="tex2html2341"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2342"
43
+<B> Next:</B> <A NAME="tex2html2344"
44 44
   HREF="node136.html">php-clamav</A>
45
-<B> Up:</B> <A NAME="tex2html2338"
45
+<B> Up:</B> <A NAME="tex2html2340"
46 46
   HREF="node130.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2332"
47
+<B> Previous:</B> <A NAME="tex2html2334"
48 48
   HREF="node134.html">File::Scan::ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2340"
49
+ &nbsp <B>  <A NAME="tex2html2342"
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
-2005-06-23
68
+2005-07-25
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="tex2html2353"
30
+<A NAME="tex2html2355"
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="tex2html2349"
33
+<A NAME="tex2html2351"
34 34
   HREF="node130.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2343"
36
+<A NAME="tex2html2345"
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="tex2html2351"
39
+<A NAME="tex2html2353"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2354"
43
+<B> Next:</B> <A NAME="tex2html2356"
44 44
   HREF="node137.html">pyclamav</A>
45
-<B> Up:</B> <A NAME="tex2html2350"
45
+<B> Up:</B> <A NAME="tex2html2352"
46 46
   HREF="node130.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2344"
47
+<B> Previous:</B> <A NAME="tex2html2346"
48 48
   HREF="node135.html">Mail::ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2352"
49
+ &nbsp <B>  <A NAME="tex2html2354"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -66,7 +66,7 @@ php-clamav is a small module that implements a limited subset of the
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-23
69
+2005-07-25
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="tex2html2365"
30
+<A NAME="tex2html2367"
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="tex2html2361"
33
+<A NAME="tex2html2363"
34 34
   HREF="node130.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2355"
36
+<A NAME="tex2html2357"
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="tex2html2363"
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="tex2html2366"
43
+<B> Next:</B> <A NAME="tex2html2368"
44 44
   HREF="node138.html">WRAVLib</A>
45
-<B> Up:</B> <A NAME="tex2html2362"
45
+<B> Up:</B> <A NAME="tex2html2364"
46 46
   HREF="node130.html">Library + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2356"
47
+<B> Previous:</B> <A NAME="tex2html2358"
48 48
   HREF="node136.html">php-clamav</A>
49
- &nbsp <B>  <A NAME="tex2html2364"
49
+ &nbsp <B>  <A NAME="tex2html2366"
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
-2005-06-23
68
+2005-07-25
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="tex2html2375"
29
+<A NAME="tex2html2377"
30 30
   HREF="node139.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html2371"
32
+<A NAME="tex2html2373"
33 33
   HREF="node130.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html2367"
35
+<A NAME="tex2html2369"
36 36
   HREF="node137.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html2373"
38
+<A NAME="tex2html2375"
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="tex2html2376"
42
+<B> Next:</B> <A NAME="tex2html2378"
43 43
   HREF="node139.html">Miscellaneous + ClamAV</A>
44
-<B> Up:</B> <A NAME="tex2html2372"
44
+<B> Up:</B> <A NAME="tex2html2374"
45 45
   HREF="node130.html">Library + ClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html2368"
46
+<B> Previous:</B> <A NAME="tex2html2370"
47 47
   HREF="node137.html">pyclamav</A>
48
- &nbsp <B>  <A NAME="tex2html2374"
48
+ &nbsp <B>  <A NAME="tex2html2376"
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
-2005-06-23
69
+2005-07-25
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="tex2html2385"
29
+<A NAME="tex2html2387"
30 30
   HREF="node140.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html2381"
32
+<A NAME="tex2html2383"
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="tex2html2377"
35
+<A NAME="tex2html2379"
36 36
   HREF="node138.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html2383"
38
+<A NAME="tex2html2385"
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="tex2html2386"
42
+<B> Next:</B> <A NAME="tex2html2388"
43 43
   HREF="node140.html">INSERT</A>
44
-<B> Up:</B> <A NAME="tex2html2382"
44
+<B> Up:</B> <A NAME="tex2html2384"
45 45
   HREF="node47.html">Third party software</A>
46
-<B> Previous:</B> <A NAME="tex2html2378"
46
+<B> Previous:</B> <A NAME="tex2html2380"
47 47
   HREF="node138.html">WRAVLib</A>
48
- &nbsp <B>  <A NAME="tex2html2384"
48
+ &nbsp <B>  <A NAME="tex2html2386"
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="tex2html2387"
64
+<LI><A NAME="tex2html2389"
65 65
   HREF="node140.html">INSERT</A>
66
-<LI><A NAME="tex2html2388"
66
+<LI><A NAME="tex2html2390"
67 67
   HREF="node141.html">Local Area Security</A>
68
-<LI><A NAME="tex2html2389"
68
+<LI><A NAME="tex2html2391"
69 69
   HREF="node142.html">mailgraph</A>
70
-<LI><A NAME="tex2html2390"
70
+<LI><A NAME="tex2html2392"
71 71
   HREF="node143.html">mailman-clamav</A>
72
-<LI><A NAME="tex2html2391"
72
+<LI><A NAME="tex2html2393"
73 73
   HREF="node144.html">Moodle</A>
74
-<LI><A NAME="tex2html2392"
74
+<LI><A NAME="tex2html2394"
75 75
   HREF="node145.html">nclamd</A>
76
-<LI><A NAME="tex2html2393"
76
+<LI><A NAME="tex2html2395"
77 77
   HREF="node146.html">qmailmrtg7</A>
78
-<LI><A NAME="tex2html2394"
78
+<LI><A NAME="tex2html2396"
79 79
   HREF="node147.html">redWall Firewall</A>
80
-<LI><A NAME="tex2html2395"
80
+<LI><A NAME="tex2html2397"
81 81
   HREF="node148.html">Scan Log Analyzer</A>
82
-<LI><A NAME="tex2html2396"
82
+<LI><A NAME="tex2html2398"
83 83
   HREF="node149.html">snort-inline</A>
84
-<LI><A NAME="tex2html2397"
84
+<LI><A NAME="tex2html2399"
85 85
   HREF="node150.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
-2005-06-23
91
+2005-07-25
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="tex2html692"
30
+<A NAME="tex2html694"
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="tex2html688"
33
+<A NAME="tex2html690"
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="tex2html682"
36
+<A NAME="tex2html684"
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="tex2html690"
39
+<A NAME="tex2html692"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html693"
43
+<B> Next:</B> <A NAME="tex2html695"
44 44
   HREF="node15.html">Compilation with clamav-milter enabled</A>
45
-<B> Up:</B> <A NAME="tex2html689"
45
+<B> Up:</B> <A NAME="tex2html691"
46 46
   HREF="node10.html">Installation</A>
47
-<B> Previous:</B> <A NAME="tex2html683"
47
+<B> Previous:</B> <A NAME="tex2html685"
48 48
   HREF="node13.html">Adding new system user</A>
49
- &nbsp <B>  <A NAME="tex2html691"
49
+ &nbsp <B>  <A NAME="tex2html693"
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
-2005-06-23
81
+2005-07-25
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="tex2html2408"
30
+<A NAME="tex2html2410"
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="tex2html2404"
33
+<A NAME="tex2html2406"
34 34
   HREF="node139.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2398"
36
+<A NAME="tex2html2400"
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="tex2html2406"
39
+<A NAME="tex2html2408"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2409"
43
+<B> Next:</B> <A NAME="tex2html2411"
44 44
   HREF="node141.html">Local Area Security</A>
45
-<B> Up:</B> <A NAME="tex2html2405"
45
+<B> Up:</B> <A NAME="tex2html2407"
46 46
   HREF="node139.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2399"
47
+<B> Previous:</B> <A NAME="tex2html2401"
48 48
   HREF="node139.html">Miscellaneous + ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2407"
49
+ &nbsp <B>  <A NAME="tex2html2409"
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
-2005-06-23
74
+2005-07-25
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="tex2html2420"
30
+<A NAME="tex2html2422"
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="tex2html2416"
33
+<A NAME="tex2html2418"
34 34
   HREF="node139.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2410"
36
+<A NAME="tex2html2412"
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="tex2html2418"
39
+<A NAME="tex2html2420"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2421"
43
+<B> Next:</B> <A NAME="tex2html2423"
44 44
   HREF="node142.html">mailgraph</A>
45
-<B> Up:</B> <A NAME="tex2html2417"
45
+<B> Up:</B> <A NAME="tex2html2419"
46 46
   HREF="node139.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2411"
47
+<B> Previous:</B> <A NAME="tex2html2413"
48 48
   HREF="node140.html">INSERT</A>
49
- &nbsp <B>  <A NAME="tex2html2419"
49
+ &nbsp <B>  <A NAME="tex2html2421"
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
-2005-06-23
70
+2005-07-25
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="tex2html2432"
30
+<A NAME="tex2html2434"
31 31
   HREF="node143.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2428"
33
+<A NAME="tex2html2430"
34 34
   HREF="node139.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2422"
36
+<A NAME="tex2html2424"
37 37
   HREF="node141.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2430"
39
+<A NAME="tex2html2432"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2433"
43
+<B> Next:</B> <A NAME="tex2html2435"
44 44
   HREF="node143.html">mailman-clamav</A>
45
-<B> Up:</B> <A NAME="tex2html2429"
45
+<B> Up:</B> <A NAME="tex2html2431"
46 46
   HREF="node139.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2423"
47
+<B> Previous:</B> <A NAME="tex2html2425"
48 48
   HREF="node141.html">Local Area Security</A>
49
- &nbsp <B>  <A NAME="tex2html2431"
49
+ &nbsp <B>  <A NAME="tex2html2433"
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
-2005-06-23
70
+2005-07-25
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="tex2html2444"
30
+<A NAME="tex2html2446"
31 31
   HREF="node144.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2440"
33
+<A NAME="tex2html2442"
34 34
   HREF="node139.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2434"
36
+<A NAME="tex2html2436"
37 37
   HREF="node142.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2442"
39
+<A NAME="tex2html2444"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2445"
43
+<B> Next:</B> <A NAME="tex2html2447"
44 44
   HREF="node144.html">Moodle</A>
45
-<B> Up:</B> <A NAME="tex2html2441"
45
+<B> Up:</B> <A NAME="tex2html2443"
46 46
   HREF="node139.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2435"
47
+<B> Previous:</B> <A NAME="tex2html2437"
48 48
   HREF="node142.html">mailgraph</A>
49
- &nbsp <B>  <A NAME="tex2html2443"
49
+ &nbsp <B>  <A NAME="tex2html2445"
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
-2005-06-23
72
+2005-07-25
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="tex2html2456"
30
+<A NAME="tex2html2458"
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="tex2html2452"
33
+<A NAME="tex2html2454"
34 34
   HREF="node139.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2446"
36
+<A NAME="tex2html2448"
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="tex2html2454"
39
+<A NAME="tex2html2456"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2457"
43
+<B> Next:</B> <A NAME="tex2html2459"
44 44
   HREF="node145.html">nclamd</A>
45
-<B> Up:</B> <A NAME="tex2html2453"
45
+<B> Up:</B> <A NAME="tex2html2455"
46 46
   HREF="node139.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2447"
47
+<B> Previous:</B> <A NAME="tex2html2449"
48 48
   HREF="node143.html">mailman-clamav</A>
49
- &nbsp <B>  <A NAME="tex2html2455"
49
+ &nbsp <B>  <A NAME="tex2html2457"
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
-2005-06-23
70
+2005-07-25
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="tex2html2468"
30
+<A NAME="tex2html2470"
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="tex2html2464"
33
+<A NAME="tex2html2466"
34 34
   HREF="node139.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2458"
36
+<A NAME="tex2html2460"
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="tex2html2466"
39
+<A NAME="tex2html2468"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2469"
43
+<B> Next:</B> <A NAME="tex2html2471"
44 44
   HREF="node146.html">qmailmrtg7</A>
45
-<B> Up:</B> <A NAME="tex2html2465"
45
+<B> Up:</B> <A NAME="tex2html2467"
46 46
   HREF="node139.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2459"
47
+<B> Previous:</B> <A NAME="tex2html2461"
48 48
   HREF="node144.html">Moodle</A>
49
- &nbsp <B>  <A NAME="tex2html2467"
49
+ &nbsp <B>  <A NAME="tex2html2469"
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
-2005-06-23
70
+2005-07-25
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="tex2html2480"
30
+<A NAME="tex2html2482"
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="tex2html2476"
33
+<A NAME="tex2html2478"
34 34
   HREF="node139.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2470"
36
+<A NAME="tex2html2472"
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="tex2html2478"
39
+<A NAME="tex2html2480"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2481"
43
+<B> Next:</B> <A NAME="tex2html2483"
44 44
   HREF="node147.html">redWall Firewall</A>
45
-<B> Up:</B> <A NAME="tex2html2477"
45
+<B> Up:</B> <A NAME="tex2html2479"
46 46
   HREF="node139.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2471"
47
+<B> Previous:</B> <A NAME="tex2html2473"
48 48
   HREF="node145.html">nclamd</A>
49
- &nbsp <B>  <A NAME="tex2html2479"
49
+ &nbsp <B>  <A NAME="tex2html2481"
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
-2005-06-23
70
+2005-07-25
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="tex2html2492"
30
+<A NAME="tex2html2494"
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="tex2html2488"
33
+<A NAME="tex2html2490"
34 34
   HREF="node139.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2482"
36
+<A NAME="tex2html2484"
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="tex2html2490"
39
+<A NAME="tex2html2492"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2493"
43
+<B> Next:</B> <A NAME="tex2html2495"
44 44
   HREF="node148.html">Scan Log Analyzer</A>
45
-<B> Up:</B> <A NAME="tex2html2489"
45
+<B> Up:</B> <A NAME="tex2html2491"
46 46
   HREF="node139.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2483"
47
+<B> Previous:</B> <A NAME="tex2html2485"
48 48
   HREF="node146.html">qmailmrtg7</A>
49
- &nbsp <B>  <A NAME="tex2html2491"
49
+ &nbsp <B>  <A NAME="tex2html2493"
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
-2005-06-23
70
+2005-07-25
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="tex2html2504"
30
+<A NAME="tex2html2506"
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="tex2html2500"
33
+<A NAME="tex2html2502"
34 34
   HREF="node139.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2494"
36
+<A NAME="tex2html2496"
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="tex2html2502"
39
+<A NAME="tex2html2504"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2505"
43
+<B> Next:</B> <A NAME="tex2html2507"
44 44
   HREF="node149.html">snort-inline</A>
45
-<B> Up:</B> <A NAME="tex2html2501"
45
+<B> Up:</B> <A NAME="tex2html2503"
46 46
   HREF="node139.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2495"
47
+<B> Previous:</B> <A NAME="tex2html2497"
48 48
   HREF="node147.html">redWall Firewall</A>
49
- &nbsp <B>  <A NAME="tex2html2503"
49
+ &nbsp <B>  <A NAME="tex2html2505"
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
-2005-06-23
69
+2005-07-25
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="tex2html2516"
30
+<A NAME="tex2html2518"
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="tex2html2512"
33
+<A NAME="tex2html2514"
34 34
   HREF="node139.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2506"
36
+<A NAME="tex2html2508"
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="tex2html2514"
39
+<A NAME="tex2html2516"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2517"
43
+<B> Next:</B> <A NAME="tex2html2519"
44 44
   HREF="node150.html">Snort-ClamAV</A>
45
-<B> Up:</B> <A NAME="tex2html2513"
45
+<B> Up:</B> <A NAME="tex2html2515"
46 46
   HREF="node139.html">Miscellaneous + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html2507"
47
+<B> Previous:</B> <A NAME="tex2html2509"
48 48
   HREF="node148.html">Scan Log Analyzer</A>
49
- &nbsp <B>  <A NAME="tex2html2515"
49
+ &nbsp <B>  <A NAME="tex2html2517"
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
-2005-06-23
71
+2005-07-25
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="tex2html702"
29
+<A NAME="tex2html704"
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="tex2html698"
32
+<A NAME="tex2html700"
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="tex2html694"
35
+<A NAME="tex2html696"
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="tex2html700"
38
+<A NAME="tex2html702"
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="tex2html703"
42
+<B> Next:</B> <A NAME="tex2html705"
43 43
   HREF="node16.html">Configuration</A>
44
-<B> Up:</B> <A NAME="tex2html699"
44
+<B> Up:</B> <A NAME="tex2html701"
45 45
   HREF="node10.html">Installation</A>
46
-<B> Previous:</B> <A NAME="tex2html695"
46
+<B> Previous:</B> <A NAME="tex2html697"
47 47
   HREF="node14.html">Compilation of base package</A>
48
- &nbsp <B>  <A NAME="tex2html701"
48
+ &nbsp <B>  <A NAME="tex2html703"
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
-2005-06-23
67
+2005-07-25
68 68
 </ADDRESS>
69 69
 </BODY>
70 70
 </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="tex2html2526"
29
+<A NAME="tex2html2528"
30 30
   HREF="node151.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html2522"
32
+<A NAME="tex2html2524"
33 33
   HREF="node139.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html2518"
35
+<A NAME="tex2html2520"
36 36
   HREF="node149.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html2524"
38
+<A NAME="tex2html2526"
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="tex2html2527"
42
+<B> Next:</B> <A NAME="tex2html2529"
43 43
   HREF="node151.html">Credits</A>
44
-<B> Up:</B> <A NAME="tex2html2523"
44
+<B> Up:</B> <A NAME="tex2html2525"
45 45
   HREF="node139.html">Miscellaneous + ClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html2519"
46
+<B> Previous:</B> <A NAME="tex2html2521"
47 47
   HREF="node149.html">snort-inline</A>
48
- &nbsp <B>  <A NAME="tex2html2525"
48
+ &nbsp <B>  <A NAME="tex2html2527"
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
-2005-06-23
67
+2005-07-25
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="tex2html2538"
30
+<A NAME="tex2html2540"
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="tex2html2534"
33
+<A NAME="tex2html2536"
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="tex2html2528"
36
+<A NAME="tex2html2530"
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="tex2html2536"
39
+<A NAME="tex2html2538"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2539"
43
+<B> Next:</B> <A NAME="tex2html2541"
44 44
   HREF="node152.html">Database mirrors</A>
45
-<B> Up:</B> <A NAME="tex2html2535"
45
+<B> Up:</B> <A NAME="tex2html2537"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html2529"
47
+<B> Previous:</B> <A NAME="tex2html2531"
48 48
   HREF="node150.html">Snort-ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html2537"
49
+ &nbsp <B>  <A NAME="tex2html2539"
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="tex2html2540"
65
+<LI><A NAME="tex2html2542"
66 66
   HREF="node152.html">Database mirrors</A>
67
-<LI><A NAME="tex2html2541"
67
+<LI><A NAME="tex2html2543"
68 68
   HREF="node153.html">Contributors</A>
69
-<LI><A NAME="tex2html2542"
69
+<LI><A NAME="tex2html2544"
70 70
   HREF="node154.html">Donors</A>
71
-<LI><A NAME="tex2html2543"
71
+<LI><A NAME="tex2html2545"
72 72
   HREF="node155.html">Graphics</A>
73
-<LI><A NAME="tex2html2544"
73
+<LI><A NAME="tex2html2546"
74 74
   HREF="node156.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
-2005-06-23
80
+2005-07-25
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="tex2html2555"
30
+<A NAME="tex2html2557"
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="tex2html2551"
33
+<A NAME="tex2html2553"
34 34
   HREF="node151.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2545"
36
+<A NAME="tex2html2547"
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="tex2html2553"
39
+<A NAME="tex2html2555"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2556"
43
+<B> Next:</B> <A NAME="tex2html2558"
44 44
   HREF="node153.html">Contributors</A>
45
-<B> Up:</B> <A NAME="tex2html2552"
45
+<B> Up:</B> <A NAME="tex2html2554"
46 46
   HREF="node151.html">Credits</A>
47
-<B> Previous:</B> <A NAME="tex2html2546"
47
+<B> Previous:</B> <A NAME="tex2html2548"
48 48
   HREF="node151.html">Credits</A>
49
- &nbsp <B>  <A NAME="tex2html2554"
49
+ &nbsp <B>  <A NAME="tex2html2556"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -395,13 +395,13 @@ Database mirrors
395 395
   HREF="clamav.unet.brandeis.edu">clamav.unet.brandeis.edu</A></TT> </FONT></TD>
396 396
 <TD ALIGN="CENTER"><FONT SIZE="-1"> 129.64.99.170 </FONT></TD>
397 397
 <TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
398
-<TD ALIGN="CENTER"><FONT SIZE="-1"> Rich Graves</FONT></TD>
398
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Elliot Kendall</FONT></TD>
399 399
 </TR>
400 400
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
401 401
 				       </FONT></TD>
402 402
 <TD ALIGN="CENTER"><FONT SIZE="-1">	       </FONT></TD>
403 403
 <TD ALIGN="CENTER"><FONT SIZE="-1">     </FONT></TD>
404
-<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;rcgraves*brandeis.edu&gt;</FONT></TD>
404
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;ekendall*brandeis.edu&gt;</FONT></TD>
405 405
 </TR>
406 406
 <TR><TD ALIGN="CENTER"><FONT SIZE="-1"><TT><A NAME="tex2html173"
407 407
   HREF="clamav.im1.net">clamav.im1.net</A></TT> </FONT></TD>
... ...
@@ -1370,6 +1370,19 @@ Database mirrors
1370 1370
 <TD ALIGN="CENTER"><FONT SIZE="-1">	 </FONT></TD>
1371 1371
 <TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;tim*westlinks.com&gt;</FONT></TD>
1372 1372
 </TR>
1373
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1">  
1374
+	<TT><A NAME="tex2html248"
1375
+  HREF="clamav.liquidweb.com">clamav.liquidweb.com</A></TT> </FONT></TD>
1376
+<TD ALIGN="CENTER"><FONT SIZE="-1"> 209.59.139.38 </FONT></TD>
1377
+<TD ALIGN="CENTER"><FONT SIZE="-1"> USA </FONT></TD>
1378
+<TD ALIGN="CENTER"><FONT SIZE="-1"> Steven Collins</FONT></TD>
1379
+</TR>
1380
+<TR><TD ALIGN="CENTER"><FONT SIZE="-1"> 
1381
+				   </FONT></TD>
1382
+<TD ALIGN="CENTER"><FONT SIZE="-1">		   </FONT></TD>
1383
+<TD ALIGN="CENTER"><FONT SIZE="-1">	 </FONT></TD>
1384
+<TD ALIGN="CENTER"><FONT SIZE="-1"> &lt;scollins*liquidweb.com&gt;</FONT></TD>
1385
+</TR>
1373 1386
 </TABLE>
1374 1387
     
1375 1388
 </DIV>
... ...
@@ -1377,31 +1390,31 @@ Database mirrors
1377 1377
 <P>
1378 1378
 <HR>
1379 1379
 <!--Navigation Panel-->
1380
-<A NAME="tex2html2555"
1380
+<A NAME="tex2html2557"
1381 1381
   HREF="node153.html">
1382 1382
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
1383
-<A NAME="tex2html2551"
1383
+<A NAME="tex2html2553"
1384 1384
   HREF="node151.html">
1385 1385
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
1386
-<A NAME="tex2html2545"
1386
+<A NAME="tex2html2547"
1387 1387
   HREF="node151.html">
1388 1388
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
1389
-<A NAME="tex2html2553"
1389
+<A NAME="tex2html2555"
1390 1390
   HREF="node1.html">
1391 1391
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
1392 1392
 <BR>
1393
-<B> Next:</B> <A NAME="tex2html2556"
1393
+<B> Next:</B> <A NAME="tex2html2558"
1394 1394
   HREF="node153.html">Contributors</A>
1395
-<B> Up:</B> <A NAME="tex2html2552"
1395
+<B> Up:</B> <A NAME="tex2html2554"
1396 1396
   HREF="node151.html">Credits</A>
1397
-<B> Previous:</B> <A NAME="tex2html2546"
1397
+<B> Previous:</B> <A NAME="tex2html2548"
1398 1398
   HREF="node151.html">Credits</A>
1399
- &nbsp <B>  <A NAME="tex2html2554"
1399
+ &nbsp <B>  <A NAME="tex2html2556"
1400 1400
   HREF="node1.html">Contents</A></B> 
1401 1401
 <!--End of Navigation Panel-->
1402 1402
 <ADDRESS>
1403 1403
 Tomasz Kojm
1404
-2005-06-23
1404
+2005-07-25
1405 1405
 </ADDRESS>
1406 1406
 </BODY>
1407 1407
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2567"
30
+<A NAME="tex2html2569"
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="tex2html2563"
33
+<A NAME="tex2html2565"
34 34
   HREF="node151.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2557"
36
+<A NAME="tex2html2559"
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="tex2html2565"
39
+<A NAME="tex2html2567"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2568"
43
+<B> Next:</B> <A NAME="tex2html2570"
44 44
   HREF="node154.html">Donors</A>
45
-<B> Up:</B> <A NAME="tex2html2564"
45
+<B> Up:</B> <A NAME="tex2html2566"
46 46
   HREF="node151.html">Credits</A>
47
-<B> Previous:</B> <A NAME="tex2html2558"
47
+<B> Previous:</B> <A NAME="tex2html2560"
48 48
   HREF="node152.html">Database mirrors</A>
49
- &nbsp <B>  <A NAME="tex2html2566"
49
+ &nbsp <B>  <A NAME="tex2html2568"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -317,7 +317,7 @@ Contributors</A>
317 317
 </LI>
318 318
 <LI>Alexander Marx &lt;mad-ml*madness.at&gt;
319 319
 </LI>
320
-<LI>Andreas Marx (<TT><A NAME="tex2html248"
320
+<LI>Andreas Marx (<TT><A NAME="tex2html249"
321 321
   HREF="http://www.av-test.org/">http://www.av-test.org/</A></TT>)
322 322
 </LI>
323 323
 <LI>Chris Masters &lt;cmasters*insl.co.uk&gt;
... ...
@@ -366,7 +366,7 @@ Contributors</A>
366 366
 </LI>
367 367
 <LI>Simon Munton &lt;simon*munton.demon.co.uk&gt;
368 368
 </LI>
369
-<LI>Farit Nabiullin <TT><A NAME="tex2html249"
369
+<LI>Farit Nabiullin <TT><A NAME="tex2html250"
370 370
   HREF="http://program.farit.ru/">http://program.farit.ru/</A></TT>
371 371
 </LI>
372 372
 <LI>Nemosoft Unv. &lt;nemosoft*smcc.demon.nl&gt;
... ...
@@ -391,7 +391,7 @@ Contributors</A>
391 391
 </LI>
392 392
 <LI>Martijn van Oosterhout &lt;kleptog*svana.org&gt;
393 393
 </LI>
394
-<LI>OpenAntiVirus Team (<TT><A NAME="tex2html250"
394
+<LI>OpenAntiVirus Team (<TT><A NAME="tex2html251"
395 395
   HREF="http://www.OpenAntiVirus.org/">http://www.OpenAntiVirus.org/</A></TT>)
396 396
 </LI>
397 397
 <LI>Tomasz Papszun &lt;tomek*lodz.tpsa.pl&gt;
... ...
@@ -545,31 +545,31 @@ Contributors</A>
545 545
 <P>
546 546
 <HR>
547 547
 <!--Navigation Panel-->
548
-<A NAME="tex2html2567"
548
+<A NAME="tex2html2569"
549 549
   HREF="node154.html">
550 550
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
551
-<A NAME="tex2html2563"
551
+<A NAME="tex2html2565"
552 552
   HREF="node151.html">
553 553
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
554
-<A NAME="tex2html2557"
554
+<A NAME="tex2html2559"
555 555
   HREF="node152.html">
556 556
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
557
-<A NAME="tex2html2565"
557
+<A NAME="tex2html2567"
558 558
   HREF="node1.html">
559 559
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
560 560
 <BR>
561
-<B> Next:</B> <A NAME="tex2html2568"
561
+<B> Next:</B> <A NAME="tex2html2570"
562 562
   HREF="node154.html">Donors</A>
563
-<B> Up:</B> <A NAME="tex2html2564"
563
+<B> Up:</B> <A NAME="tex2html2566"
564 564
   HREF="node151.html">Credits</A>
565
-<B> Previous:</B> <A NAME="tex2html2558"
565
+<B> Previous:</B> <A NAME="tex2html2560"
566 566
   HREF="node152.html">Database mirrors</A>
567
- &nbsp <B>  <A NAME="tex2html2566"
567
+ &nbsp <B>  <A NAME="tex2html2568"
568 568
   HREF="node1.html">Contents</A></B> 
569 569
 <!--End of Navigation Panel-->
570 570
 <ADDRESS>
571 571
 Tomasz Kojm
572
-2005-06-23
572
+2005-07-25
573 573
 </ADDRESS>
574 574
 </BODY>
575 575
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2579"
30
+<A NAME="tex2html2581"
31 31
   HREF="node155.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html2575"
33
+<A NAME="tex2html2577"
34 34
   HREF="node151.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2569"
36
+<A NAME="tex2html2571"
37 37
   HREF="node153.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html2577"
39
+<A NAME="tex2html2579"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2580"
43
+<B> Next:</B> <A NAME="tex2html2582"
44 44
   HREF="node155.html">Graphics</A>
45
-<B> Up:</B> <A NAME="tex2html2576"
45
+<B> Up:</B> <A NAME="tex2html2578"
46 46
   HREF="node151.html">Credits</A>
47
-<B> Previous:</B> <A NAME="tex2html2570"
47
+<B> Previous:</B> <A NAME="tex2html2572"
48 48
   HREF="node153.html">Contributors</A>
49
- &nbsp <B>  <A NAME="tex2html2578"
49
+ &nbsp <B>  <A NAME="tex2html2580"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -58,24 +58,24 @@ Donors</A>
58 58
     We've received financial support from: (in alphabetical order)
59 59
     
60 60
 <UL>
61
-<LI>ActiveIntra.net Inc. (<TT><A NAME="tex2html251"
61
+<LI>ActiveIntra.net Inc. (<TT><A NAME="tex2html252"
62 62
   HREF="http://www.activeintra.net/">http://www.activeintra.net/</A></TT>)
63 63
 </LI>
64
-<LI>Advance Healthcare Group (<TT><A NAME="tex2html252"
64
+<LI>Advance Healthcare Group (<TT><A NAME="tex2html253"
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="tex2html253"
67
+<LI>American Computer &amp; Electronic Services Corp. (<TT><A NAME="tex2html254"
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="tex2html254"
72
+<LI>Atlas College (<TT><A NAME="tex2html255"
73 73
   HREF="http://www.atlascollege.nl/">http://www.atlascollege.nl/</A></TT>)
74 74
 </LI>
75
-<LI>AWD Online (<TT><A NAME="tex2html255"
75
+<LI>AWD Online (<TT><A NAME="tex2html256"
76 76
   HREF="http://www.awdonline.com/">http://www.awdonline.com/</A></TT>)
77 77
 </LI>
78
-<LI>Bear and Bear Consulting, Inc. (<TT><A NAME="tex2html256"
78
+<LI>Bear and Bear Consulting, Inc. (<TT><A NAME="tex2html257"
79 79
   HREF="http://www.bear-consulting.com/">http://www.bear-consulting.com/</A></TT>)
80 80
 </LI>
81 81
 <LI>Aaron Begley
... ...
@@ -84,32 +84,35 @@ Donors</A>
84 84
 </LI>
85 85
 <LI>Norman E. Brake, Jr.
86 86
 </LI>
87
-<LI>Canadian Web Hosting (<TT><A NAME="tex2html257"
87
+<LI>Canadian Web Hosting (<TT><A NAME="tex2html258"
88 88
   HREF="http://www.canadianwebhosting.com/">http://www.canadianwebhosting.com/</A></TT>)
89 89
 </LI>
90
-<LI>cedarcreeksoftware.com (<TT><A NAME="tex2html258"
90
+<LI>cedarcreeksoftware.com (<TT><A NAME="tex2html259"
91 91
   HREF="http://www.cedarcreeksoftware.com/">http://www.cedarcreeksoftware.com/</A></TT>)
92 92
 </LI>
93 93
 <LI>Thanos Chatziathanassiou
94 94
 </LI>
95 95
 <LI>Cheahch from Singapore
96 96
 </LI>
97
-<LI>Conexim Australia - business web hosting (<TT><A NAME="tex2html259"
97
+<LI>Conexim Australia - business web hosting (<TT><A NAME="tex2html260"
98 98
   HREF="http://www.conexim.com.au">http://www.conexim.com.au</A></TT>)
99 99
 </LI>
100 100
 <LI>Joe Cooper
101 101
 </LI>
102
+<LI>CustomLogic LLC (<TT><A NAME="tex2html261"
103
+  HREF="http://www.customlogic.com/">http://www.customlogic.com/</A></TT>)
104
+</LI>
102 105
 <LI>Ron DeFulio
103 106
 </LI>
104
-<LI>Steve Donegan (<TT><A NAME="tex2html260"
107
+<LI>Steve Donegan (<TT><A NAME="tex2html262"
105 108
   HREF="http://www.donegan.org/">http://www.donegan.org/</A></TT>)
106 109
 </LI>
107
-<LI>Dynamic Network Services, Inc (<TT><A NAME="tex2html261"
110
+<LI>Dynamic Network Services, Inc (<TT><A NAME="tex2html263"
108 111
   HREF="http://www.dyndns.org/">http://www.dyndns.org/</A></TT>)
109 112
 </LI>
110 113
 <LI>EAS Enterprises LLC
111 114
 </LI>
112
-<LI>Electric Embers (<TT><A NAME="tex2html262"
115
+<LI>Electric Embers (<TT><A NAME="tex2html264"
113 116
   HREF="http://electricembers.net">http://electricembers.net</A></TT>)
114 117
 </LI>
115 118
 <LI>John T. Ellis
... ...
@@ -118,25 +121,25 @@ Donors</A>
118 118
 </LI>
119 119
 <LI>Bernhard Erdmann
120 120
 </LI>
121
-<LI>David Eriksson (<TT><A NAME="tex2html263"
121
+<LI>David Eriksson (<TT><A NAME="tex2html265"
122 122
   HREF="http://www.2good.nu/">http://www.2good.nu/</A></TT>)
123 123
 </LI>
124 124
 <LI>Philip Ershler
125 125
 </LI>
126
-<LI>Explido Software USA Inc. (<TT><A NAME="tex2html264"
126
+<LI>Explido Software USA Inc. (<TT><A NAME="tex2html266"
127 127
   HREF="http://www.explido.us/">http://www.explido.us/</A></TT>)
128 128
 </LI>
129 129
 <LI>David Farrick
130 130
 </LI>
131 131
 <LI>Jim Feldman
132 132
 </LI>
133
-<LI>Petr Ferschmann (<TT><A NAME="tex2html265"
133
+<LI>Petr Ferschmann (<TT><A NAME="tex2html267"
134 134
   HREF="http://petr.ferschmann.cz/">http://petr.ferschmann.cz/</A></TT>)
135 135
 </LI>
136
-<LI>Andries Filmer (<TT><A NAME="tex2html266"
136
+<LI>Andries Filmer (<TT><A NAME="tex2html268"
137 137
   HREF="http://www.netexpo.nl/">http://www.netexpo.nl/</A></TT>)
138 138
 </LI>
139
-<LI>The Free Shopping Cart people (<TT><A NAME="tex2html267"
139
+<LI>The Free Shopping Cart people (<TT><A NAME="tex2html269"
140 140
   HREF="http://www.precisionweb.net/">http://www.precisionweb.net/</A></TT>)
141 141
 </LI>
142 142
 <LI>Paul Freeman
... ...
@@ -145,46 +148,46 @@ Donors</A>
145 145
 </LI>
146 146
 <LI>Paolo Galeazzi
147 147
 </LI>
148
-<LI>GANDI (<TT><A NAME="tex2html268"
148
+<LI>GANDI (<TT><A NAME="tex2html270"
149 149
   HREF="http://www.gandi.net/">http://www.gandi.net/</A></TT>)
150 150
 </LI>
151
-<LI>Jeremy Garcia (<TT><A NAME="tex2html269"
151
+<LI>Jeremy Garcia (<TT><A NAME="tex2html271"
152 152
   HREF="http://www.linuxquestions.org/">http://www.linuxquestions.org/</A></TT>)
153 153
 </LI>
154
-<LI>GBC Internet Service Center GmbH (<TT><A NAME="tex2html270"
154
+<LI>GBC Internet Service Center GmbH (<TT><A NAME="tex2html272"
155 155
   HREF="http://www.gbc.net/">http://www.gbc.net/</A></TT>)
156 156
 </LI>
157
-<LI>GCS Tech (<TT><A NAME="tex2html271"
157
+<LI>GCS Tech (<TT><A NAME="tex2html273"
158 158
   HREF="http://www.gcstech.net/">http://www.gcstech.net/</A></TT>)
159 159
 </LI>
160
-<LI>GHRS (<TT><A NAME="tex2html272"
160
+<LI>GHRS (<TT><A NAME="tex2html274"
161 161
   HREF="http://www.ghrshotels.com/">http://www.ghrshotels.com/</A></TT>)
162 162
 </LI>
163 163
 <LI>Todd Goodman
164 164
 </LI>
165
-<LI>Bill Gradwohl (<TT><A NAME="tex2html273"
165
+<LI>Bill Gradwohl (<TT><A NAME="tex2html275"
166 166
   HREF="http://www.ycc.com/">http://www.ycc.com/</A></TT>)
167 167
 </LI>
168 168
 <LI>Grain-of-Salt Consulting
169 169
 </LI>
170 170
 <LI>Terje Gravvold
171 171
 </LI>
172
-<LI>Hart Computer (<TT><A NAME="tex2html274"
172
+<LI>Hart Computer (<TT><A NAME="tex2html276"
173 173
   HREF="http://www.hart.co.jp/">http://www.hart.co.jp/</A></TT>)
174 174
 </LI>
175
-<LI>Hosting Metro LLC (<TT><A NAME="tex2html275"
175
+<LI>Hosting Metro LLC (<TT><A NAME="tex2html277"
176 176
   HREF="http://www.hostingmetro.com/">http://www.hostingmetro.com/</A></TT>)
177 177
 </LI>
178
-<LI>IDEAL Software GmbH (<TT><A NAME="tex2html276"
178
+<LI>IDEAL Software GmbH (<TT><A NAME="tex2html278"
179 179
   HREF="http://www.IdealSoftware.com/">http://www.IdealSoftware.com/</A></TT>)
180 180
 </LI>
181
-<LI>Industry Standard Computers (<TT><A NAME="tex2html277"
181
+<LI>Industry Standard Computers (<TT><A NAME="tex2html279"
182 182
   HREF="http://www.ISCnetwork.com/">http://www.ISCnetwork.com/</A></TT>)
183 183
 </LI>
184
-<LI>Invisik Corporation (<TT><A NAME="tex2html278"
184
+<LI>Invisik Corporation (<TT><A NAME="tex2html280"
185 185
   HREF="http://www.invisik.com/">http://www.invisik.com/</A></TT>)
186 186
 </LI>
187
-<LI>itXcel Internet - Domain Registration (<TT><A NAME="tex2html279"
187
+<LI>itXcel Internet - Domain Registration (<TT><A NAME="tex2html281"
188 188
   HREF="http://www.itxcel.com">http://www.itxcel.com</A></TT>)
189 189
 </LI>
190 190
 <LI>Craig Jackson
... ...
@@ -193,28 +196,28 @@ Donors</A>
193 193
 </LI>
194 194
 <LI>Jason Judge
195 195
 </LI>
196
-<LI>Keith (<TT><A NAME="tex2html280"
196
+<LI>Keith (<TT><A NAME="tex2html282"
197 197
   HREF="http://www.textpad.com/">http://www.textpad.com/</A></TT>)
198 198
 </LI>
199 199
 <LI>Brad Koehn
200 200
 </LI>
201
-<LI>Logic Partners Inc. (<TT><A NAME="tex2html281"
201
+<LI>Logic Partners Inc. (<TT><A NAME="tex2html283"
202 202
   HREF="http://www.logicpartners.com/">http://www.logicpartners.com/</A></TT>)
203 203
 </LI>
204
-<LI>Mark Lotspaih (<TT><A NAME="tex2html282"
204
+<LI>Mark Lotspaih (<TT><A NAME="tex2html284"
205 205
   HREF="http://www.lotcom.org/">http://www.lotcom.org/</A></TT>)
206 206
 </LI>
207
-<LI>Michel Machado (<TT><A NAME="tex2html283"
207
+<LI>Michel Machado (<TT><A NAME="tex2html285"
208 208
   HREF="http://oss.digirati.com.br/">http://oss.digirati.com.br/</A></TT>)
209 209
 </LI>
210 210
 <LI>Olivier Marechal
211 211
 </LI>
212
-<LI>Micro Logic Systems (<TT><A NAME="tex2html284"
212
+<LI>Micro Logic Systems (<TT><A NAME="tex2html286"
213 213
   HREF="http://www.mls.nc/">http://www.mls.nc/</A></TT>)
214 214
 </LI>
215 215
 <LI>Midcoast Internet Solutions
216 216
 </LI>
217
-<LI>Mimecast (<TT><A NAME="tex2html285"
217
+<LI>Mimecast (<TT><A NAME="tex2html287"
218 218
   HREF="http://www.mimecast.com/">http://www.mimecast.com/</A></TT>)
219 219
 </LI>
220 220
 <LI>Kazuhiro Miyaji
... ...
@@ -225,16 +228,18 @@ Donors</A>
225 225
 </LI>
226 226
 <LI>Tomas Morkus
227 227
 </LI>
228
-<LI>Michael Nolan (<TT><A NAME="tex2html286"
228
+<LI>Michael Nolan (<TT><A NAME="tex2html288"
229 229
   HREF="http://www.michaelnolan.co.uk/">http://www.michaelnolan.co.uk/</A></TT>)
230 230
 </LI>
231
-<LI>Oneworkspace.com (<TT><A NAME="tex2html287"
231
+<LI>Jorgen Norgaard
232
+</LI>
233
+<LI>Oneworkspace.com (<TT><A NAME="tex2html289"
232 234
   HREF="http://www.oneworkspace.com/">http://www.oneworkspace.com/</A></TT>)
233 235
 </LI>
234
-<LI>Origin Solutions (<TT><A NAME="tex2html288"
236
+<LI>Origin Solutions (<TT><A NAME="tex2html290"
235 237
   HREF="http://www.originsolutions.com.au/">http://www.originsolutions.com.au/</A></TT>)
236 238
 </LI>
237
-<LI>outermedia GmbH (<TT><A NAME="tex2html289"
239
+<LI>outermedia GmbH (<TT><A NAME="tex2html291"
238 240
   HREF="http://www.outermedia.de/">http://www.outermedia.de/</A></TT>)
239 241
 </LI>
240 242
 <LI>Alexander Panzhin
... ...
@@ -245,52 +250,52 @@ Donors</A>
245 245
 </LI>
246 246
 <LI>Paul Rantin
247 247
 </LI>
248
-<LI>Thomas J. Raef (<TT><A NAME="tex2html290"
248
+<LI>Thomas J. Raef (<TT><A NAME="tex2html292"
249 249
   HREF="http://www.ebasedsecurity.com">http://www.ebasedsecurity.com</A></TT>)
250 250
 </LI>
251
-<LI>Luke Reeves (<TT><A NAME="tex2html291"
251
+<LI>Luke Reeves (<TT><A NAME="tex2html293"
252 252
   HREF="http://www.neuro-tech.net/">http://www.neuro-tech.net/</A></TT>)
253 253
 </LI>
254
-<LI>RHX (<TT><A NAME="tex2html292"
254
+<LI>RHX (<TT><A NAME="tex2html294"
255 255
   HREF="http://www.rhx.it/">http://www.rhx.it/</A></TT>)
256 256
 </LI>
257 257
 <LI>Stefano Rizzetto
258 258
 </LI>
259
-<LI>Roaring Penguin Software Inc. (<TT><A NAME="tex2html293"
259
+<LI>Roaring Penguin Software Inc. (<TT><A NAME="tex2html295"
260 260
   HREF="http://www.roaringpenguin.com/">http://www.roaringpenguin.com/</A></TT>)
261 261
 </LI>
262 262
 <LI>Luke Rosenthal
263 263
 </LI>
264
-<LI>School of Engineering, University of Pennsylvania (<TT><A NAME="tex2html294"
264
+<LI>School of Engineering, University of Pennsylvania (<TT><A NAME="tex2html296"
265 265
   HREF="http://www.seas.upenn.edu/">http://www.seas.upenn.edu/</A></TT>)
266 266
 </LI>
267 267
 <LI>Tim Scoff
268 268
 </LI>
269
-<LI>Seattle Server (<TT><A NAME="tex2html295"
269
+<LI>Seattle Server (<TT><A NAME="tex2html297"
270 270
   HREF="http://www.seattleserver.com/">http://www.seattleserver.com/</A></TT>)
271 271
 </LI>
272
-<LI>Software Workshop Inc (<TT><A NAME="tex2html296"
272
+<LI>Software Workshop Inc (<TT><A NAME="tex2html298"
273 273
   HREF="http://www.softwareworkshop.com/">http://www.softwareworkshop.com/</A></TT>)
274 274
 </LI>
275
-<LI>Solutions In A Box (<TT><A NAME="tex2html297"
275
+<LI>Solutions In A Box (<TT><A NAME="tex2html299"
276 276
   HREF="http://www.siab.com.au/">http://www.siab.com.au/</A></TT>)
277 277
 </LI>
278 278
 <LI>Stephane Rault
279 279
 </LI>
280
-<LI>Fernando Augusto Medeiros Silva (<TT><A NAME="tex2html298"
280
+<LI>Fernando Augusto Medeiros Silva (<TT><A NAME="tex2html300"
281 281
   HREF="http://www.linuxplace.com.br/">http://www.linuxplace.com.br/</A></TT>)
282 282
 </LI>
283
-<LI>StarBand (<TT><A NAME="tex2html299"
283
+<LI>StarBand (<TT><A NAME="tex2html301"
284 284
   HREF="http://www.starband.com/">http://www.starband.com/</A></TT>)
285 285
 </LI>
286 286
 <LI>Stroke of Color, Inc.
287 287
 </LI>
288
-<LI>Synchro Sistemas de Informacao (<TT><A NAME="tex2html300"
288
+<LI>Synchro Sistemas de Informacao (<TT><A NAME="tex2html302"
289 289
   HREF="http://synchro.com.br/">http://synchro.com.br/</A></TT>)
290 290
 </LI>
291 291
 <LI>Sahil Tandon
292 292
 </LI>
293
-<LI>The Spamex Disposable Email Address Service (<TT><A NAME="tex2html301"
293
+<LI>The Spamex Disposable Email Address Service (<TT><A NAME="tex2html303"
294 294
   HREF="http://www.spamex.com">http://www.spamex.com</A></TT>)
295 295
 </LI>
296 296
 <LI>Brad Tarver
... ...
@@ -299,26 +304,26 @@ Donors</A>
299 299
 </LI>
300 300
 <LI>William Tisdale
301 301
 </LI>
302
-<LI>Up Time Technology (<TT><A NAME="tex2html302"
302
+<LI>Up Time Technology (<TT><A NAME="tex2html304"
303 303
   HREF="http://www.uptimetech.com/">http://www.uptimetech.com/</A></TT>)
304 304
 </LI>
305 305
 <LI>Ulfi
306 306
 </LI>
307
-<LI>Jeremy Vanderburg (<TT><A NAME="tex2html303"
307
+<LI>Jeremy Vanderburg (<TT><A NAME="tex2html305"
308 308
   HREF="http://www.jeremytech.com/">http://www.jeremytech.com/</A></TT>)
309 309
 </LI>
310
-<LI>Web.arbyte - Online-Marketing (<TT><A NAME="tex2html304"
310
+<LI>Web.arbyte - Online-Marketing (<TT><A NAME="tex2html306"
311 311
   HREF="http://www.webarbyte.de/">http://www.webarbyte.de/</A></TT>)
312 312
 </LI>
313
-<LI>Webzone Srl (<TT><A NAME="tex2html305"
313
+<LI>Webzone Srl (<TT><A NAME="tex2html307"
314 314
   HREF="http://www.webzone.it/">http://www.webzone.it/</A></TT>)
315 315
 </LI>
316
-<LI>Markus Welsch (<TT><A NAME="tex2html306"
316
+<LI>Markus Welsch (<TT><A NAME="tex2html308"
317 317
   HREF="http://www.linux-corner.net/">http://www.linux-corner.net/</A></TT>)
318 318
 </LI>
319 319
 <LI>Nicklaus Wicker
320 320
 </LI>
321
-<LI>David Williams (<TT><A NAME="tex2html307"
321
+<LI>David Williams (<TT><A NAME="tex2html309"
322 322
   HREF="http://kayakero.net/">http://kayakero.net/</A></TT>)
323 323
 </LI>
324 324
 <LI>Glenn R Williams
... ...
@@ -329,31 +334,31 @@ Donors</A>
329 329
 <P>
330 330
 <HR>
331 331
 <!--Navigation Panel-->
332
-<A NAME="tex2html2579"
332
+<A NAME="tex2html2581"
333 333
   HREF="node155.html">
334 334
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
335
-<A NAME="tex2html2575"
335
+<A NAME="tex2html2577"
336 336
   HREF="node151.html">
337 337
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
338
-<A NAME="tex2html2569"
338
+<A NAME="tex2html2571"
339 339
   HREF="node153.html">
340 340
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
341
-<A NAME="tex2html2577"
341
+<A NAME="tex2html2579"
342 342
   HREF="node1.html">
343 343
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
344 344
 <BR>
345
-<B> Next:</B> <A NAME="tex2html2580"
345
+<B> Next:</B> <A NAME="tex2html2582"
346 346
   HREF="node155.html">Graphics</A>
347
-<B> Up:</B> <A NAME="tex2html2576"
347
+<B> Up:</B> <A NAME="tex2html2578"
348 348
   HREF="node151.html">Credits</A>
349
-<B> Previous:</B> <A NAME="tex2html2570"
349
+<B> Previous:</B> <A NAME="tex2html2572"
350 350
   HREF="node153.html">Contributors</A>
351
- &nbsp <B>  <A NAME="tex2html2578"
351
+ &nbsp <B>  <A NAME="tex2html2580"
352 352
   HREF="node1.html">Contents</A></B> 
353 353
 <!--End of Navigation Panel-->
354 354
 <ADDRESS>
355 355
 Tomasz Kojm
356
-2005-06-23
356
+2005-07-25
357 357
 </ADDRESS>
358 358
 </BODY>
359 359
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html2591"
30
+<A NAME="tex2html2593"
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="tex2html2587"
33
+<A NAME="tex2html2589"
34 34
   HREF="node151.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html2581"
36
+<A NAME="tex2html2583"
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="tex2html2589"
39
+<A NAME="tex2html2591"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2592"
43
+<B> Next:</B> <A NAME="tex2html2594"
44 44
   HREF="node156.html">OpenAntiVirus</A>
45
-<B> Up:</B> <A NAME="tex2html2588"
45
+<B> Up:</B> <A NAME="tex2html2590"
46 46
   HREF="node151.html">Credits</A>
47
-<B> Previous:</B> <A NAME="tex2html2582"
47
+<B> Previous:</B> <A NAME="tex2html2584"
48 48
   HREF="node154.html">Donors</A>
49
- &nbsp <B>  <A NAME="tex2html2590"
49
+ &nbsp <B>  <A NAME="tex2html2592"
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="tex2html308"
59
+    graphics are Mia Kalenius and Sergei Pronin &lt;sp*finndesign.fi&gt;    from Finndesign <TT><A NAME="tex2html310"
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
-2005-06-23
65
+2005-07-25
66 66
 </ADDRESS>
67 67
 </BODY>
68 68
 </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="tex2html2601"
29
+<A NAME="tex2html2603"
30 30
   HREF="node157.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html2597"
32
+<A NAME="tex2html2599"
33 33
   HREF="node151.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html2593"
35
+<A NAME="tex2html2595"
36 36
   HREF="node155.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html2599"
38
+<A NAME="tex2html2601"
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="tex2html2602"
42
+<B> Next:</B> <A NAME="tex2html2604"
43 43
   HREF="node157.html">Authors</A>
44
-<B> Up:</B> <A NAME="tex2html2598"
44
+<B> Up:</B> <A NAME="tex2html2600"
45 45
   HREF="node151.html">Credits</A>
46
-<B> Previous:</B> <A NAME="tex2html2594"
46
+<B> Previous:</B> <A NAME="tex2html2596"
47 47
   HREF="node155.html">Graphics</A>
48
- &nbsp <B>  <A NAME="tex2html2600"
48
+ &nbsp <B>  <A NAME="tex2html2602"
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="tex2html309"
58
+<BR>    <TT><A NAME="tex2html311"
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
-2005-06-23
64
+2005-07-25
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="tex2html2613"
30
+<A NAME="tex2html2615"
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="tex2html2609"
33
+<A NAME="tex2html2611"
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="tex2html2603"
36
+<A NAME="tex2html2605"
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="tex2html2611"
39
+<A NAME="tex2html2613"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html2614"
43
+<B> Next:</B> <A NAME="tex2html2616"
44 44
   HREF="node158.html">About this document ...</A>
45
-<B> Up:</B> <A NAME="tex2html2610"
45
+<B> Up:</B> <A NAME="tex2html2612"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html2604"
47
+<B> Previous:</B> <A NAME="tex2html2606"
48 48
   HREF="node156.html">OpenAntiVirus</A>
49
- &nbsp <B>  <A NAME="tex2html2612"
49
+ &nbsp <B>  <A NAME="tex2html2614"
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
-2005-06-23
161
+2005-07-25
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="tex2html2619"
29
+<A NAME="tex2html2621"
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="tex2html2615"
32
+<A NAME="tex2html2617"
33 33
   HREF="node157.html">
34 34
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
35
-<A NAME="tex2html2621"
35
+<A NAME="tex2html2623"
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="tex2html2620"
39
+<B> Up:</B> <A NAME="tex2html2622"
40 40
   HREF="clamdoc.html">clamdoc</A>
41
-<B> Previous:</B> <A NAME="tex2html2616"
41
+<B> Previous:</B> <A NAME="tex2html2618"
42 42
   HREF="node157.html">Authors</A>
43
- &nbsp <B>  <A NAME="tex2html2622"
43
+ &nbsp <B>  <A NAME="tex2html2624"
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 2005-06-23
67
+The translation was initiated by Tomasz Kojm on 2005-07-25
68 68
 <BR><HR>
69 69
 <ADDRESS>
70 70
 Tomasz Kojm
71
-2005-06-23
71
+2005-07-25
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="tex2html714"
30
+<A NAME="tex2html716"
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="tex2html710"
33
+<A NAME="tex2html712"
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="tex2html704"
36
+<A NAME="tex2html706"
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="tex2html712"
39
+<A NAME="tex2html714"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html715"
43
+<B> Next:</B> <A NAME="tex2html717"
44 44
   HREF="node17.html">clamd</A>
45
-<B> Up:</B> <A NAME="tex2html711"
45
+<B> Up:</B> <A NAME="tex2html713"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html705"
47
+<B> Previous:</B> <A NAME="tex2html707"
48 48
   HREF="node15.html">Compilation with clamav-milter enabled</A>
49
- &nbsp <B>  <A NAME="tex2html713"
49
+ &nbsp <B>  <A NAME="tex2html715"
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="tex2html716"
65
+<LI><A NAME="tex2html718"
66 66
   HREF="node17.html">clamd</A>
67 67
 <UL>
68
-<LI><A NAME="tex2html717"
68
+<LI><A NAME="tex2html719"
69 69
   HREF="node18.html">On-access scanning</A>
70 70
 </UL>
71
-<LI><A NAME="tex2html718"
71
+<LI><A NAME="tex2html720"
72 72
   HREF="node19.html">clamav-milter</A>
73
-<LI><A NAME="tex2html719"
73
+<LI><A NAME="tex2html721"
74 74
   HREF="node20.html">Testing</A>
75
-<LI><A NAME="tex2html720"
75
+<LI><A NAME="tex2html722"
76 76
   HREF="node21.html">Setting up auto-updating</A>
77
-<LI><A NAME="tex2html721"
77
+<LI><A NAME="tex2html723"
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
-2005-06-23
84
+2005-07-25
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="tex2html732"
30
+<A NAME="tex2html734"
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="tex2html728"
33
+<A NAME="tex2html730"
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="tex2html722"
36
+<A NAME="tex2html724"
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="tex2html730"
39
+<A NAME="tex2html732"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html733"
43
+<B> Next:</B> <A NAME="tex2html735"
44 44
   HREF="node18.html">On-access scanning</A>
45
-<B> Up:</B> <A NAME="tex2html729"
45
+<B> Up:</B> <A NAME="tex2html731"
46 46
   HREF="node16.html">Configuration</A>
47
-<B> Previous:</B> <A NAME="tex2html723"
47
+<B> Previous:</B> <A NAME="tex2html725"
48 48
   HREF="node16.html">Configuration</A>
49
- &nbsp <B>  <A NAME="tex2html731"
49
+ &nbsp <B>  <A NAME="tex2html733"
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="tex2html734"
75
+<LI><A NAME="tex2html736"
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
-2005-06-23
82
+2005-07-25
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="tex2html743"
29
+<A NAME="tex2html745"
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="tex2html739"
32
+<A NAME="tex2html741"
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="tex2html735"
35
+<A NAME="tex2html737"
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="tex2html741"
38
+<A NAME="tex2html743"
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="tex2html744"
42
+<B> Next:</B> <A NAME="tex2html746"
43 43
   HREF="node19.html">clamav-milter</A>
44
-<B> Up:</B> <A NAME="tex2html740"
44
+<B> Up:</B> <A NAME="tex2html742"
45 45
   HREF="node17.html">clamd</A>
46
-<B> Previous:</B> <A NAME="tex2html736"
46
+<B> Previous:</B> <A NAME="tex2html738"
47 47
   HREF="node17.html">clamd</A>
48
- &nbsp <B>  <A NAME="tex2html742"
48
+ &nbsp <B>  <A NAME="tex2html744"
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
-2005-06-23
94
+2005-07-25
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="tex2html755"
30
+<A NAME="tex2html757"
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="tex2html751"
33
+<A NAME="tex2html753"
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="tex2html745"
36
+<A NAME="tex2html747"
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="tex2html753"
39
+<A NAME="tex2html755"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html756"
43
+<B> Next:</B> <A NAME="tex2html758"
44 44
   HREF="node20.html">Testing</A>
45
-<B> Up:</B> <A NAME="tex2html752"
45
+<B> Up:</B> <A NAME="tex2html754"
46 46
   HREF="node16.html">Configuration</A>
47
-<B> Previous:</B> <A NAME="tex2html746"
47
+<B> Previous:</B> <A NAME="tex2html748"
48 48
   HREF="node18.html">On-access scanning</A>
49
- &nbsp <B>  <A NAME="tex2html754"
49
+ &nbsp <B>  <A NAME="tex2html756"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,18 +62,18 @@ clamav-milter</A>
62 62
     to connect it with Sendmail add the following lines to
63 63
     <code>/etc/mail/sendmail.mc</code>:
64 64
     <PRE>
65
-INPUT_MAIL_FILTER(`clmilter',`S=local:/var/run/clmilter.sock,
65
+INPUT_MAIL_FILTER(`clmilter',`S=local:/var/run/clamav/clmilter.sock,
66 66
 F=, T=S:4m;R:4m')dnl
67 67
 define(`confINPUT_MAIL_FILTERS', `clmilter')
68 68
 </PRE>
69 69
     If you're running it in <code>--external</code> mode, check entry in
70 70
     <code>clamd.conf</code> of the form:
71 71
     <PRE>
72
-	LocalSocket /var/run/clamd.sock
72
+	LocalSocket /var/run/clamav/clamd.sock
73 73
 </PRE>
74 74
     Start clamav-milter
75 75
     <PRE>
76
-	/usr/local/sbin/clamav-milter -lo /var/run/clmilter.sock
76
+	/usr/local/sbin/clamav-milter -lo /var/run/clamav/clmilter.sock
77 77
 </PRE>
78 78
     and restart sendmail.
79 79
 
... ...
@@ -81,7 +81,7 @@ define(`confINPUT_MAIL_FILTERS', `clmilter')
81 81
 <BR><HR>
82 82
 <ADDRESS>
83 83
 Tomasz Kojm
84
-2005-06-23
84
+2005-07-25
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="tex2html541"
30
+<A NAME="tex2html543"
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="tex2html537"
33
+<A NAME="tex2html539"
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="tex2html531"
36
+<A NAME="tex2html533"
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="tex2html539"
39
+<A NAME="tex2html541"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html542"
43
+<B> Next:</B> <A NAME="tex2html544"
44 44
   HREF="node3.html">Features</A>
45
-<B> Up:</B> <A NAME="tex2html538"
45
+<B> Up:</B> <A NAME="tex2html540"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html532"
47
+<B> Previous:</B> <A NAME="tex2html534"
48 48
   HREF="node1.html">Contents</A>
49
- &nbsp <B>  <A NAME="tex2html540"
49
+ &nbsp <B>  <A NAME="tex2html542"
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="tex2html543"
72
+<LI><A NAME="tex2html545"
73 73
   HREF="node3.html">Features</A>
74
-<LI><A NAME="tex2html544"
74
+<LI><A NAME="tex2html546"
75 75
   HREF="node4.html">Mailing lists</A>
76
-<LI><A NAME="tex2html545"
76
+<LI><A NAME="tex2html547"
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
-2005-06-23
83
+2005-07-25
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="tex2html767"
30
+<A NAME="tex2html769"
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="tex2html763"
33
+<A NAME="tex2html765"
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="tex2html757"
36
+<A NAME="tex2html759"
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="tex2html765"
39
+<A NAME="tex2html767"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html768"
43
+<B> Next:</B> <A NAME="tex2html770"
44 44
   HREF="node21.html">Setting up auto-updating</A>
45
-<B> Up:</B> <A NAME="tex2html764"
45
+<B> Up:</B> <A NAME="tex2html766"
46 46
   HREF="node16.html">Configuration</A>
47
-<B> Previous:</B> <A NAME="tex2html758"
47
+<B> Previous:</B> <A NAME="tex2html760"
48 48
   HREF="node19.html">clamav-milter</A>
49
- &nbsp <B>  <A NAME="tex2html766"
49
+ &nbsp <B>  <A NAME="tex2html768"
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
-2005-06-23
78
+2005-07-25
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="tex2html779"
30
+<A NAME="tex2html781"
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="tex2html775"
33
+<A NAME="tex2html777"
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="tex2html769"
36
+<A NAME="tex2html771"
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="tex2html777"
39
+<A NAME="tex2html779"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html780"
43
+<B> Next:</B> <A NAME="tex2html782"
44 44
   HREF="node22.html">Closest mirrors</A>
45
-<B> Up:</B> <A NAME="tex2html776"
45
+<B> Up:</B> <A NAME="tex2html778"
46 46
   HREF="node16.html">Configuration</A>
47
-<B> Previous:</B> <A NAME="tex2html770"
47
+<B> Previous:</B> <A NAME="tex2html772"
48 48
   HREF="node20.html">Testing</A>
49
- &nbsp <B>  <A NAME="tex2html778"
49
+ &nbsp <B>  <A NAME="tex2html780"
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="tex2html779"
112
+<A NAME="tex2html781"
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="tex2html775"
115
+<A NAME="tex2html777"
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="tex2html769"
118
+<A NAME="tex2html771"
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="tex2html777"
121
+<A NAME="tex2html779"
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="tex2html780"
125
+<B> Next:</B> <A NAME="tex2html782"
126 126
   HREF="node22.html">Closest mirrors</A>
127
-<B> Up:</B> <A NAME="tex2html776"
127
+<B> Up:</B> <A NAME="tex2html778"
128 128
   HREF="node16.html">Configuration</A>
129
-<B> Previous:</B> <A NAME="tex2html770"
129
+<B> Previous:</B> <A NAME="tex2html772"
130 130
   HREF="node20.html">Testing</A>
131
- &nbsp <B>  <A NAME="tex2html778"
131
+ &nbsp <B>  <A NAME="tex2html780"
132 132
   HREF="node1.html">Contents</A></B> 
133 133
 <!--End of Navigation Panel-->
134 134
 <ADDRESS>
135 135
 Tomasz Kojm
136
-2005-06-23
136
+2005-07-25
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="tex2html789"
29
+<A NAME="tex2html791"
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="tex2html785"
32
+<A NAME="tex2html787"
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="tex2html781"
35
+<A NAME="tex2html783"
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="tex2html787"
38
+<A NAME="tex2html789"
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="tex2html790"
42
+<B> Next:</B> <A NAME="tex2html792"
43 43
   HREF="node23.html">Usage</A>
44
-<B> Up:</B> <A NAME="tex2html786"
44
+<B> Up:</B> <A NAME="tex2html788"
45 45
   HREF="node16.html">Configuration</A>
46
-<B> Previous:</B> <A NAME="tex2html782"
46
+<B> Previous:</B> <A NAME="tex2html784"
47 47
   HREF="node21.html">Setting up auto-updating</A>
48
- &nbsp <B>  <A NAME="tex2html788"
48
+ &nbsp <B>  <A NAME="tex2html790"
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
-2005-06-23
80
+2005-07-25
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="tex2html801"
30
+<A NAME="tex2html803"
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="tex2html797"
33
+<A NAME="tex2html799"
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="tex2html791"
36
+<A NAME="tex2html793"
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="tex2html799"
39
+<A NAME="tex2html801"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html802"
43
+<B> Next:</B> <A NAME="tex2html804"
44 44
   HREF="node24.html">Clam daemon</A>
45
-<B> Up:</B> <A NAME="tex2html798"
45
+<B> Up:</B> <A NAME="tex2html800"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html792"
47
+<B> Previous:</B> <A NAME="tex2html794"
48 48
   HREF="node22.html">Closest mirrors</A>
49
- &nbsp <B>  <A NAME="tex2html800"
49
+ &nbsp <B>  <A NAME="tex2html802"
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="tex2html803"
65
+<LI><A NAME="tex2html805"
66 66
   HREF="node24.html">Clam daemon</A>
67
-<LI><A NAME="tex2html804"
67
+<LI><A NAME="tex2html806"
68 68
   HREF="node25.html">Clam<B>d</B>scan</A>
69
-<LI><A NAME="tex2html805"
69
+<LI><A NAME="tex2html807"
70 70
   HREF="node26.html">Clamuko</A>
71
-<LI><A NAME="tex2html806"
71
+<LI><A NAME="tex2html808"
72 72
   HREF="node27.html">Output format</A>
73 73
 <UL>
74
-<LI><A NAME="tex2html807"
74
+<LI><A NAME="tex2html809"
75 75
   HREF="node28.html">clamscan</A>
76
-<LI><A NAME="tex2html808"
76
+<LI><A NAME="tex2html810"
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
-2005-06-23
83
+2005-07-25
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="tex2html819"
30
+<A NAME="tex2html821"
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="tex2html815"
33
+<A NAME="tex2html817"
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="tex2html809"
36
+<A NAME="tex2html811"
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="tex2html817"
39
+<A NAME="tex2html819"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html820"
43
+<B> Next:</B> <A NAME="tex2html822"
44 44
   HREF="node25.html">Clamdscan</A>
45
-<B> Up:</B> <A NAME="tex2html816"
45
+<B> Up:</B> <A NAME="tex2html818"
46 46
   HREF="node23.html">Usage</A>
47
-<B> Previous:</B> <A NAME="tex2html810"
47
+<B> Previous:</B> <A NAME="tex2html812"
48 48
   HREF="node23.html">Usage</A>
49
- &nbsp <B>  <A NAME="tex2html818"
49
+ &nbsp <B>  <A NAME="tex2html820"
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="tex2html819"
129
+<A NAME="tex2html821"
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="tex2html815"
132
+<A NAME="tex2html817"
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="tex2html809"
135
+<A NAME="tex2html811"
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="tex2html817"
138
+<A NAME="tex2html819"
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="tex2html820"
142
+<B> Next:</B> <A NAME="tex2html822"
143 143
   HREF="node25.html">Clamdscan</A>
144
-<B> Up:</B> <A NAME="tex2html816"
144
+<B> Up:</B> <A NAME="tex2html818"
145 145
   HREF="node23.html">Usage</A>
146
-<B> Previous:</B> <A NAME="tex2html810"
146
+<B> Previous:</B> <A NAME="tex2html812"
147 147
   HREF="node23.html">Usage</A>
148
- &nbsp <B>  <A NAME="tex2html818"
148
+ &nbsp <B>  <A NAME="tex2html820"
149 149
   HREF="node1.html">Contents</A></B> 
150 150
 <!--End of Navigation Panel-->
151 151
 <ADDRESS>
152 152
 Tomasz Kojm
153
-2005-06-23
153
+2005-07-25
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="tex2html831"
30
+<A NAME="tex2html833"
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="tex2html827"
33
+<A NAME="tex2html829"
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="tex2html821"
36
+<A NAME="tex2html823"
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="tex2html829"
39
+<A NAME="tex2html831"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html832"
43
+<B> Next:</B> <A NAME="tex2html834"
44 44
   HREF="node26.html">Clamuko</A>
45
-<B> Up:</B> <A NAME="tex2html828"
45
+<B> Up:</B> <A NAME="tex2html830"
46 46
   HREF="node23.html">Usage</A>
47
-<B> Previous:</B> <A NAME="tex2html822"
47
+<B> Previous:</B> <A NAME="tex2html824"
48 48
   HREF="node24.html">Clam daemon</A>
49
- &nbsp <B>  <A NAME="tex2html830"
49
+ &nbsp <B>  <A NAME="tex2html832"
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
-2005-06-23
79
+2005-07-25
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="tex2html843"
30
+<A NAME="tex2html845"
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="tex2html839"
33
+<A NAME="tex2html841"
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="tex2html833"
36
+<A NAME="tex2html835"
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="tex2html841"
39
+<A NAME="tex2html843"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html844"
43
+<B> Next:</B> <A NAME="tex2html846"
44 44
   HREF="node27.html">Output format</A>
45
-<B> Up:</B> <A NAME="tex2html840"
45
+<B> Up:</B> <A NAME="tex2html842"
46 46
   HREF="node23.html">Usage</A>
47
-<B> Previous:</B> <A NAME="tex2html834"
47
+<B> Previous:</B> <A NAME="tex2html836"
48 48
   HREF="node25.html">Clamdscan</A>
49
- &nbsp <B>  <A NAME="tex2html842"
49
+ &nbsp <B>  <A NAME="tex2html844"
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
-2005-06-23
96
+2005-07-25
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="tex2html853"
29
+<A NAME="tex2html855"
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="tex2html849"
32
+<A NAME="tex2html851"
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="tex2html845"
35
+<A NAME="tex2html847"
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="tex2html851"
38
+<A NAME="tex2html853"
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="tex2html854"
42
+<B> Next:</B> <A NAME="tex2html856"
43 43
   HREF="node28.html">clamscan</A>
44
-<B> Up:</B> <A NAME="tex2html850"
44
+<B> Up:</B> <A NAME="tex2html852"
45 45
   HREF="node23.html">Usage</A>
46
-<B> Previous:</B> <A NAME="tex2html846"
46
+<B> Previous:</B> <A NAME="tex2html848"
47 47
   HREF="node26.html">Clamuko</A>
48
- &nbsp <B>  <A NAME="tex2html852"
48
+ &nbsp <B>  <A NAME="tex2html854"
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="tex2html855"
64
+<LI><A NAME="tex2html857"
65 65
   HREF="node28.html">clamscan</A>
66
-<LI><A NAME="tex2html856"
66
+<LI><A NAME="tex2html858"
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
-2005-06-23
73
+2005-07-25
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="tex2html867"
30
+<A NAME="tex2html869"
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="tex2html863"
33
+<A NAME="tex2html865"
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="tex2html857"
36
+<A NAME="tex2html859"
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="tex2html865"
39
+<A NAME="tex2html867"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html868"
43
+<B> Next:</B> <A NAME="tex2html870"
44 44
   HREF="node29.html">clamd</A>
45
-<B> Up:</B> <A NAME="tex2html864"
45
+<B> Up:</B> <A NAME="tex2html866"
46 46
   HREF="node27.html">Output format</A>
47
-<B> Previous:</B> <A NAME="tex2html858"
47
+<B> Previous:</B> <A NAME="tex2html860"
48 48
   HREF="node27.html">Output format</A>
49
- &nbsp <B>  <A NAME="tex2html866"
49
+ &nbsp <B>  <A NAME="tex2html868"
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
-2005-06-23
95
+2005-07-25
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="tex2html877"
29
+<A NAME="tex2html879"
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="tex2html873"
32
+<A NAME="tex2html875"
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="tex2html869"
35
+<A NAME="tex2html871"
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="tex2html875"
38
+<A NAME="tex2html877"
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="tex2html878"
42
+<B> Next:</B> <A NAME="tex2html880"
43 43
   HREF="node30.html">LibClamAV</A>
44
-<B> Up:</B> <A NAME="tex2html874"
44
+<B> Up:</B> <A NAME="tex2html876"
45 45
   HREF="node27.html">Output format</A>
46
-<B> Previous:</B> <A NAME="tex2html870"
46
+<B> Previous:</B> <A NAME="tex2html872"
47 47
   HREF="node28.html">clamscan</A>
48
- &nbsp <B>  <A NAME="tex2html876"
48
+ &nbsp <B>  <A NAME="tex2html878"
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
-2005-06-23
85
+2005-07-25
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="tex2html556"
30
+<A NAME="tex2html558"
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="tex2html552"
33
+<A NAME="tex2html554"
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="tex2html546"
36
+<A NAME="tex2html548"
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="tex2html554"
39
+<A NAME="tex2html556"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html557"
43
+<B> Next:</B> <A NAME="tex2html559"
44 44
   HREF="node4.html">Mailing lists</A>
45
-<B> Up:</B> <A NAME="tex2html553"
45
+<B> Up:</B> <A NAME="tex2html555"
46 46
   HREF="node2.html">Introduction</A>
47
-<B> Previous:</B> <A NAME="tex2html547"
47
+<B> Previous:</B> <A NAME="tex2html549"
48 48
   HREF="node2.html">Introduction</A>
49
- &nbsp <B>  <A NAME="tex2html555"
49
+ &nbsp <B>  <A NAME="tex2html557"
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
-2005-06-23
122
+2005-07-25
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="tex2html889"
30
+<A NAME="tex2html891"
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="tex2html885"
33
+<A NAME="tex2html887"
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="tex2html879"
36
+<A NAME="tex2html881"
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="tex2html887"
39
+<A NAME="tex2html889"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html890"
43
+<B> Next:</B> <A NAME="tex2html892"
44 44
   HREF="node31.html">Licence</A>
45
-<B> Up:</B> <A NAME="tex2html886"
45
+<B> Up:</B> <A NAME="tex2html888"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html880"
47
+<B> Previous:</B> <A NAME="tex2html882"
48 48
   HREF="node29.html">clamd</A>
49
- &nbsp <B>  <A NAME="tex2html888"
49
+ &nbsp <B>  <A NAME="tex2html890"
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="tex2html891"
69
+<LI><A NAME="tex2html893"
70 70
   HREF="node31.html">Licence</A>
71
-<LI><A NAME="tex2html892"
71
+<LI><A NAME="tex2html894"
72 72
   HREF="node32.html">Features</A>
73 73
 <UL>
74
-<LI><A NAME="tex2html893"
74
+<LI><A NAME="tex2html895"
75 75
   HREF="node33.html">Archives and compressed files</A>
76
-<LI><A NAME="tex2html894"
76
+<LI><A NAME="tex2html896"
77 77
   HREF="node34.html">Mail files</A>
78 78
 </UL>
79
-<LI><A NAME="tex2html895"
79
+<LI><A NAME="tex2html897"
80 80
   HREF="node35.html">API</A>
81 81
 <UL>
82
-<LI><A NAME="tex2html896"
82
+<LI><A NAME="tex2html898"
83 83
   HREF="node36.html">Header file</A>
84
-<LI><A NAME="tex2html897"
84
+<LI><A NAME="tex2html899"
85 85
   HREF="node37.html">Database loading</A>
86
-<LI><A NAME="tex2html898"
86
+<LI><A NAME="tex2html900"
87 87
   HREF="node38.html">Error handling</A>
88
-<LI><A NAME="tex2html899"
88
+<LI><A NAME="tex2html901"
89 89
   HREF="node39.html">Database structure</A>
90 90
 </UL>
91
-<LI><A NAME="tex2html900"
91
+<LI><A NAME="tex2html902"
92 92
   HREF="node40.html">Database reloading</A>
93 93
 <UL>
94
-<LI><A NAME="tex2html901"
94
+<LI><A NAME="tex2html903"
95 95
   HREF="node41.html">Data scan functions</A>
96
-<LI><A NAME="tex2html902"
96
+<LI><A NAME="tex2html904"
97 97
   HREF="node42.html">Memory</A>
98
-<LI><A NAME="tex2html903"
98
+<LI><A NAME="tex2html905"
99 99
   HREF="node43.html">clamav-config</A>
100
-<LI><A NAME="tex2html904"
100
+<LI><A NAME="tex2html906"
101 101
   HREF="node44.html">Example</A>
102 102
 </UL>
103
-<LI><A NAME="tex2html905"
103
+<LI><A NAME="tex2html907"
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
-2005-06-23
110
+2005-07-25
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="tex2html916"
30
+<A NAME="tex2html918"
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="tex2html912"
33
+<A NAME="tex2html914"
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="tex2html906"
36
+<A NAME="tex2html908"
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="tex2html914"
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="tex2html917"
43
+<B> Next:</B> <A NAME="tex2html919"
44 44
   HREF="node32.html">Features</A>
45
-<B> Up:</B> <A NAME="tex2html913"
45
+<B> Up:</B> <A NAME="tex2html915"
46 46
   HREF="node30.html">LibClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html907"
47
+<B> Previous:</B> <A NAME="tex2html909"
48 48
   HREF="node30.html">LibClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html915"
49
+ &nbsp <B>  <A NAME="tex2html917"
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
-2005-06-23
68
+2005-07-25
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="tex2html928"
30
+<A NAME="tex2html930"
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="tex2html924"
33
+<A NAME="tex2html926"
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="tex2html918"
36
+<A NAME="tex2html920"
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="tex2html926"
39
+<A NAME="tex2html928"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html929"
43
+<B> Next:</B> <A NAME="tex2html931"
44 44
   HREF="node33.html">Archives and compressed files</A>
45
-<B> Up:</B> <A NAME="tex2html925"
45
+<B> Up:</B> <A NAME="tex2html927"
46 46
   HREF="node30.html">LibClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html919"
47
+<B> Previous:</B> <A NAME="tex2html921"
48 48
   HREF="node31.html">Licence</A>
49
- &nbsp <B>  <A NAME="tex2html927"
49
+ &nbsp <B>  <A NAME="tex2html929"
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="tex2html930"
65
+<LI><A NAME="tex2html932"
66 66
   HREF="node33.html">Archives and compressed files</A>
67
-<LI><A NAME="tex2html931"
67
+<LI><A NAME="tex2html933"
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
-2005-06-23
74
+2005-07-25
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="tex2html942"
30
+<A NAME="tex2html944"
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="tex2html938"
33
+<A NAME="tex2html940"
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="tex2html932"
36
+<A NAME="tex2html934"
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="tex2html940"
39
+<A NAME="tex2html942"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html943"
43
+<B> Next:</B> <A NAME="tex2html945"
44 44
   HREF="node34.html">Mail files</A>
45
-<B> Up:</B> <A NAME="tex2html939"
45
+<B> Up:</B> <A NAME="tex2html941"
46 46
   HREF="node32.html">Features</A>
47
-<B> Previous:</B> <A NAME="tex2html933"
47
+<B> Previous:</B> <A NAME="tex2html935"
48 48
   HREF="node32.html">Features</A>
49
- &nbsp <B>  <A NAME="tex2html941"
49
+ &nbsp <B>  <A NAME="tex2html943"
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
-2005-06-23
110
+2005-07-25
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="tex2html952"
29
+<A NAME="tex2html954"
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="tex2html948"
32
+<A NAME="tex2html950"
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="tex2html944"
35
+<A NAME="tex2html946"
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="tex2html950"
38
+<A NAME="tex2html952"
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="tex2html953"
42
+<B> Next:</B> <A NAME="tex2html955"
43 43
   HREF="node35.html">API</A>
44
-<B> Up:</B> <A NAME="tex2html949"
44
+<B> Up:</B> <A NAME="tex2html951"
45 45
   HREF="node32.html">Features</A>
46
-<B> Previous:</B> <A NAME="tex2html945"
46
+<B> Previous:</B> <A NAME="tex2html947"
47 47
   HREF="node33.html">Archives and compressed files</A>
48
- &nbsp <B>  <A NAME="tex2html951"
48
+ &nbsp <B>  <A NAME="tex2html953"
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
-2005-06-23
65
+2005-07-25
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="tex2html964"
30
+<A NAME="tex2html966"
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="tex2html960"
33
+<A NAME="tex2html962"
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="tex2html954"
36
+<A NAME="tex2html956"
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="tex2html962"
39
+<A NAME="tex2html964"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html965"
43
+<B> Next:</B> <A NAME="tex2html967"
44 44
   HREF="node36.html">Header file</A>
45
-<B> Up:</B> <A NAME="tex2html961"
45
+<B> Up:</B> <A NAME="tex2html963"
46 46
   HREF="node30.html">LibClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html955"
47
+<B> Previous:</B> <A NAME="tex2html957"
48 48
   HREF="node34.html">Mail files</A>
49
- &nbsp <B>  <A NAME="tex2html963"
49
+ &nbsp <B>  <A NAME="tex2html965"
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="tex2html966"
65
+<LI><A NAME="tex2html968"
66 66
   HREF="node36.html">Header file</A>
67
-<LI><A NAME="tex2html967"
67
+<LI><A NAME="tex2html969"
68 68
   HREF="node37.html">Database loading</A>
69
-<LI><A NAME="tex2html968"
69
+<LI><A NAME="tex2html970"
70 70
   HREF="node38.html">Error handling</A>
71
-<LI><A NAME="tex2html969"
71
+<LI><A NAME="tex2html971"
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
-2005-06-23
78
+2005-07-25
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="tex2html980"
30
+<A NAME="tex2html982"
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="tex2html976"
33
+<A NAME="tex2html978"
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="tex2html970"
36
+<A NAME="tex2html972"
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="tex2html978"
39
+<A NAME="tex2html980"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html981"
43
+<B> Next:</B> <A NAME="tex2html983"
44 44
   HREF="node37.html">Database loading</A>
45
-<B> Up:</B> <A NAME="tex2html977"
45
+<B> Up:</B> <A NAME="tex2html979"
46 46
   HREF="node35.html">API</A>
47
-<B> Previous:</B> <A NAME="tex2html971"
47
+<B> Previous:</B> <A NAME="tex2html973"
48 48
   HREF="node35.html">API</A>
49
- &nbsp <B>  <A NAME="tex2html979"
49
+ &nbsp <B>  <A NAME="tex2html981"
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
-2005-06-23
68
+2005-07-25
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="tex2html992"
30
+<A NAME="tex2html994"
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="tex2html988"
33
+<A NAME="tex2html990"
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="tex2html982"
36
+<A NAME="tex2html984"
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="tex2html990"
39
+<A NAME="tex2html992"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html993"
43
+<B> Next:</B> <A NAME="tex2html995"
44 44
   HREF="node38.html">Error handling</A>
45
-<B> Up:</B> <A NAME="tex2html989"
45
+<B> Up:</B> <A NAME="tex2html991"
46 46
   HREF="node35.html">API</A>
47
-<B> Previous:</B> <A NAME="tex2html983"
47
+<B> Previous:</B> <A NAME="tex2html985"
48 48
   HREF="node36.html">Header file</A>
49
- &nbsp <B>  <A NAME="tex2html991"
49
+ &nbsp <B>  <A NAME="tex2html993"
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
-2005-06-23
91
+2005-07-25
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="tex2html1004"
30
+<A NAME="tex2html1006"
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="tex2html1000"
33
+<A NAME="tex2html1002"
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="tex2html994"
36
+<A NAME="tex2html996"
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="tex2html1002"
39
+<A NAME="tex2html1004"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1005"
43
+<B> Next:</B> <A NAME="tex2html1007"
44 44
   HREF="node39.html">Database structure</A>
45
-<B> Up:</B> <A NAME="tex2html1001"
45
+<B> Up:</B> <A NAME="tex2html1003"
46 46
   HREF="node35.html">API</A>
47
-<B> Previous:</B> <A NAME="tex2html995"
47
+<B> Previous:</B> <A NAME="tex2html997"
48 48
   HREF="node37.html">Database loading</A>
49
- &nbsp <B>  <A NAME="tex2html1003"
49
+ &nbsp <B>  <A NAME="tex2html1005"
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
-2005-06-23
71
+2005-07-25
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="tex2html1014"
29
+<A NAME="tex2html1016"
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="tex2html1010"
32
+<A NAME="tex2html1012"
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="tex2html1006"
35
+<A NAME="tex2html1008"
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="tex2html1012"
38
+<A NAME="tex2html1014"
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="tex2html1015"
42
+<B> Next:</B> <A NAME="tex2html1017"
43 43
   HREF="node40.html">Database reloading</A>
44
-<B> Up:</B> <A NAME="tex2html1011"
44
+<B> Up:</B> <A NAME="tex2html1013"
45 45
   HREF="node35.html">API</A>
46
-<B> Previous:</B> <A NAME="tex2html1007"
46
+<B> Previous:</B> <A NAME="tex2html1009"
47 47
   HREF="node38.html">Error handling</A>
48
- &nbsp <B>  <A NAME="tex2html1013"
48
+ &nbsp <B>  <A NAME="tex2html1015"
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
-2005-06-23
71
+2005-07-25
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="tex2html568"
30
+<A NAME="tex2html570"
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="tex2html564"
33
+<A NAME="tex2html566"
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="tex2html558"
36
+<A NAME="tex2html560"
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="tex2html566"
39
+<A NAME="tex2html568"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html569"
43
+<B> Next:</B> <A NAME="tex2html571"
44 44
   HREF="node5.html">Virus submitting</A>
45
-<B> Up:</B> <A NAME="tex2html565"
45
+<B> Up:</B> <A NAME="tex2html567"
46 46
   HREF="node2.html">Introduction</A>
47
-<B> Previous:</B> <A NAME="tex2html559"
47
+<B> Previous:</B> <A NAME="tex2html561"
48 48
   HREF="node3.html">Features</A>
49
- &nbsp <B>  <A NAME="tex2html567"
49
+ &nbsp <B>  <A NAME="tex2html569"
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
-2005-06-23
82
+2005-07-25
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="tex2html1026"
30
+<A NAME="tex2html1028"
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="tex2html1022"
33
+<A NAME="tex2html1024"
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="tex2html1016"
36
+<A NAME="tex2html1018"
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="tex2html1024"
39
+<A NAME="tex2html1026"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1027"
43
+<B> Next:</B> <A NAME="tex2html1029"
44 44
   HREF="node41.html">Data scan functions</A>
45
-<B> Up:</B> <A NAME="tex2html1023"
45
+<B> Up:</B> <A NAME="tex2html1025"
46 46
   HREF="node30.html">LibClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1017"
47
+<B> Previous:</B> <A NAME="tex2html1019"
48 48
   HREF="node39.html">Database structure</A>
49
- &nbsp <B>  <A NAME="tex2html1025"
49
+ &nbsp <B>  <A NAME="tex2html1027"
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="tex2html1028"
90
+<LI><A NAME="tex2html1030"
91 91
   HREF="node41.html">Data scan functions</A>
92
-<LI><A NAME="tex2html1029"
92
+<LI><A NAME="tex2html1031"
93 93
   HREF="node42.html">Memory</A>
94
-<LI><A NAME="tex2html1030"
94
+<LI><A NAME="tex2html1032"
95 95
   HREF="node43.html">clamav-config</A>
96
-<LI><A NAME="tex2html1031"
96
+<LI><A NAME="tex2html1033"
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
-2005-06-23
103
+2005-07-25
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="tex2html1042"
30
+<A NAME="tex2html1044"
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="tex2html1038"
33
+<A NAME="tex2html1040"
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="tex2html1032"
36
+<A NAME="tex2html1034"
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="tex2html1040"
39
+<A NAME="tex2html1042"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1043"
43
+<B> Next:</B> <A NAME="tex2html1045"
44 44
   HREF="node42.html">Memory</A>
45
-<B> Up:</B> <A NAME="tex2html1039"
45
+<B> Up:</B> <A NAME="tex2html1041"
46 46
   HREF="node40.html">Database reloading</A>
47
-<B> Previous:</B> <A NAME="tex2html1033"
47
+<B> Previous:</B> <A NAME="tex2html1035"
48 48
   HREF="node40.html">Database reloading</A>
49
- &nbsp <B>  <A NAME="tex2html1041"
49
+ &nbsp <B>  <A NAME="tex2html1043"
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="tex2html1042"
185
+<A NAME="tex2html1044"
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="tex2html1038"
188
+<A NAME="tex2html1040"
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="tex2html1032"
191
+<A NAME="tex2html1034"
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="tex2html1040"
194
+<A NAME="tex2html1042"
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="tex2html1043"
198
+<B> Next:</B> <A NAME="tex2html1045"
199 199
   HREF="node42.html">Memory</A>
200
-<B> Up:</B> <A NAME="tex2html1039"
200
+<B> Up:</B> <A NAME="tex2html1041"
201 201
   HREF="node40.html">Database reloading</A>
202
-<B> Previous:</B> <A NAME="tex2html1033"
202
+<B> Previous:</B> <A NAME="tex2html1035"
203 203
   HREF="node40.html">Database reloading</A>
204
- &nbsp <B>  <A NAME="tex2html1041"
204
+ &nbsp <B>  <A NAME="tex2html1043"
205 205
   HREF="node1.html">Contents</A></B> 
206 206
 <!--End of Navigation Panel-->
207 207
 <ADDRESS>
208 208
 Tomasz Kojm
209
-2005-06-23
209
+2005-07-25
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="tex2html1054"
30
+<A NAME="tex2html1056"
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="tex2html1050"
33
+<A NAME="tex2html1052"
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="tex2html1044"
36
+<A NAME="tex2html1046"
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="tex2html1052"
39
+<A NAME="tex2html1054"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1055"
43
+<B> Next:</B> <A NAME="tex2html1057"
44 44
   HREF="node43.html">clamav-config</A>
45
-<B> Up:</B> <A NAME="tex2html1051"
45
+<B> Up:</B> <A NAME="tex2html1053"
46 46
   HREF="node40.html">Database reloading</A>
47
-<B> Previous:</B> <A NAME="tex2html1045"
47
+<B> Previous:</B> <A NAME="tex2html1047"
48 48
   HREF="node41.html">Data scan functions</A>
49
- &nbsp <B>  <A NAME="tex2html1053"
49
+ &nbsp <B>  <A NAME="tex2html1055"
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
-2005-06-23
68
+2005-07-25
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="tex2html1066"
30
+<A NAME="tex2html1068"
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="tex2html1062"
33
+<A NAME="tex2html1064"
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="tex2html1056"
36
+<A NAME="tex2html1058"
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="tex2html1064"
39
+<A NAME="tex2html1066"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1067"
43
+<B> Next:</B> <A NAME="tex2html1069"
44 44
   HREF="node44.html">Example</A>
45
-<B> Up:</B> <A NAME="tex2html1063"
45
+<B> Up:</B> <A NAME="tex2html1065"
46 46
   HREF="node40.html">Database reloading</A>
47
-<B> Previous:</B> <A NAME="tex2html1057"
47
+<B> Previous:</B> <A NAME="tex2html1059"
48 48
   HREF="node42.html">Memory</A>
49
- &nbsp <B>  <A NAME="tex2html1065"
49
+ &nbsp <B>  <A NAME="tex2html1067"
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
-2005-06-23
70
+2005-07-25
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="tex2html1076"
29
+<A NAME="tex2html1078"
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="tex2html1072"
32
+<A NAME="tex2html1074"
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="tex2html1068"
35
+<A NAME="tex2html1070"
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="tex2html1074"
38
+<A NAME="tex2html1076"
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="tex2html1077"
42
+<B> Next:</B> <A NAME="tex2html1079"
43 43
   HREF="node45.html">CVD format</A>
44
-<B> Up:</B> <A NAME="tex2html1073"
44
+<B> Up:</B> <A NAME="tex2html1075"
45 45
   HREF="node40.html">Database reloading</A>
46
-<B> Previous:</B> <A NAME="tex2html1069"
46
+<B> Previous:</B> <A NAME="tex2html1071"
47 47
   HREF="node43.html">clamav-config</A>
48
- &nbsp <B>  <A NAME="tex2html1075"
48
+ &nbsp <B>  <A NAME="tex2html1077"
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
-2005-06-23
68
+2005-07-25
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="tex2html1086"
29
+<A NAME="tex2html1088"
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="tex2html1082"
32
+<A NAME="tex2html1084"
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="tex2html1078"
35
+<A NAME="tex2html1080"
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="tex2html1084"
38
+<A NAME="tex2html1086"
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="tex2html1087"
42
+<B> Next:</B> <A NAME="tex2html1089"
43 43
   HREF="node46.html">Frequently Asked Questions</A>
44
-<B> Up:</B> <A NAME="tex2html1083"
44
+<B> Up:</B> <A NAME="tex2html1085"
45 45
   HREF="node30.html">LibClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html1079"
46
+<B> Previous:</B> <A NAME="tex2html1081"
47 47
   HREF="node44.html">Example</A>
48
- &nbsp <B>  <A NAME="tex2html1085"
48
+ &nbsp <B>  <A NAME="tex2html1087"
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
-2005-06-23
83
+2005-07-25
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="tex2html1098"
30
+<A NAME="tex2html1100"
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="tex2html1094"
33
+<A NAME="tex2html1096"
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="tex2html1088"
36
+<A NAME="tex2html1090"
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="tex2html1096"
39
+<A NAME="tex2html1098"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1099"
43
+<B> Next:</B> <A NAME="tex2html1101"
44 44
   HREF="node47.html">Third party software</A>
45
-<B> Up:</B> <A NAME="tex2html1095"
45
+<B> Up:</B> <A NAME="tex2html1097"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html1089"
47
+<B> Previous:</B> <A NAME="tex2html1091"
48 48
   HREF="node45.html">CVD format</A>
49
- &nbsp <B>  <A NAME="tex2html1097"
49
+ &nbsp <B>  <A NAME="tex2html1099"
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="tex2html1098"
370
+<A NAME="tex2html1100"
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="tex2html1094"
373
+<A NAME="tex2html1096"
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="tex2html1088"
376
+<A NAME="tex2html1090"
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="tex2html1096"
379
+<A NAME="tex2html1098"
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="tex2html1099"
383
+<B> Next:</B> <A NAME="tex2html1101"
384 384
   HREF="node47.html">Third party software</A>
385
-<B> Up:</B> <A NAME="tex2html1095"
385
+<B> Up:</B> <A NAME="tex2html1097"
386 386
   HREF="clamdoc.html">clamdoc</A>
387
-<B> Previous:</B> <A NAME="tex2html1089"
387
+<B> Previous:</B> <A NAME="tex2html1091"
388 388
   HREF="node45.html">CVD format</A>
389
- &nbsp <B>  <A NAME="tex2html1097"
389
+ &nbsp <B>  <A NAME="tex2html1099"
390 390
   HREF="node1.html">Contents</A></B> 
391 391
 <!--End of Navigation Panel-->
392 392
 <ADDRESS>
393 393
 Tomasz Kojm
394
-2005-06-23
394
+2005-07-25
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="tex2html1110"
30
+<A NAME="tex2html1112"
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="tex2html1106"
33
+<A NAME="tex2html1108"
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="tex2html1100"
36
+<A NAME="tex2html1102"
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="tex2html1108"
39
+<A NAME="tex2html1110"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1111"
43
+<B> Next:</B> <A NAME="tex2html1113"
44 44
   HREF="node48.html">MTA + ClamAV</A>
45
-<B> Up:</B> <A NAME="tex2html1107"
45
+<B> Up:</B> <A NAME="tex2html1109"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html1101"
47
+<B> Previous:</B> <A NAME="tex2html1103"
48 48
   HREF="node46.html">Frequently Asked Questions</A>
49
- &nbsp <B>  <A NAME="tex2html1109"
49
+ &nbsp <B>  <A NAME="tex2html1111"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -65,233 +65,233 @@ Third party software</A>
65 65
 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
66 66
 
67 67
 <UL>
68
-<LI><A NAME="tex2html1112"
68
+<LI><A NAME="tex2html1114"
69 69
   HREF="node48.html"><I>MTA + ClamAV</I></A>
70 70
 <UL>
71
-<LI><A NAME="tex2html1113"
71
+<LI><A NAME="tex2html1115"
72 72
   HREF="node49.html">amavisd-new</A>
73
-<LI><A NAME="tex2html1114"
73
+<LI><A NAME="tex2html1116"
74 74
   HREF="node50.html">AMaViS - "Next Generation"</A>
75
-<LI><A NAME="tex2html1115"
75
+<LI><A NAME="tex2html1117"
76 76
   HREF="node51.html">ClamdMail</A>
77
-<LI><A NAME="tex2html1116"
77
+<LI><A NAME="tex2html1118"
78 78
   HREF="node52.html">cgpav</A>
79
-<LI><A NAME="tex2html1117"
79
+<LI><A NAME="tex2html1119"
80 80
   HREF="node53.html">ClamCour</A>
81
-<LI><A NAME="tex2html1118"
81
+<LI><A NAME="tex2html1120"
82 82
   HREF="node54.html">clamfilter</A>
83
-<LI><A NAME="tex2html1119"
83
+<LI><A NAME="tex2html1121"
84 84
   HREF="node55.html">ClamSMTP</A>
85
-<LI><A NAME="tex2html1120"
85
+<LI><A NAME="tex2html1122"
86 86
   HREF="node56.html">clapf</A>
87
-<LI><A NAME="tex2html1121"
87
+<LI><A NAME="tex2html1123"
88 88
   HREF="node57.html">DSpamPD</A>
89
-<LI><A NAME="tex2html1122"
89
+<LI><A NAME="tex2html1124"
90 90
   HREF="node58.html">exiscan</A>
91
-<LI><A NAME="tex2html1123"
91
+<LI><A NAME="tex2html1125"
92 92
   HREF="node59.html">Gadoyanvirus</A>
93
-<LI><A NAME="tex2html1124"
93
+<LI><A NAME="tex2html1126"
94 94
   HREF="node60.html">hMailServer</A>
95
-<LI><A NAME="tex2html1125"
95
+<LI><A NAME="tex2html1127"
96 96
   HREF="node61.html">IVS Milter</A>
97
-<LI><A NAME="tex2html1126"
97
+<LI><A NAME="tex2html1128"
98 98
   HREF="node62.html">j-chkmail</A>
99
-<LI><A NAME="tex2html1127"
99
+<LI><A NAME="tex2html1129"
100 100
   HREF="node63.html">Mail Avenger</A>
101
-<LI><A NAME="tex2html1128"
101
+<LI><A NAME="tex2html1130"
102 102
   HREF="node64.html">Mailnees</A>
103
-<LI><A NAME="tex2html1129"
103
+<LI><A NAME="tex2html1131"
104 104
   HREF="node65.html">MailScanner</A>
105
-<LI><A NAME="tex2html1130"
105
+<LI><A NAME="tex2html1132"
106 106
   HREF="node66.html">Maverix</A>
107
-<LI><A NAME="tex2html1131"
107
+<LI><A NAME="tex2html1133"
108 108
   HREF="node67.html">MIMEDefang</A>
109
-<LI><A NAME="tex2html1132"
109
+<LI><A NAME="tex2html1134"
110 110
   HREF="node68.html">mxGuard for IMail</A>
111
-<LI><A NAME="tex2html1133"
111
+<LI><A NAME="tex2html1135"
112 112
   HREF="node69.html">OdeiaVir</A>
113
-<LI><A NAME="tex2html1134"
113
+<LI><A NAME="tex2html1136"
114 114
   HREF="node70.html">OpenProtect</A>
115
-<LI><A NAME="tex2html1135"
115
+<LI><A NAME="tex2html1137"
116 116
   HREF="node71.html">Protea AntiVirus Tools</A>
117
-<LI><A NAME="tex2html1136"
117
+<LI><A NAME="tex2html1138"
118 118
   HREF="node72.html">PTSMail Utilities</A>
119
-<LI><A NAME="tex2html1137"
119
+<LI><A NAME="tex2html1139"
120 120
   HREF="node73.html">pymavis</A>
121
-<LI><A NAME="tex2html1138"
121
+<LI><A NAME="tex2html1140"
122 122
   HREF="node74.html">Qmail-Scanner</A>
123
-<LI><A NAME="tex2html1139"
123
+<LI><A NAME="tex2html1141"
124 124
   HREF="node75.html">qpsmtp</A>
125
-<LI><A NAME="tex2html1140"
125
+<LI><A NAME="tex2html1142"
126 126
   HREF="node76.html">qscanq</A>
127
-<LI><A NAME="tex2html1141"
127
+<LI><A NAME="tex2html1143"
128 128
   HREF="node77.html">qSheff</A>
129
-<LI><A NAME="tex2html1142"
129
+<LI><A NAME="tex2html1144"
130 130
   HREF="node78.html">RevolSys SMTP kit for Postfix</A>
131
-<LI><A NAME="tex2html1143"
131
+<LI><A NAME="tex2html1145"
132 132
   HREF="node79.html">Sagator</A>
133
-<LI><A NAME="tex2html1144"
133
+<LI><A NAME="tex2html1146"
134 134
   HREF="node80.html">Scrubber</A>
135
-<LI><A NAME="tex2html1145"
135
+<LI><A NAME="tex2html1147"
136 136
   HREF="node81.html">Secure Mail Intelligence!</A>
137
-<LI><A NAME="tex2html1146"
137
+<LI><A NAME="tex2html1148"
138 138
   HREF="node82.html">simscan</A>
139
-<LI><A NAME="tex2html1147"
139
+<LI><A NAME="tex2html1149"
140 140
   HREF="node83.html">SmarterMail Filter</A>
141
-<LI><A NAME="tex2html1148"
141
+<LI><A NAME="tex2html1150"
142 142
   HREF="node84.html">smf-clamd</A>
143
-<LI><A NAME="tex2html1149"
143
+<LI><A NAME="tex2html1151"
144 144
   HREF="node85.html">smtpfilter</A>
145
-<LI><A NAME="tex2html1150"
145
+<LI><A NAME="tex2html1152"
146 146
   HREF="node86.html">smtp-vilter</A>
147
-<LI><A NAME="tex2html1151"
147
+<LI><A NAME="tex2html1153"
148 148
   HREF="node87.html">Zabit</A>
149
-<LI><A NAME="tex2html1152"
149
+<LI><A NAME="tex2html1154"
150 150
   HREF="node88.html">zmscanner</A>
151 151
 </UL>
152
-<LI><A NAME="tex2html1153"
152
+<LI><A NAME="tex2html1155"
153 153
   HREF="node89.html"><I>MTA + POP3 Proxy + ClamAV</I></A>
154 154
 <UL>
155
-<LI><A NAME="tex2html1154"
155
+<LI><A NAME="tex2html1156"
156 156
   HREF="node90.html">ClamMail</A>
157
-<LI><A NAME="tex2html1155"
157
+<LI><A NAME="tex2html1157"
158 158
   HREF="node91.html">POP3 Virus Scanner Daemon</A>
159
-<LI><A NAME="tex2html1156"
159
+<LI><A NAME="tex2html1158"
160 160
   HREF="node92.html">pop3.proxy</A>
161 161
 </UL>
162
-<LI><A NAME="tex2html1157"
162
+<LI><A NAME="tex2html1159"
163 163
   HREF="node93.html"><I>Web/FTP Proxy + ClamAV</I></A>
164 164
 <UL>
165
-<LI><A NAME="tex2html1158"
165
+<LI><A NAME="tex2html1160"
166 166
   HREF="node94.html">DansGuardian Anti-Virus Patch</A>
167
-<LI><A NAME="tex2html1159"
167
+<LI><A NAME="tex2html1161"
168 168
   HREF="node95.html">Frox</A>
169
-<LI><A NAME="tex2html1160"
169
+<LI><A NAME="tex2html1162"
170 170
   HREF="node96.html">HTTP Anti Virus Proxy</A>
171
-<LI><A NAME="tex2html1161"
171
+<LI><A NAME="tex2html1163"
172 172
   HREF="node97.html">Frox</A>
173
-<LI><A NAME="tex2html1162"
173
+<LI><A NAME="tex2html1164"
174 174
   HREF="node98.html">mod_clamav</A>
175
-<LI><A NAME="tex2html1163"
175
+<LI><A NAME="tex2html1165"
176 176
   HREF="node99.html">SafeSquid</A>
177
-<LI><A NAME="tex2html1164"
177
+<LI><A NAME="tex2html1166"
178 178
   HREF="node100.html">SquidClamAV Redirector</A>
179
-<LI><A NAME="tex2html1165"
179
+<LI><A NAME="tex2html1167"
180 180
   HREF="node101.html">Squidclam</A>
181
-<LI><A NAME="tex2html1166"
181
+<LI><A NAME="tex2html1168"
182 182
   HREF="node102.html">Viralator</A>
183 183
 </UL>
184
-<LI><A NAME="tex2html1167"
184
+<LI><A NAME="tex2html1169"
185 185
   HREF="node103.html"><I>Filesystem + ClamAV</I></A>
186 186
 <UL>
187
-<LI><A NAME="tex2html1168"
187
+<LI><A NAME="tex2html1170"
188 188
   HREF="node104.html">Dazuko</A>
189
-<LI><A NAME="tex2html1169"
189
+<LI><A NAME="tex2html1171"
190 190
   HREF="node105.html">Famuko</A>
191
-<LI><A NAME="tex2html1170"
191
+<LI><A NAME="tex2html1172"
192 192
   HREF="node106.html">OpenAntiVirus samba-vscan</A>
193 193
 </UL>
194
-<LI><A NAME="tex2html1171"
194
+<LI><A NAME="tex2html1173"
195 195
   HREF="node107.html"><I>Mail User Agent + ClamAV</I></A>
196 196
 <UL>
197
-<LI><A NAME="tex2html1172"
197
+<LI><A NAME="tex2html1174"
198 198
   HREF="node108.html">clamailfilter</A>
199
-<LI><A NAME="tex2html1173"
199
+<LI><A NAME="tex2html1175"
200 200
   HREF="node109.html">ClamAssassin</A>
201
-<LI><A NAME="tex2html1174"
201
+<LI><A NAME="tex2html1176"
202 202
   HREF="node110.html">clamscan-procfilter</A>
203
-<LI><A NAME="tex2html1175"
203
+<LI><A NAME="tex2html1177"
204 204
   HREF="node111.html">KMail</A>
205
-<LI><A NAME="tex2html1176"
205
+<LI><A NAME="tex2html1178"
206 206
   HREF="node112.html">MyClamMailFilter</A>
207
-<LI><A NAME="tex2html1177"
207
+<LI><A NAME="tex2html1179"
208 208
   HREF="node113.html">OpenWebMail</A>
209
-<LI><A NAME="tex2html1178"
209
+<LI><A NAME="tex2html1180"
210 210
   HREF="node114.html">QClam</A>
211
-<LI><A NAME="tex2html1179"
211
+<LI><A NAME="tex2html1181"
212 212
   HREF="node115.html">QMVC - Qmail Mail and Virus Control</A>
213
-<LI><A NAME="tex2html1180"
213
+<LI><A NAME="tex2html1182"
214 214
   HREF="node116.html">Sylpheed Claws</A>
215
-<LI><A NAME="tex2html1181"
215
+<LI><A NAME="tex2html1183"
216 216
   HREF="node117.html">SoftlabsAV</A>
217 217
 </UL>
218
-<LI><A NAME="tex2html1182"
218
+<LI><A NAME="tex2html1184"
219 219
   HREF="node118.html"><I>Graphical User Interface + ClamAV</I></A>
220 220
 <UL>
221
-<LI><A NAME="tex2html1183"
221
+<LI><A NAME="tex2html1185"
222 222
   HREF="node119.html">AVScan</A>
223
-<LI><A NAME="tex2html1184"
223
+<LI><A NAME="tex2html1186"
224 224
   HREF="node120.html">BeClam</A>
225
-<LI><A NAME="tex2html1185"
225
+<LI><A NAME="tex2html1187"
226 226
   HREF="node121.html">Clamaktion</A>
227
-<LI><A NAME="tex2html1186"
227
+<LI><A NAME="tex2html1188"
228 228
   HREF="node122.html">ClamShell</A>
229
-<LI><A NAME="tex2html1187"
229
+<LI><A NAME="tex2html1189"
230 230
   HREF="node123.html">ClamTk</A>
231
-<LI><A NAME="tex2html1188"
231
+<LI><A NAME="tex2html1190"
232 232
   HREF="node124.html">clamXav</A>
233
-<LI><A NAME="tex2html1189"
233
+<LI><A NAME="tex2html1191"
234 234
   HREF="node125.html">ClamWin</A>
235
-<LI><A NAME="tex2html1190"
235
+<LI><A NAME="tex2html1192"
236 236
   HREF="node126.html">FETCAV</A>
237
-<LI><A NAME="tex2html1191"
237
+<LI><A NAME="tex2html1193"
238 238
   HREF="node127.html">KlamAV</A>
239
-<LI><A NAME="tex2html1192"
239
+<LI><A NAME="tex2html1194"
240 240
   HREF="node128.html">QtClamAVclient</A>
241
-<LI><A NAME="tex2html1193"
241
+<LI><A NAME="tex2html1195"
242 242
   HREF="node129.html">wbmclamav</A>
243 243
 </UL>
244
-<LI><A NAME="tex2html1194"
244
+<LI><A NAME="tex2html1196"
245 245
   HREF="node130.html"><I>Library + ClamAV</I></A>
246 246
 <UL>
247
-<LI><A NAME="tex2html1195"
247
+<LI><A NAME="tex2html1197"
248 248
   HREF="node131.html">ClamAVPlugin</A>
249
-<LI><A NAME="tex2html1196"
249
+<LI><A NAME="tex2html1198"
250 250
   HREF="node132.html">clamavr</A>
251
-<LI><A NAME="tex2html1197"
251
+<LI><A NAME="tex2html1199"
252 252
   HREF="node133.html">D bindings for ClamAV</A>
253
-<LI><A NAME="tex2html1198"
253
+<LI><A NAME="tex2html1200"
254 254
   HREF="node134.html">File::Scan::ClamAV</A>
255
-<LI><A NAME="tex2html1199"
255
+<LI><A NAME="tex2html1201"
256 256
   HREF="node135.html">Mail::ClamAV</A>
257
-<LI><A NAME="tex2html1200"
257
+<LI><A NAME="tex2html1202"
258 258
   HREF="node136.html">php-clamav</A>
259
-<LI><A NAME="tex2html1201"
259
+<LI><A NAME="tex2html1203"
260 260
   HREF="node137.html">pyclamav</A>
261
-<LI><A NAME="tex2html1202"
261
+<LI><A NAME="tex2html1204"
262 262
   HREF="node138.html">WRAVLib</A>
263 263
 </UL>
264
-<LI><A NAME="tex2html1203"
264
+<LI><A NAME="tex2html1205"
265 265
   HREF="node139.html"><I>Miscellaneous + ClamAV</I></A>
266 266
 <UL>
267
-<LI><A NAME="tex2html1204"
267
+<LI><A NAME="tex2html1206"
268 268
   HREF="node140.html">INSERT</A>
269
-<LI><A NAME="tex2html1205"
269
+<LI><A NAME="tex2html1207"
270 270
   HREF="node141.html">Local Area Security</A>
271
-<LI><A NAME="tex2html1206"
271
+<LI><A NAME="tex2html1208"
272 272
   HREF="node142.html">mailgraph</A>
273
-<LI><A NAME="tex2html1207"
273
+<LI><A NAME="tex2html1209"
274 274
   HREF="node143.html">mailman-clamav</A>
275
-<LI><A NAME="tex2html1208"
275
+<LI><A NAME="tex2html1210"
276 276
   HREF="node144.html">Moodle</A>
277
-<LI><A NAME="tex2html1209"
277
+<LI><A NAME="tex2html1211"
278 278
   HREF="node145.html">nclamd</A>
279
-<LI><A NAME="tex2html1210"
279
+<LI><A NAME="tex2html1212"
280 280
   HREF="node146.html">qmailmrtg7</A>
281
-<LI><A NAME="tex2html1211"
281
+<LI><A NAME="tex2html1213"
282 282
   HREF="node147.html">redWall Firewall</A>
283
-<LI><A NAME="tex2html1212"
283
+<LI><A NAME="tex2html1214"
284 284
   HREF="node148.html">Scan Log Analyzer</A>
285
-<LI><A NAME="tex2html1213"
285
+<LI><A NAME="tex2html1215"
286 286
   HREF="node149.html">snort-inline</A>
287
-<LI><A NAME="tex2html1214"
287
+<LI><A NAME="tex2html1216"
288 288
   HREF="node150.html">Snort-ClamAV</A>
289 289
 </UL></UL>
290 290
 <!--End of Table of Child-Links-->
291 291
 <BR><HR>
292 292
 <ADDRESS>
293 293
 Tomasz Kojm
294
-2005-06-23
294
+2005-07-25
295 295
 </ADDRESS>
296 296
 </BODY>
297 297
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1225"
30
+<A NAME="tex2html1227"
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="tex2html1221"
33
+<A NAME="tex2html1223"
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="tex2html1215"
36
+<A NAME="tex2html1217"
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="tex2html1223"
39
+<A NAME="tex2html1225"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1226"
43
+<B> Next:</B> <A NAME="tex2html1228"
44 44
   HREF="node49.html">amavisd-new</A>
45
-<B> Up:</B> <A NAME="tex2html1222"
45
+<B> Up:</B> <A NAME="tex2html1224"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html1216"
47
+<B> Previous:</B> <A NAME="tex2html1218"
48 48
   HREF="node47.html">Third party software</A>
49
- &nbsp <B>  <A NAME="tex2html1224"
49
+ &nbsp <B>  <A NAME="tex2html1226"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -62,92 +62,92 @@ 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="tex2html1227"
65
+<LI><A NAME="tex2html1229"
66 66
   HREF="node49.html">amavisd-new</A>
67
-<LI><A NAME="tex2html1228"
67
+<LI><A NAME="tex2html1230"
68 68
   HREF="node50.html">AMaViS - "Next Generation"</A>
69
-<LI><A NAME="tex2html1229"
69
+<LI><A NAME="tex2html1231"
70 70
   HREF="node51.html">ClamdMail</A>
71
-<LI><A NAME="tex2html1230"
71
+<LI><A NAME="tex2html1232"
72 72
   HREF="node52.html">cgpav</A>
73
-<LI><A NAME="tex2html1231"
73
+<LI><A NAME="tex2html1233"
74 74
   HREF="node53.html">ClamCour</A>
75
-<LI><A NAME="tex2html1232"
75
+<LI><A NAME="tex2html1234"
76 76
   HREF="node54.html">clamfilter</A>
77
-<LI><A NAME="tex2html1233"
77
+<LI><A NAME="tex2html1235"
78 78
   HREF="node55.html">ClamSMTP</A>
79
-<LI><A NAME="tex2html1234"
79
+<LI><A NAME="tex2html1236"
80 80
   HREF="node56.html">clapf</A>
81
-<LI><A NAME="tex2html1235"
81
+<LI><A NAME="tex2html1237"
82 82
   HREF="node57.html">DSpamPD</A>
83
-<LI><A NAME="tex2html1236"
83
+<LI><A NAME="tex2html1238"
84 84
   HREF="node58.html">exiscan</A>
85
-<LI><A NAME="tex2html1237"
85
+<LI><A NAME="tex2html1239"
86 86
   HREF="node59.html">Gadoyanvirus</A>
87
-<LI><A NAME="tex2html1238"
87
+<LI><A NAME="tex2html1240"
88 88
   HREF="node60.html">hMailServer</A>
89
-<LI><A NAME="tex2html1239"
89
+<LI><A NAME="tex2html1241"
90 90
   HREF="node61.html">IVS Milter</A>
91
-<LI><A NAME="tex2html1240"
91
+<LI><A NAME="tex2html1242"
92 92
   HREF="node62.html">j-chkmail</A>
93
-<LI><A NAME="tex2html1241"
93
+<LI><A NAME="tex2html1243"
94 94
   HREF="node63.html">Mail Avenger</A>
95
-<LI><A NAME="tex2html1242"
95
+<LI><A NAME="tex2html1244"
96 96
   HREF="node64.html">Mailnees</A>
97
-<LI><A NAME="tex2html1243"
97
+<LI><A NAME="tex2html1245"
98 98
   HREF="node65.html">MailScanner</A>
99
-<LI><A NAME="tex2html1244"
99
+<LI><A NAME="tex2html1246"
100 100
   HREF="node66.html">Maverix</A>
101
-<LI><A NAME="tex2html1245"
101
+<LI><A NAME="tex2html1247"
102 102
   HREF="node67.html">MIMEDefang</A>
103
-<LI><A NAME="tex2html1246"
103
+<LI><A NAME="tex2html1248"
104 104
   HREF="node68.html">mxGuard for IMail</A>
105
-<LI><A NAME="tex2html1247"
105
+<LI><A NAME="tex2html1249"
106 106
   HREF="node69.html">OdeiaVir</A>
107
-<LI><A NAME="tex2html1248"
107
+<LI><A NAME="tex2html1250"
108 108
   HREF="node70.html">OpenProtect</A>
109
-<LI><A NAME="tex2html1249"
109
+<LI><A NAME="tex2html1251"
110 110
   HREF="node71.html">Protea AntiVirus Tools</A>
111
-<LI><A NAME="tex2html1250"
111
+<LI><A NAME="tex2html1252"
112 112
   HREF="node72.html">PTSMail Utilities</A>
113
-<LI><A NAME="tex2html1251"
113
+<LI><A NAME="tex2html1253"
114 114
   HREF="node73.html">pymavis</A>
115
-<LI><A NAME="tex2html1252"
115
+<LI><A NAME="tex2html1254"
116 116
   HREF="node74.html">Qmail-Scanner</A>
117
-<LI><A NAME="tex2html1253"
117
+<LI><A NAME="tex2html1255"
118 118
   HREF="node75.html">qpsmtp</A>
119
-<LI><A NAME="tex2html1254"
119
+<LI><A NAME="tex2html1256"
120 120
   HREF="node76.html">qscanq</A>
121
-<LI><A NAME="tex2html1255"
121
+<LI><A NAME="tex2html1257"
122 122
   HREF="node77.html">qSheff</A>
123
-<LI><A NAME="tex2html1256"
123
+<LI><A NAME="tex2html1258"
124 124
   HREF="node78.html">RevolSys SMTP kit for Postfix</A>
125
-<LI><A NAME="tex2html1257"
125
+<LI><A NAME="tex2html1259"
126 126
   HREF="node79.html">Sagator</A>
127
-<LI><A NAME="tex2html1258"
127
+<LI><A NAME="tex2html1260"
128 128
   HREF="node80.html">Scrubber</A>
129
-<LI><A NAME="tex2html1259"
129
+<LI><A NAME="tex2html1261"
130 130
   HREF="node81.html">Secure Mail Intelligence!</A>
131
-<LI><A NAME="tex2html1260"
131
+<LI><A NAME="tex2html1262"
132 132
   HREF="node82.html">simscan</A>
133
-<LI><A NAME="tex2html1261"
133
+<LI><A NAME="tex2html1263"
134 134
   HREF="node83.html">SmarterMail Filter</A>
135
-<LI><A NAME="tex2html1262"
135
+<LI><A NAME="tex2html1264"
136 136
   HREF="node84.html">smf-clamd</A>
137
-<LI><A NAME="tex2html1263"
137
+<LI><A NAME="tex2html1265"
138 138
   HREF="node85.html">smtpfilter</A>
139
-<LI><A NAME="tex2html1264"
139
+<LI><A NAME="tex2html1266"
140 140
   HREF="node86.html">smtp-vilter</A>
141
-<LI><A NAME="tex2html1265"
141
+<LI><A NAME="tex2html1267"
142 142
   HREF="node87.html">Zabit</A>
143
-<LI><A NAME="tex2html1266"
143
+<LI><A NAME="tex2html1268"
144 144
   HREF="node88.html">zmscanner</A>
145 145
 </UL>
146 146
 <!--End of Table of Child-Links-->
147 147
 <BR><HR>
148 148
 <ADDRESS>
149 149
 Tomasz Kojm
150
-2005-06-23
150
+2005-07-25
151 151
 </ADDRESS>
152 152
 </BODY>
153 153
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1277"
30
+<A NAME="tex2html1279"
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="tex2html1273"
33
+<A NAME="tex2html1275"
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="tex2html1267"
36
+<A NAME="tex2html1269"
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="tex2html1275"
39
+<A NAME="tex2html1277"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1278"
43
+<B> Next:</B> <A NAME="tex2html1280"
44 44
   HREF="node50.html">AMaViS - "Next Generation"</A>
45
-<B> Up:</B> <A NAME="tex2html1274"
45
+<B> Up:</B> <A NAME="tex2html1276"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1268"
47
+<B> Previous:</B> <A NAME="tex2html1270"
48 48
   HREF="node48.html">MTA + ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html1276"
49
+ &nbsp <B>  <A NAME="tex2html1278"
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
-2005-06-23
74
+2005-07-25
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="tex2html578"
29
+<A NAME="tex2html580"
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="tex2html574"
32
+<A NAME="tex2html576"
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="tex2html570"
35
+<A NAME="tex2html572"
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="tex2html576"
38
+<A NAME="tex2html578"
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="tex2html579"
42
+<B> Next:</B> <A NAME="tex2html581"
43 43
   HREF="node6.html">Base package</A>
44
-<B> Up:</B> <A NAME="tex2html575"
44
+<B> Up:</B> <A NAME="tex2html577"
45 45
   HREF="node2.html">Introduction</A>
46
-<B> Previous:</B> <A NAME="tex2html571"
46
+<B> Previous:</B> <A NAME="tex2html573"
47 47
   HREF="node4.html">Mailing lists</A>
48
- &nbsp <B>  <A NAME="tex2html577"
48
+ &nbsp <B>  <A NAME="tex2html579"
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
-2005-06-23
73
+2005-07-25
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="tex2html1289"
30
+<A NAME="tex2html1291"
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="tex2html1285"
33
+<A NAME="tex2html1287"
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="tex2html1279"
36
+<A NAME="tex2html1281"
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="tex2html1287"
39
+<A NAME="tex2html1289"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1290"
43
+<B> Next:</B> <A NAME="tex2html1292"
44 44
   HREF="node51.html">ClamdMail</A>
45
-<B> Up:</B> <A NAME="tex2html1286"
45
+<B> Up:</B> <A NAME="tex2html1288"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1280"
47
+<B> Previous:</B> <A NAME="tex2html1282"
48 48
   HREF="node49.html">amavisd-new</A>
49
- &nbsp <B>  <A NAME="tex2html1288"
49
+ &nbsp <B>  <A NAME="tex2html1290"
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
-2005-06-23
84
+2005-07-25
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="tex2html1301"
30
+<A NAME="tex2html1303"
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="tex2html1297"
33
+<A NAME="tex2html1299"
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="tex2html1291"
36
+<A NAME="tex2html1293"
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="tex2html1299"
39
+<A NAME="tex2html1301"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1302"
43
+<B> Next:</B> <A NAME="tex2html1304"
44 44
   HREF="node52.html">cgpav</A>
45
-<B> Up:</B> <A NAME="tex2html1298"
45
+<B> Up:</B> <A NAME="tex2html1300"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1292"
47
+<B> Previous:</B> <A NAME="tex2html1294"
48 48
   HREF="node50.html">AMaViS - "Next Generation"</A>
49
- &nbsp <B>  <A NAME="tex2html1300"
49
+ &nbsp <B>  <A NAME="tex2html1302"
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
-2005-06-23
68
+2005-07-25
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="tex2html1313"
30
+<A NAME="tex2html1315"
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="tex2html1309"
33
+<A NAME="tex2html1311"
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="tex2html1303"
36
+<A NAME="tex2html1305"
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="tex2html1311"
39
+<A NAME="tex2html1313"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1314"
43
+<B> Next:</B> <A NAME="tex2html1316"
44 44
   HREF="node53.html">ClamCour</A>
45
-<B> Up:</B> <A NAME="tex2html1310"
45
+<B> Up:</B> <A NAME="tex2html1312"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1304"
47
+<B> Previous:</B> <A NAME="tex2html1306"
48 48
   HREF="node51.html">ClamdMail</A>
49
- &nbsp <B>  <A NAME="tex2html1312"
49
+ &nbsp <B>  <A NAME="tex2html1314"
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
-2005-06-23
69
+2005-07-25
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="tex2html1325"
30
+<A NAME="tex2html1327"
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="tex2html1321"
33
+<A NAME="tex2html1323"
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="tex2html1315"
36
+<A NAME="tex2html1317"
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="tex2html1323"
39
+<A NAME="tex2html1325"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1326"
43
+<B> Next:</B> <A NAME="tex2html1328"
44 44
   HREF="node54.html">clamfilter</A>
45
-<B> Up:</B> <A NAME="tex2html1322"
45
+<B> Up:</B> <A NAME="tex2html1324"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1316"
47
+<B> Previous:</B> <A NAME="tex2html1318"
48 48
   HREF="node52.html">cgpav</A>
49
- &nbsp <B>  <A NAME="tex2html1324"
49
+ &nbsp <B>  <A NAME="tex2html1326"
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
-2005-06-23
69
+2005-07-25
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="tex2html1337"
30
+<A NAME="tex2html1339"
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="tex2html1333"
33
+<A NAME="tex2html1335"
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="tex2html1327"
36
+<A NAME="tex2html1329"
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="tex2html1335"
39
+<A NAME="tex2html1337"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1338"
43
+<B> Next:</B> <A NAME="tex2html1340"
44 44
   HREF="node55.html">ClamSMTP</A>
45
-<B> Up:</B> <A NAME="tex2html1334"
45
+<B> Up:</B> <A NAME="tex2html1336"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1328"
47
+<B> Previous:</B> <A NAME="tex2html1330"
48 48
   HREF="node53.html">ClamCour</A>
49
- &nbsp <B>  <A NAME="tex2html1336"
49
+ &nbsp <B>  <A NAME="tex2html1338"
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
-2005-06-23
69
+2005-07-25
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="tex2html1349"
30
+<A NAME="tex2html1351"
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="tex2html1345"
33
+<A NAME="tex2html1347"
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="tex2html1339"
36
+<A NAME="tex2html1341"
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="tex2html1347"
39
+<A NAME="tex2html1349"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1350"
43
+<B> Next:</B> <A NAME="tex2html1352"
44 44
   HREF="node56.html">clapf</A>
45
-<B> Up:</B> <A NAME="tex2html1346"
45
+<B> Up:</B> <A NAME="tex2html1348"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1340"
47
+<B> Previous:</B> <A NAME="tex2html1342"
48 48
   HREF="node54.html">clamfilter</A>
49
- &nbsp <B>  <A NAME="tex2html1348"
49
+ &nbsp <B>  <A NAME="tex2html1350"
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
-2005-06-23
70
+2005-07-25
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="tex2html1361"
30
+<A NAME="tex2html1363"
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="tex2html1357"
33
+<A NAME="tex2html1359"
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="tex2html1351"
36
+<A NAME="tex2html1353"
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="tex2html1359"
39
+<A NAME="tex2html1361"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1362"
43
+<B> Next:</B> <A NAME="tex2html1364"
44 44
   HREF="node57.html">DSpamPD</A>
45
-<B> Up:</B> <A NAME="tex2html1358"
45
+<B> Up:</B> <A NAME="tex2html1360"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1352"
47
+<B> Previous:</B> <A NAME="tex2html1354"
48 48
   HREF="node55.html">ClamSMTP</A>
49
- &nbsp <B>  <A NAME="tex2html1360"
49
+ &nbsp <B>  <A NAME="tex2html1362"
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
-2005-06-23
69
+2005-07-25
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="tex2html1373"
30
+<A NAME="tex2html1375"
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="tex2html1369"
33
+<A NAME="tex2html1371"
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="tex2html1363"
36
+<A NAME="tex2html1365"
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="tex2html1371"
39
+<A NAME="tex2html1373"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1374"
43
+<B> Next:</B> <A NAME="tex2html1376"
44 44
   HREF="node58.html">exiscan</A>
45
-<B> Up:</B> <A NAME="tex2html1370"
45
+<B> Up:</B> <A NAME="tex2html1372"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1364"
47
+<B> Previous:</B> <A NAME="tex2html1366"
48 48
   HREF="node56.html">clapf</A>
49
- &nbsp <B>  <A NAME="tex2html1372"
49
+ &nbsp <B>  <A NAME="tex2html1374"
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
-2005-06-23
70
+2005-07-25
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="tex2html1385"
30
+<A NAME="tex2html1387"
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="tex2html1381"
33
+<A NAME="tex2html1383"
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="tex2html1375"
36
+<A NAME="tex2html1377"
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="tex2html1383"
39
+<A NAME="tex2html1385"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1386"
43
+<B> Next:</B> <A NAME="tex2html1388"
44 44
   HREF="node59.html">Gadoyanvirus</A>
45
-<B> Up:</B> <A NAME="tex2html1382"
45
+<B> Up:</B> <A NAME="tex2html1384"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1376"
47
+<B> Previous:</B> <A NAME="tex2html1378"
48 48
   HREF="node57.html">DSpamPD</A>
49
- &nbsp <B>  <A NAME="tex2html1384"
49
+ &nbsp <B>  <A NAME="tex2html1386"
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
-2005-06-23
71
+2005-07-25
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="tex2html1397"
30
+<A NAME="tex2html1399"
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="tex2html1393"
33
+<A NAME="tex2html1395"
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="tex2html1387"
36
+<A NAME="tex2html1389"
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="tex2html1395"
39
+<A NAME="tex2html1397"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1398"
43
+<B> Next:</B> <A NAME="tex2html1400"
44 44
   HREF="node60.html">hMailServer</A>
45
-<B> Up:</B> <A NAME="tex2html1394"
45
+<B> Up:</B> <A NAME="tex2html1396"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1388"
47
+<B> Previous:</B> <A NAME="tex2html1390"
48 48
   HREF="node58.html">exiscan</A>
49
- &nbsp <B>  <A NAME="tex2html1396"
49
+ &nbsp <B>  <A NAME="tex2html1398"
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
-2005-06-23
72
+2005-07-25
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="tex2html590"
30
+<A NAME="tex2html592"
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="tex2html586"
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="tex2html580"
36
+<A NAME="tex2html582"
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="tex2html588"
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="tex2html591"
43
+<B> Next:</B> <A NAME="tex2html593"
44 44
   HREF="node7.html">Supported platforms</A>
45
-<B> Up:</B> <A NAME="tex2html587"
45
+<B> Up:</B> <A NAME="tex2html589"
46 46
   HREF="clamdoc.html">clamdoc</A>
47
-<B> Previous:</B> <A NAME="tex2html581"
47
+<B> Previous:</B> <A NAME="tex2html583"
48 48
   HREF="node5.html">Virus submitting</A>
49
- &nbsp <B>  <A NAME="tex2html589"
49
+ &nbsp <B>  <A NAME="tex2html591"
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="tex2html592"
65
+<LI><A NAME="tex2html594"
66 66
   HREF="node7.html">Supported platforms</A>
67
-<LI><A NAME="tex2html593"
67
+<LI><A NAME="tex2html595"
68 68
   HREF="node8.html">Binary packages</A>
69
-<LI><A NAME="tex2html594"
69
+<LI><A NAME="tex2html596"
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
-2005-06-23
76
+2005-07-25
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="tex2html1409"
30
+<A NAME="tex2html1411"
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="tex2html1405"
33
+<A NAME="tex2html1407"
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="tex2html1399"
36
+<A NAME="tex2html1401"
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="tex2html1407"
39
+<A NAME="tex2html1409"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1410"
43
+<B> Next:</B> <A NAME="tex2html1412"
44 44
   HREF="node61.html">IVS Milter</A>
45
-<B> Up:</B> <A NAME="tex2html1406"
45
+<B> Up:</B> <A NAME="tex2html1408"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1400"
47
+<B> Previous:</B> <A NAME="tex2html1402"
48 48
   HREF="node59.html">Gadoyanvirus</A>
49
- &nbsp <B>  <A NAME="tex2html1408"
49
+ &nbsp <B>  <A NAME="tex2html1410"
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
-2005-06-23
73
+2005-07-25
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="tex2html1421"
30
+<A NAME="tex2html1423"
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="tex2html1417"
33
+<A NAME="tex2html1419"
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="tex2html1411"
36
+<A NAME="tex2html1413"
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="tex2html1419"
39
+<A NAME="tex2html1421"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1422"
43
+<B> Next:</B> <A NAME="tex2html1424"
44 44
   HREF="node62.html">j-chkmail</A>
45
-<B> Up:</B> <A NAME="tex2html1418"
45
+<B> Up:</B> <A NAME="tex2html1420"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1412"
47
+<B> Previous:</B> <A NAME="tex2html1414"
48 48
   HREF="node60.html">hMailServer</A>
49
- &nbsp <B>  <A NAME="tex2html1420"
49
+ &nbsp <B>  <A NAME="tex2html1422"
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
-2005-06-23
70
+2005-07-25
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="tex2html1433"
30
+<A NAME="tex2html1435"
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="tex2html1429"
33
+<A NAME="tex2html1431"
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="tex2html1423"
36
+<A NAME="tex2html1425"
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="tex2html1431"
39
+<A NAME="tex2html1433"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1434"
43
+<B> Next:</B> <A NAME="tex2html1436"
44 44
   HREF="node63.html">Mail Avenger</A>
45
-<B> Up:</B> <A NAME="tex2html1430"
45
+<B> Up:</B> <A NAME="tex2html1432"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1424"
47
+<B> Previous:</B> <A NAME="tex2html1426"
48 48
   HREF="node61.html">IVS Milter</A>
49
- &nbsp <B>  <A NAME="tex2html1432"
49
+ &nbsp <B>  <A NAME="tex2html1434"
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
-2005-06-23
72
+2005-07-25
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="tex2html1445"
30
+<A NAME="tex2html1447"
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="tex2html1441"
33
+<A NAME="tex2html1443"
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="tex2html1435"
36
+<A NAME="tex2html1437"
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="tex2html1443"
39
+<A NAME="tex2html1445"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1446"
43
+<B> Next:</B> <A NAME="tex2html1448"
44 44
   HREF="node64.html">Mailnees</A>
45
-<B> Up:</B> <A NAME="tex2html1442"
45
+<B> Up:</B> <A NAME="tex2html1444"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1436"
47
+<B> Previous:</B> <A NAME="tex2html1438"
48 48
   HREF="node62.html">j-chkmail</A>
49
- &nbsp <B>  <A NAME="tex2html1444"
49
+ &nbsp <B>  <A NAME="tex2html1446"
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
-2005-06-23
72
+2005-07-25
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="tex2html1457"
30
+<A NAME="tex2html1459"
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="tex2html1453"
33
+<A NAME="tex2html1455"
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="tex2html1447"
36
+<A NAME="tex2html1449"
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="tex2html1455"
39
+<A NAME="tex2html1457"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1458"
43
+<B> Next:</B> <A NAME="tex2html1460"
44 44
   HREF="node65.html">MailScanner</A>
45
-<B> Up:</B> <A NAME="tex2html1454"
45
+<B> Up:</B> <A NAME="tex2html1456"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1448"
47
+<B> Previous:</B> <A NAME="tex2html1450"
48 48
   HREF="node63.html">Mail Avenger</A>
49
- &nbsp <B>  <A NAME="tex2html1456"
49
+ &nbsp <B>  <A NAME="tex2html1458"
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
-2005-06-23
68
+2005-07-25
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="tex2html1469"
30
+<A NAME="tex2html1471"
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="tex2html1465"
33
+<A NAME="tex2html1467"
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="tex2html1459"
36
+<A NAME="tex2html1461"
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="tex2html1467"
39
+<A NAME="tex2html1469"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1470"
43
+<B> Next:</B> <A NAME="tex2html1472"
44 44
   HREF="node66.html">Maverix</A>
45
-<B> Up:</B> <A NAME="tex2html1466"
45
+<B> Up:</B> <A NAME="tex2html1468"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1460"
47
+<B> Previous:</B> <A NAME="tex2html1462"
48 48
   HREF="node64.html">Mailnees</A>
49
- &nbsp <B>  <A NAME="tex2html1468"
49
+ &nbsp <B>  <A NAME="tex2html1470"
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
-2005-06-23
71
+2005-07-25
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="tex2html1481"
30
+<A NAME="tex2html1483"
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="tex2html1477"
33
+<A NAME="tex2html1479"
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="tex2html1471"
36
+<A NAME="tex2html1473"
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="tex2html1479"
39
+<A NAME="tex2html1481"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1482"
43
+<B> Next:</B> <A NAME="tex2html1484"
44 44
   HREF="node67.html">MIMEDefang</A>
45
-<B> Up:</B> <A NAME="tex2html1478"
45
+<B> Up:</B> <A NAME="tex2html1480"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1472"
47
+<B> Previous:</B> <A NAME="tex2html1474"
48 48
   HREF="node65.html">MailScanner</A>
49
- &nbsp <B>  <A NAME="tex2html1480"
49
+ &nbsp <B>  <A NAME="tex2html1482"
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
-2005-06-23
69
+2005-07-25
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="tex2html1493"
30
+<A NAME="tex2html1495"
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="tex2html1489"
33
+<A NAME="tex2html1491"
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="tex2html1483"
36
+<A NAME="tex2html1485"
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="tex2html1491"
39
+<A NAME="tex2html1493"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1494"
43
+<B> Next:</B> <A NAME="tex2html1496"
44 44
   HREF="node68.html">mxGuard for IMail</A>
45
-<B> Up:</B> <A NAME="tex2html1490"
45
+<B> Up:</B> <A NAME="tex2html1492"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1484"
47
+<B> Previous:</B> <A NAME="tex2html1486"
48 48
   HREF="node66.html">Maverix</A>
49
- &nbsp <B>  <A NAME="tex2html1492"
49
+ &nbsp <B>  <A NAME="tex2html1494"
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
-2005-06-23
68
+2005-07-25
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="tex2html1505"
30
+<A NAME="tex2html1507"
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="tex2html1501"
33
+<A NAME="tex2html1503"
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="tex2html1495"
36
+<A NAME="tex2html1497"
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="tex2html1503"
39
+<A NAME="tex2html1505"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1506"
43
+<B> Next:</B> <A NAME="tex2html1508"
44 44
   HREF="node69.html">OdeiaVir</A>
45
-<B> Up:</B> <A NAME="tex2html1502"
45
+<B> Up:</B> <A NAME="tex2html1504"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1496"
47
+<B> Previous:</B> <A NAME="tex2html1498"
48 48
   HREF="node67.html">MIMEDefang</A>
49
- &nbsp <B>  <A NAME="tex2html1504"
49
+ &nbsp <B>  <A NAME="tex2html1506"
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
-2005-06-23
70
+2005-07-25
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="tex2html1517"
30
+<A NAME="tex2html1519"
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="tex2html1513"
33
+<A NAME="tex2html1515"
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="tex2html1507"
36
+<A NAME="tex2html1509"
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="tex2html1515"
39
+<A NAME="tex2html1517"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1518"
43
+<B> Next:</B> <A NAME="tex2html1520"
44 44
   HREF="node70.html">OpenProtect</A>
45
-<B> Up:</B> <A NAME="tex2html1514"
45
+<B> Up:</B> <A NAME="tex2html1516"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1508"
47
+<B> Previous:</B> <A NAME="tex2html1510"
48 48
   HREF="node68.html">mxGuard for IMail</A>
49
- &nbsp <B>  <A NAME="tex2html1516"
49
+ &nbsp <B>  <A NAME="tex2html1518"
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
-2005-06-23
68
+2005-07-25
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="tex2html605"
30
+<A NAME="tex2html607"
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="tex2html601"
33
+<A NAME="tex2html603"
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="tex2html595"
36
+<A NAME="tex2html597"
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="tex2html603"
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="tex2html606"
43
+<B> Next:</B> <A NAME="tex2html608"
44 44
   HREF="node8.html">Binary packages</A>
45
-<B> Up:</B> <A NAME="tex2html602"
45
+<B> Up:</B> <A NAME="tex2html604"
46 46
   HREF="node6.html">Base package</A>
47
-<B> Previous:</B> <A NAME="tex2html596"
47
+<B> Previous:</B> <A NAME="tex2html598"
48 48
   HREF="node6.html">Base package</A>
49
- &nbsp <B>  <A NAME="tex2html604"
49
+ &nbsp <B>  <A NAME="tex2html606"
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
-2005-06-23
99
+2005-07-25
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="tex2html1529"
30
+<A NAME="tex2html1531"
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="tex2html1525"
33
+<A NAME="tex2html1527"
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="tex2html1519"
36
+<A NAME="tex2html1521"
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="tex2html1527"
39
+<A NAME="tex2html1529"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1530"
43
+<B> Next:</B> <A NAME="tex2html1532"
44 44
   HREF="node71.html">Protea AntiVirus Tools</A>
45
-<B> Up:</B> <A NAME="tex2html1526"
45
+<B> Up:</B> <A NAME="tex2html1528"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1520"
47
+<B> Previous:</B> <A NAME="tex2html1522"
48 48
   HREF="node69.html">OdeiaVir</A>
49
- &nbsp <B>  <A NAME="tex2html1528"
49
+ &nbsp <B>  <A NAME="tex2html1530"
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
-2005-06-23
72
+2005-07-25
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="tex2html1541"
30
+<A NAME="tex2html1543"
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="tex2html1537"
33
+<A NAME="tex2html1539"
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="tex2html1531"
36
+<A NAME="tex2html1533"
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="tex2html1539"
39
+<A NAME="tex2html1541"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1542"
43
+<B> Next:</B> <A NAME="tex2html1544"
44 44
   HREF="node72.html">PTSMail Utilities</A>
45
-<B> Up:</B> <A NAME="tex2html1538"
45
+<B> Up:</B> <A NAME="tex2html1540"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1532"
47
+<B> Previous:</B> <A NAME="tex2html1534"
48 48
   HREF="node70.html">OpenProtect</A>
49
- &nbsp <B>  <A NAME="tex2html1540"
49
+ &nbsp <B>  <A NAME="tex2html1542"
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
-2005-06-23
71
+2005-07-25
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="tex2html1553"
30
+<A NAME="tex2html1555"
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="tex2html1549"
33
+<A NAME="tex2html1551"
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="tex2html1543"
36
+<A NAME="tex2html1545"
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="tex2html1551"
39
+<A NAME="tex2html1553"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1554"
43
+<B> Next:</B> <A NAME="tex2html1556"
44 44
   HREF="node73.html">pymavis</A>
45
-<B> Up:</B> <A NAME="tex2html1550"
45
+<B> Up:</B> <A NAME="tex2html1552"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1544"
47
+<B> Previous:</B> <A NAME="tex2html1546"
48 48
   HREF="node71.html">Protea AntiVirus Tools</A>
49
- &nbsp <B>  <A NAME="tex2html1552"
49
+ &nbsp <B>  <A NAME="tex2html1554"
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
-2005-06-23
68
+2005-07-25
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="tex2html1565"
30
+<A NAME="tex2html1567"
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="tex2html1561"
33
+<A NAME="tex2html1563"
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="tex2html1555"
36
+<A NAME="tex2html1557"
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="tex2html1563"
39
+<A NAME="tex2html1565"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1566"
43
+<B> Next:</B> <A NAME="tex2html1568"
44 44
   HREF="node74.html">Qmail-Scanner</A>
45
-<B> Up:</B> <A NAME="tex2html1562"
45
+<B> Up:</B> <A NAME="tex2html1564"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1556"
47
+<B> Previous:</B> <A NAME="tex2html1558"
48 48
   HREF="node72.html">PTSMail Utilities</A>
49
- &nbsp <B>  <A NAME="tex2html1564"
49
+ &nbsp <B>  <A NAME="tex2html1566"
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
-2005-06-23
73
+2005-07-25
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="tex2html1577"
30
+<A NAME="tex2html1579"
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="tex2html1573"
33
+<A NAME="tex2html1575"
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="tex2html1567"
36
+<A NAME="tex2html1569"
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="tex2html1575"
39
+<A NAME="tex2html1577"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1578"
43
+<B> Next:</B> <A NAME="tex2html1580"
44 44
   HREF="node75.html">qpsmtp</A>
45
-<B> Up:</B> <A NAME="tex2html1574"
45
+<B> Up:</B> <A NAME="tex2html1576"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1568"
47
+<B> Previous:</B> <A NAME="tex2html1570"
48 48
   HREF="node73.html">pymavis</A>
49
- &nbsp <B>  <A NAME="tex2html1576"
49
+ &nbsp <B>  <A NAME="tex2html1578"
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
-2005-06-23
69
+2005-07-25
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="tex2html1589"
30
+<A NAME="tex2html1591"
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="tex2html1585"
33
+<A NAME="tex2html1587"
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="tex2html1579"
36
+<A NAME="tex2html1581"
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="tex2html1587"
39
+<A NAME="tex2html1589"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1590"
43
+<B> Next:</B> <A NAME="tex2html1592"
44 44
   HREF="node76.html">qscanq</A>
45
-<B> Up:</B> <A NAME="tex2html1586"
45
+<B> Up:</B> <A NAME="tex2html1588"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1580"
47
+<B> Previous:</B> <A NAME="tex2html1582"
48 48
   HREF="node74.html">Qmail-Scanner</A>
49
- &nbsp <B>  <A NAME="tex2html1588"
49
+ &nbsp <B>  <A NAME="tex2html1590"
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
-2005-06-23
70
+2005-07-25
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="tex2html1601"
30
+<A NAME="tex2html1603"
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="tex2html1597"
33
+<A NAME="tex2html1599"
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="tex2html1591"
36
+<A NAME="tex2html1593"
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="tex2html1599"
39
+<A NAME="tex2html1601"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1602"
43
+<B> Next:</B> <A NAME="tex2html1604"
44 44
   HREF="node77.html">qSheff</A>
45
-<B> Up:</B> <A NAME="tex2html1598"
45
+<B> Up:</B> <A NAME="tex2html1600"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1592"
47
+<B> Previous:</B> <A NAME="tex2html1594"
48 48
   HREF="node75.html">qpsmtp</A>
49
- &nbsp <B>  <A NAME="tex2html1600"
49
+ &nbsp <B>  <A NAME="tex2html1602"
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
-2005-06-23
70
+2005-07-25
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="tex2html1613"
30
+<A NAME="tex2html1615"
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="tex2html1609"
33
+<A NAME="tex2html1611"
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="tex2html1603"
36
+<A NAME="tex2html1605"
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="tex2html1611"
39
+<A NAME="tex2html1613"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1614"
43
+<B> Next:</B> <A NAME="tex2html1616"
44 44
   HREF="node78.html">RevolSys SMTP kit for</A>
45
-<B> Up:</B> <A NAME="tex2html1610"
45
+<B> Up:</B> <A NAME="tex2html1612"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1604"
47
+<B> Previous:</B> <A NAME="tex2html1606"
48 48
   HREF="node76.html">qscanq</A>
49
- &nbsp <B>  <A NAME="tex2html1612"
49
+ &nbsp <B>  <A NAME="tex2html1614"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -59,15 +59,15 @@ qSheff</A>
59 59
   HREF="http://www.enderunix.org/qsheff">http://www.enderunix.org/qsheff</A></TT>
60 60
 <BR>    <B>Supports:</B> clamdscan, clamd
61 61
 <BR>
62
-The tool allows running anti-virus and content filtering software
63
-    simultaneously. Supports ClamAV for virus checking and Zabit for
64
-    content filtering.
62
+The tool allows running anti-virus, body/subject/attachment filtering, user 
63
+    defined white/black lists, and alternative qmail logging. Supports ClamAV
64
+    for virus checking.
65 65
 
66 66
 <P>
67 67
 <BR><HR>
68 68
 <ADDRESS>
69 69
 Tomasz Kojm
70
-2005-06-23
70
+2005-07-25
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="tex2html1625"
30
+<A NAME="tex2html1627"
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="tex2html1621"
33
+<A NAME="tex2html1623"
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="tex2html1615"
36
+<A NAME="tex2html1617"
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="tex2html1623"
39
+<A NAME="tex2html1625"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1626"
43
+<B> Next:</B> <A NAME="tex2html1628"
44 44
   HREF="node79.html">Sagator</A>
45
-<B> Up:</B> <A NAME="tex2html1622"
45
+<B> Up:</B> <A NAME="tex2html1624"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1616"
47
+<B> Previous:</B> <A NAME="tex2html1618"
48 48
   HREF="node77.html">qSheff</A>
49
- &nbsp <B>  <A NAME="tex2html1624"
49
+ &nbsp <B>  <A NAME="tex2html1626"
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
-2005-06-23
70
+2005-07-25
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="tex2html1637"
30
+<A NAME="tex2html1639"
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="tex2html1633"
33
+<A NAME="tex2html1635"
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="tex2html1627"
36
+<A NAME="tex2html1629"
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="tex2html1635"
39
+<A NAME="tex2html1637"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1638"
43
+<B> Next:</B> <A NAME="tex2html1640"
44 44
   HREF="node80.html">Scrubber</A>
45
-<B> Up:</B> <A NAME="tex2html1634"
45
+<B> Up:</B> <A NAME="tex2html1636"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1628"
47
+<B> Previous:</B> <A NAME="tex2html1630"
48 48
   HREF="node78.html">RevolSys SMTP kit for</A>
49
- &nbsp <B>  <A NAME="tex2html1636"
49
+ &nbsp <B>  <A NAME="tex2html1638"
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
-2005-06-23
71
+2005-07-25
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="tex2html617"
30
+<A NAME="tex2html619"
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="tex2html613"
33
+<A NAME="tex2html615"
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="tex2html607"
36
+<A NAME="tex2html609"
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="tex2html615"
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="tex2html618"
43
+<B> Next:</B> <A NAME="tex2html620"
44 44
   HREF="node9.html">Daily built snapshots</A>
45
-<B> Up:</B> <A NAME="tex2html614"
45
+<B> Up:</B> <A NAME="tex2html616"
46 46
   HREF="node6.html">Base package</A>
47
-<B> Previous:</B> <A NAME="tex2html608"
47
+<B> Previous:</B> <A NAME="tex2html610"
48 48
   HREF="node7.html">Supported platforms</A>
49
- &nbsp <B>  <A NAME="tex2html616"
49
+ &nbsp <B>  <A NAME="tex2html618"
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="tex2html617"
237
+<A NAME="tex2html619"
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="tex2html613"
240
+<A NAME="tex2html615"
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="tex2html607"
243
+<A NAME="tex2html609"
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="tex2html615"
246
+<A NAME="tex2html617"
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="tex2html618"
250
+<B> Next:</B> <A NAME="tex2html620"
251 251
   HREF="node9.html">Daily built snapshots</A>
252
-<B> Up:</B> <A NAME="tex2html614"
252
+<B> Up:</B> <A NAME="tex2html616"
253 253
   HREF="node6.html">Base package</A>
254
-<B> Previous:</B> <A NAME="tex2html608"
254
+<B> Previous:</B> <A NAME="tex2html610"
255 255
   HREF="node7.html">Supported platforms</A>
256
- &nbsp <B>  <A NAME="tex2html616"
256
+ &nbsp <B>  <A NAME="tex2html618"
257 257
   HREF="node1.html">Contents</A></B> 
258 258
 <!--End of Navigation Panel-->
259 259
 <ADDRESS>
260 260
 Tomasz Kojm
261
-2005-06-23
261
+2005-07-25
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="tex2html1649"
30
+<A NAME="tex2html1651"
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="tex2html1645"
33
+<A NAME="tex2html1647"
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="tex2html1639"
36
+<A NAME="tex2html1641"
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="tex2html1647"
39
+<A NAME="tex2html1649"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1650"
43
+<B> Next:</B> <A NAME="tex2html1652"
44 44
   HREF="node81.html">Secure Mail Intelligence!</A>
45
-<B> Up:</B> <A NAME="tex2html1646"
45
+<B> Up:</B> <A NAME="tex2html1648"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1640"
47
+<B> Previous:</B> <A NAME="tex2html1642"
48 48
   HREF="node79.html">Sagator</A>
49
- &nbsp <B>  <A NAME="tex2html1648"
49
+ &nbsp <B>  <A NAME="tex2html1650"
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
-2005-06-23
75
+2005-07-25
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="tex2html1661"
30
+<A NAME="tex2html1663"
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="tex2html1657"
33
+<A NAME="tex2html1659"
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="tex2html1651"
36
+<A NAME="tex2html1653"
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="tex2html1659"
39
+<A NAME="tex2html1661"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1662"
43
+<B> Next:</B> <A NAME="tex2html1664"
44 44
   HREF="node82.html">simscan</A>
45
-<B> Up:</B> <A NAME="tex2html1658"
45
+<B> Up:</B> <A NAME="tex2html1660"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1652"
47
+<B> Previous:</B> <A NAME="tex2html1654"
48 48
   HREF="node80.html">Scrubber</A>
49
- &nbsp <B>  <A NAME="tex2html1660"
49
+ &nbsp <B>  <A NAME="tex2html1662"
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
-2005-06-23
79
+2005-07-25
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="tex2html1673"
30
+<A NAME="tex2html1675"
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="tex2html1669"
33
+<A NAME="tex2html1671"
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="tex2html1663"
36
+<A NAME="tex2html1665"
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="tex2html1671"
39
+<A NAME="tex2html1673"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1674"
43
+<B> Next:</B> <A NAME="tex2html1676"
44 44
   HREF="node83.html">SmarterMail Filter</A>
45
-<B> Up:</B> <A NAME="tex2html1670"
45
+<B> Up:</B> <A NAME="tex2html1672"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1664"
47
+<B> Previous:</B> <A NAME="tex2html1666"
48 48
   HREF="node81.html">Secure Mail Intelligence!</A>
49
- &nbsp <B>  <A NAME="tex2html1672"
49
+ &nbsp <B>  <A NAME="tex2html1674"
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
-2005-06-23
70
+2005-07-25
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="tex2html1685"
30
+<A NAME="tex2html1687"
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="tex2html1681"
33
+<A NAME="tex2html1683"
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="tex2html1675"
36
+<A NAME="tex2html1677"
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="tex2html1683"
39
+<A NAME="tex2html1685"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1686"
43
+<B> Next:</B> <A NAME="tex2html1688"
44 44
   HREF="node84.html">smf-clamd</A>
45
-<B> Up:</B> <A NAME="tex2html1682"
45
+<B> Up:</B> <A NAME="tex2html1684"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1676"
47
+<B> Previous:</B> <A NAME="tex2html1678"
48 48
   HREF="node82.html">simscan</A>
49
- &nbsp <B>  <A NAME="tex2html1684"
49
+ &nbsp <B>  <A NAME="tex2html1686"
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
-2005-06-23
69
+2005-07-25
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="tex2html1697"
30
+<A NAME="tex2html1699"
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="tex2html1693"
33
+<A NAME="tex2html1695"
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="tex2html1687"
36
+<A NAME="tex2html1689"
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="tex2html1695"
39
+<A NAME="tex2html1697"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1698"
43
+<B> Next:</B> <A NAME="tex2html1700"
44 44
   HREF="node85.html">smtpfilter</A>
45
-<B> Up:</B> <A NAME="tex2html1694"
45
+<B> Up:</B> <A NAME="tex2html1696"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1688"
47
+<B> Previous:</B> <A NAME="tex2html1690"
48 48
   HREF="node83.html">SmarterMail Filter</A>
49
- &nbsp <B>  <A NAME="tex2html1696"
49
+ &nbsp <B>  <A NAME="tex2html1698"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -55,7 +55,8 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
55 55
 <H3><A NAME="SECTION000913600000000000000">
56 56
 smf-clamd</A>
57 57
 </H3>
58
-    <B>Homepage:</B> <TT></TT>
58
+    <B>Homepage:</B> <TT><A NAME="tex2html86"
59
+  HREF="http://smfs.sourceforge.net/smf-clamd.html">http://smfs.sourceforge.net/smf-clamd.html</A></TT>
59 60
 <BR>    <B>Supports:</B> clamd
60 61
 <BR>
61 62
 SmartSendmailFilter-clamd is a lightweight filter for Sendmail. It's
... ...
@@ -66,7 +67,7 @@ SmartSendmailFilter-clamd is a lightweight filter for Sendmail. It's
66 66
 <BR><HR>
67 67
 <ADDRESS>
68 68
 Tomasz Kojm
69
-2005-06-23
69
+2005-07-25
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="tex2html1709"
30
+<A NAME="tex2html1711"
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="tex2html1705"
33
+<A NAME="tex2html1707"
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="tex2html1699"
36
+<A NAME="tex2html1701"
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="tex2html1707"
39
+<A NAME="tex2html1709"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1710"
43
+<B> Next:</B> <A NAME="tex2html1712"
44 44
   HREF="node86.html">smtp-vilter</A>
45
-<B> Up:</B> <A NAME="tex2html1706"
45
+<B> Up:</B> <A NAME="tex2html1708"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1700"
47
+<B> Previous:</B> <A NAME="tex2html1702"
48 48
   HREF="node84.html">smf-clamd</A>
49
- &nbsp <B>  <A NAME="tex2html1708"
49
+ &nbsp <B>  <A NAME="tex2html1710"
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
-2005-06-23
70
+2005-07-25
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="tex2html1721"
30
+<A NAME="tex2html1723"
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="tex2html1717"
33
+<A NAME="tex2html1719"
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="tex2html1711"
36
+<A NAME="tex2html1713"
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="tex2html1719"
39
+<A NAME="tex2html1721"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1722"
43
+<B> Next:</B> <A NAME="tex2html1724"
44 44
   HREF="node87.html">Zabit</A>
45
-<B> Up:</B> <A NAME="tex2html1718"
45
+<B> Up:</B> <A NAME="tex2html1720"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1712"
47
+<B> Previous:</B> <A NAME="tex2html1714"
48 48
   HREF="node85.html">smtpfilter</A>
49
- &nbsp <B>  <A NAME="tex2html1720"
49
+ &nbsp <B>  <A NAME="tex2html1722"
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
-2005-06-23
71
+2005-07-25
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="tex2html1733"
30
+<A NAME="tex2html1735"
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="tex2html1729"
33
+<A NAME="tex2html1731"
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="tex2html1723"
36
+<A NAME="tex2html1725"
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="tex2html1731"
39
+<A NAME="tex2html1733"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1734"
43
+<B> Next:</B> <A NAME="tex2html1736"
44 44
   HREF="node88.html">zmscanner</A>
45
-<B> Up:</B> <A NAME="tex2html1730"
45
+<B> Up:</B> <A NAME="tex2html1732"
46 46
   HREF="node48.html">MTA + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1724"
47
+<B> Previous:</B> <A NAME="tex2html1726"
48 48
   HREF="node86.html">smtp-vilter</A>
49
- &nbsp <B>  <A NAME="tex2html1732"
49
+ &nbsp <B>  <A NAME="tex2html1734"
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
-2005-06-23
68
+2005-07-25
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="tex2html1743"
29
+<A NAME="tex2html1745"
30 30
   HREF="node89.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html1739"
32
+<A NAME="tex2html1741"
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="tex2html1735"
35
+<A NAME="tex2html1737"
36 36
   HREF="node87.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html1741"
38
+<A NAME="tex2html1743"
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="tex2html1744"
42
+<B> Next:</B> <A NAME="tex2html1746"
43 43
   HREF="node89.html">MTA + POP3 Proxy</A>
44
-<B> Up:</B> <A NAME="tex2html1740"
44
+<B> Up:</B> <A NAME="tex2html1742"
45 45
   HREF="node48.html">MTA + ClamAV</A>
46
-<B> Previous:</B> <A NAME="tex2html1736"
46
+<B> Previous:</B> <A NAME="tex2html1738"
47 47
   HREF="node87.html">Zabit</A>
48
- &nbsp <B>  <A NAME="tex2html1742"
48
+ &nbsp <B>  <A NAME="tex2html1744"
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
-2005-06-23
69
+2005-07-25
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="tex2html1755"
30
+<A NAME="tex2html1757"
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="tex2html1751"
33
+<A NAME="tex2html1753"
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="tex2html1745"
36
+<A NAME="tex2html1747"
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="tex2html1753"
39
+<A NAME="tex2html1755"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1756"
43
+<B> Next:</B> <A NAME="tex2html1758"
44 44
   HREF="node90.html">ClamMail</A>
45
-<B> Up:</B> <A NAME="tex2html1752"
45
+<B> Up:</B> <A NAME="tex2html1754"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html1746"
47
+<B> Previous:</B> <A NAME="tex2html1748"
48 48
   HREF="node88.html">zmscanner</A>
49
- &nbsp <B>  <A NAME="tex2html1754"
49
+ &nbsp <B>  <A NAME="tex2html1756"
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="tex2html1757"
65
+<LI><A NAME="tex2html1759"
66 66
   HREF="node90.html">ClamMail</A>
67
-<LI><A NAME="tex2html1758"
67
+<LI><A NAME="tex2html1760"
68 68
   HREF="node91.html">POP3 Virus Scanner Daemon</A>
69
-<LI><A NAME="tex2html1759"
69
+<LI><A NAME="tex2html1761"
70 70
   HREF="node92.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
-2005-06-23
76
+2005-07-25
77 77
 </ADDRESS>
78 78
 </BODY>
79 79
 </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="tex2html627"
29
+<A NAME="tex2html629"
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="tex2html623"
32
+<A NAME="tex2html625"
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="tex2html619"
35
+<A NAME="tex2html621"
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="tex2html625"
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="tex2html628"
42
+<B> Next:</B> <A NAME="tex2html630"
43 43
   HREF="node10.html">Installation</A>
44
-<B> Up:</B> <A NAME="tex2html624"
44
+<B> Up:</B> <A NAME="tex2html626"
45 45
   HREF="node6.html">Base package</A>
46
-<B> Previous:</B> <A NAME="tex2html620"
46
+<B> Previous:</B> <A NAME="tex2html622"
47 47
   HREF="node8.html">Binary packages</A>
48
- &nbsp <B>  <A NAME="tex2html626"
48
+ &nbsp <B>  <A NAME="tex2html628"
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
-2005-06-23
83
+2005-07-25
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="tex2html1770"
30
+<A NAME="tex2html1772"
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="tex2html1766"
33
+<A NAME="tex2html1768"
34 34
   HREF="node89.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1760"
36
+<A NAME="tex2html1762"
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="tex2html1768"
39
+<A NAME="tex2html1770"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1771"
43
+<B> Next:</B> <A NAME="tex2html1773"
44 44
   HREF="node91.html">POP3 Virus Scanner Daemon</A>
45
-<B> Up:</B> <A NAME="tex2html1767"
45
+<B> Up:</B> <A NAME="tex2html1769"
46 46
   HREF="node89.html">MTA + POP3 Proxy</A>
47
-<B> Previous:</B> <A NAME="tex2html1761"
47
+<B> Previous:</B> <A NAME="tex2html1763"
48 48
   HREF="node89.html">MTA + POP3 Proxy</A>
49
- &nbsp <B>  <A NAME="tex2html1769"
49
+ &nbsp <B>  <A NAME="tex2html1771"
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
-2005-06-23
68
+2005-07-25
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="tex2html1782"
30
+<A NAME="tex2html1784"
31 31
   HREF="node92.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1778"
33
+<A NAME="tex2html1780"
34 34
   HREF="node89.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1772"
36
+<A NAME="tex2html1774"
37 37
   HREF="node90.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1780"
39
+<A NAME="tex2html1782"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1783"
43
+<B> Next:</B> <A NAME="tex2html1785"
44 44
   HREF="node92.html">pop3.proxy</A>
45
-<B> Up:</B> <A NAME="tex2html1779"
45
+<B> Up:</B> <A NAME="tex2html1781"
46 46
   HREF="node89.html">MTA + POP3 Proxy</A>
47
-<B> Previous:</B> <A NAME="tex2html1773"
47
+<B> Previous:</B> <A NAME="tex2html1775"
48 48
   HREF="node90.html">ClamMail</A>
49
- &nbsp <B>  <A NAME="tex2html1781"
49
+ &nbsp <B>  <A NAME="tex2html1783"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -70,7 +70,7 @@ This is a full-transparent proxy-server for POP3-clients. It runs on
70 70
 <BR><HR>
71 71
 <ADDRESS>
72 72
 Tomasz Kojm
73
-2005-06-23
73
+2005-07-25
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="tex2html1792"
29
+<A NAME="tex2html1794"
30 30
   HREF="node93.html">
31 31
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
32
-<A NAME="tex2html1788"
32
+<A NAME="tex2html1790"
33 33
   HREF="node89.html">
34 34
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
35
-<A NAME="tex2html1784"
35
+<A NAME="tex2html1786"
36 36
   HREF="node91.html">
37 37
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
38
-<A NAME="tex2html1790"
38
+<A NAME="tex2html1792"
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="tex2html1793"
42
+<B> Next:</B> <A NAME="tex2html1795"
43 43
   HREF="node93.html">Web/FTP Proxy + ClamAV</A>
44
-<B> Up:</B> <A NAME="tex2html1789"
44
+<B> Up:</B> <A NAME="tex2html1791"
45 45
   HREF="node89.html">MTA + POP3 Proxy</A>
46
-<B> Previous:</B> <A NAME="tex2html1785"
46
+<B> Previous:</B> <A NAME="tex2html1787"
47 47
   HREF="node91.html">POP3 Virus Scanner Daemon</A>
48
- &nbsp <B>  <A NAME="tex2html1791"
48
+ &nbsp <B>  <A NAME="tex2html1793"
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
-2005-06-23
74
+2005-07-25
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="tex2html1804"
30
+<A NAME="tex2html1806"
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="tex2html1800"
33
+<A NAME="tex2html1802"
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="tex2html1794"
36
+<A NAME="tex2html1796"
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="tex2html1802"
39
+<A NAME="tex2html1804"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1805"
43
+<B> Next:</B> <A NAME="tex2html1807"
44 44
   HREF="node94.html">DansGuardian Anti-Virus Patch</A>
45
-<B> Up:</B> <A NAME="tex2html1801"
45
+<B> Up:</B> <A NAME="tex2html1803"
46 46
   HREF="node47.html">Third party software</A>
47
-<B> Previous:</B> <A NAME="tex2html1795"
47
+<B> Previous:</B> <A NAME="tex2html1797"
48 48
   HREF="node92.html">pop3.proxy</A>
49
- &nbsp <B>  <A NAME="tex2html1803"
49
+ &nbsp <B>  <A NAME="tex2html1805"
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="tex2html1806"
65
+<LI><A NAME="tex2html1808"
66 66
   HREF="node94.html">DansGuardian Anti-Virus Patch</A>
67
-<LI><A NAME="tex2html1807"
67
+<LI><A NAME="tex2html1809"
68 68
   HREF="node95.html">Frox</A>
69
-<LI><A NAME="tex2html1808"
69
+<LI><A NAME="tex2html1810"
70 70
   HREF="node96.html">HTTP Anti Virus Proxy</A>
71
-<LI><A NAME="tex2html1809"
71
+<LI><A NAME="tex2html1811"
72 72
   HREF="node97.html">Frox</A>
73
-<LI><A NAME="tex2html1810"
73
+<LI><A NAME="tex2html1812"
74 74
   HREF="node98.html">mod_clamav</A>
75
-<LI><A NAME="tex2html1811"
75
+<LI><A NAME="tex2html1813"
76 76
   HREF="node99.html">SafeSquid</A>
77
-<LI><A NAME="tex2html1812"
77
+<LI><A NAME="tex2html1814"
78 78
   HREF="node100.html">SquidClamAV Redirector</A>
79
-<LI><A NAME="tex2html1813"
79
+<LI><A NAME="tex2html1815"
80 80
   HREF="node101.html">Squidclam</A>
81
-<LI><A NAME="tex2html1814"
81
+<LI><A NAME="tex2html1816"
82 82
   HREF="node102.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
-2005-06-23
88
+2005-07-25
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="tex2html1825"
30
+<A NAME="tex2html1827"
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="tex2html1821"
33
+<A NAME="tex2html1823"
34 34
   HREF="node93.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1815"
36
+<A NAME="tex2html1817"
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="tex2html1823"
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="tex2html1826"
43
+<B> Next:</B> <A NAME="tex2html1828"
44 44
   HREF="node95.html">Frox</A>
45
-<B> Up:</B> <A NAME="tex2html1822"
45
+<B> Up:</B> <A NAME="tex2html1824"
46 46
   HREF="node93.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1816"
47
+<B> Previous:</B> <A NAME="tex2html1818"
48 48
   HREF="node93.html">Web/FTP Proxy + ClamAV</A>
49
- &nbsp <B>  <A NAME="tex2html1824"
49
+ &nbsp <B>  <A NAME="tex2html1826"
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
-2005-06-23
70
+2005-07-25
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="tex2html1837"
30
+<A NAME="tex2html1839"
31 31
   HREF="node96.html">
32 32
 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
33
-<A NAME="tex2html1833"
33
+<A NAME="tex2html1835"
34 34
   HREF="node93.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1827"
36
+<A NAME="tex2html1829"
37 37
   HREF="node94.html">
38 38
 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
39
-<A NAME="tex2html1835"
39
+<A NAME="tex2html1837"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1838"
43
+<B> Next:</B> <A NAME="tex2html1840"
44 44
   HREF="node96.html">HTTP Anti Virus Proxy</A>
45
-<B> Up:</B> <A NAME="tex2html1834"
45
+<B> Up:</B> <A NAME="tex2html1836"
46 46
   HREF="node93.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1828"
47
+<B> Previous:</B> <A NAME="tex2html1830"
48 48
   HREF="node94.html">DansGuardian Anti-Virus Patch</A>
49
- &nbsp <B>  <A NAME="tex2html1836"
49
+ &nbsp <B>  <A NAME="tex2html1838"
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
-2005-06-23
72
+2005-07-25
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="tex2html1849"
30
+<A NAME="tex2html1851"
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="tex2html1845"
33
+<A NAME="tex2html1847"
34 34
   HREF="node93.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1839"
36
+<A NAME="tex2html1841"
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="tex2html1847"
39
+<A NAME="tex2html1849"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1850"
43
+<B> Next:</B> <A NAME="tex2html1852"
44 44
   HREF="node97.html">Frox</A>
45
-<B> Up:</B> <A NAME="tex2html1846"
45
+<B> Up:</B> <A NAME="tex2html1848"
46 46
   HREF="node93.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1840"
47
+<B> Previous:</B> <A NAME="tex2html1842"
48 48
   HREF="node95.html">Frox</A>
49
- &nbsp <B>  <A NAME="tex2html1848"
49
+ &nbsp <B>  <A NAME="tex2html1850"
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
-2005-06-23
71
+2005-07-25
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="tex2html1861"
30
+<A NAME="tex2html1863"
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="tex2html1857"
33
+<A NAME="tex2html1859"
34 34
   HREF="node93.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1851"
36
+<A NAME="tex2html1853"
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="tex2html1859"
39
+<A NAME="tex2html1861"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1862"
43
+<B> Next:</B> <A NAME="tex2html1864"
44 44
   HREF="node98.html">mod_clamav</A>
45
-<B> Up:</B> <A NAME="tex2html1858"
45
+<B> Up:</B> <A NAME="tex2html1860"
46 46
   HREF="node93.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1852"
47
+<B> Previous:</B> <A NAME="tex2html1854"
48 48
   HREF="node96.html">HTTP Anti Virus Proxy</A>
49
- &nbsp <B>  <A NAME="tex2html1860"
49
+ &nbsp <B>  <A NAME="tex2html1862"
50 50
   HREF="node1.html">Contents</A></B> 
51 51
 <BR>
52 52
 <BR>
... ...
@@ -63,7 +63,7 @@ Frox</A>
63 63
 <BR><HR>
64 64
 <ADDRESS>
65 65
 Tomasz Kojm
66
-2005-06-23
66
+2005-07-25
67 67
 </ADDRESS>
68 68
 </BODY>
69 69
 </HTML>
... ...
@@ -27,26 +27,26 @@ original version by:  Nikos Drakos, CBLU, University of Leeds
27 27
 
28 28
 <BODY >
29 29
 <!--Navigation Panel-->
30
-<A NAME="tex2html1873"
30
+<A NAME="tex2html1875"
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="tex2html1869"
33
+<A NAME="tex2html1871"
34 34
   HREF="node93.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1863"
36
+<A NAME="tex2html1865"
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="tex2html1871"
39
+<A NAME="tex2html1873"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1874"
43
+<B> Next:</B> <A NAME="tex2html1876"
44 44
   HREF="node99.html">SafeSquid</A>
45
-<B> Up:</B> <A NAME="tex2html1870"
45
+<B> Up:</B> <A NAME="tex2html1872"
46 46
   HREF="node93.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1864"
47
+<B> Previous:</B> <A NAME="tex2html1866"
48 48
   HREF="node97.html">Frox</A>
49
- &nbsp <B>  <A NAME="tex2html1872"
49
+ &nbsp <B>  <A NAME="tex2html1874"
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
-2005-06-23
69
+2005-07-25
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="tex2html1885"
30
+<A NAME="tex2html1887"
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="tex2html1881"
33
+<A NAME="tex2html1883"
34 34
   HREF="node93.html">
35 35
 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
36
-<A NAME="tex2html1875"
36
+<A NAME="tex2html1877"
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="tex2html1883"
39
+<A NAME="tex2html1885"
40 40
   HREF="node1.html">
41 41
 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>  
42 42
 <BR>
43
-<B> Next:</B> <A NAME="tex2html1886"
43
+<B> Next:</B> <A NAME="tex2html1888"
44 44
   HREF="node100.html">SquidClamAV Redirector</A>
45
-<B> Up:</B> <A NAME="tex2html1882"
45
+<B> Up:</B> <A NAME="tex2html1884"
46 46
   HREF="node93.html">Web/FTP Proxy + ClamAV</A>
47
-<B> Previous:</B> <A NAME="tex2html1876"
47
+<B> Previous:</B> <A NAME="tex2html1878"
48 48
   HREF="node98.html">mod_clamav</A>
49
- &nbsp <B>  <A NAME="tex2html1884"
49
+ &nbsp <B>  <A NAME="tex2html1886"
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
-2005-06-23
78
+2005-07-25
79 79
 </ADDRESS>
80 80
 </BODY>
81 81
 </HTML>
... ...
@@ -1,7 +1,7 @@
1 1
 /*
2 2
  *  Extract component parts of MS CHM files
3 3
  *
4
- *  Copyright (C) 2004 trog@uncon.org
4
+ *  Copyright (C) 2004-2005 trog@uncon.org
5 5
  *
6 6
  *  This program is free software; you can redistribute it and/or modify
7 7
  *  it under the terms of the GNU General Public License as published by
... ...
@@ -480,13 +480,22 @@ static int read_chunk_entries(unsigned char *chunk, uint32_t chunk_len,
480 480
 		file_e->next = NULL;
481 481
 		
482 482
 		name_len = read_enc_int(&current, end);
483
-		file_e->name = (unsigned char *) cli_malloc(name_len+1);
484
-		if (!file_e->name) {
485
-			free(file_e);
486
-			return FALSE;
483
+		if (name_len > 0xFFFFFF) {
484
+			cli_dbgmsg("CHM file name too long: %llu\n", name_len);
485
+			file_e->name = (unsigned char *) strdup("truncated");
486
+	                if (!file_e->name) {
487
+        	                free(file_e);
488
+                	        return FALSE;
489
+                	}
490
+		} else {
491
+			file_e->name = (unsigned char *) cli_malloc(name_len+1);
492
+			if (!file_e->name) {
493
+				free(file_e);
494
+				return FALSE;
495
+			}
496
+			strncpy(file_e->name, current, name_len);
497
+			file_e->name[name_len] = '\0';
487 498
 		}
488
-		strncpy(file_e->name, current, name_len);
489
-		file_e->name[name_len] = '\0';
490 499
 		current += name_len;
491 500
 		file_e->section = read_enc_int(&current, end);
492 501
 		file_e->offset = read_enc_int(&current, end);
... ...
@@ -186,7 +186,7 @@ static int unfsg(char *source, char *dest, int ssize, int dsize, char **endsrc,
186 186
 	}
187 187
 	lostbit = 0;
188 188
       }
189
-      if (cdst-backbytes < dest || cdst+backsize >= dest+dsize)
189
+      if ((backsize >= dest + dsize - cdst) || (backbytes > cdst - dest))
190 190
 	return -1;
191 191
       while(backsize--) {
192 192
 	*cdst=*(cdst-backbytes);
... ...
@@ -188,7 +188,7 @@ static	int	rfc1341(message *m, const char *dir);
188 188
 #endif
189 189
 static	bool	usefulHeader(int commandNumber, const char *cmd);
190 190
 static        int     uufasttrack(message *m, const char *firstline, const char *dir, FILE *fin);
191
-static	char	*getline(char *buffer, size_t len, FILE *fin);
191
+static	char	*getline_from_mbox(char *buffer, size_t len, FILE *fin);
192 192
 #ifdef	NEW_WORLD
193 193
 static	const	char	*cli_pmemstr(const char *haystack, size_t hs, const char *needle, size_t ns);
194 194
 #endif
... ...
@@ -911,7 +911,7 @@ cli_parse_mbox(const char *dir, int desc, unsigned int options)
911 911
 		 * Ignore any blank lines at the top of the message
912 912
 		 */
913 913
 		while(strchr("\r\n", buffer[0]) &&
914
-		     (getline(buffer, sizeof(buffer) - 1, fd) != NULL))
914
+		     (getline_from_mbox(buffer, sizeof(buffer) - 1, fd) != NULL))
915 915
 			;
916 916
 
917 917
 		buffer[sizeof(buffer) - 1] = '\0';
... ...
@@ -1160,7 +1160,7 @@ parseEmailFile(FILE *fin, const table_t *rfc821, const char *firstLine, const ch
1160 1160
 		} else
1161 1161
 			if(messageAddStr(ret, line) < 0)
1162 1162
 				break;
1163
-	} while(getline(buffer, sizeof(buffer) - 1, fin) != NULL);
1163
+	} while(getline_from_mbox(buffer, sizeof(buffer) - 1, fin) != NULL);
1164 1164
 
1165 1165
 	if(fullline) {
1166 1166
 		if(*fullline) switch(commandNumber) {
... ...
@@ -3891,7 +3891,7 @@ uufasttrack(message *m, const char *firstline, const char *dir, FILE *fin)
3891 3891
  * Like fgets but cope with end of line by "\n", "\r\n", "\n\r", "\r"
3892 3892
  */
3893 3893
 static char *
3894
-getline(char *buffer, size_t len, FILE *fin)
3894
+getline_from_mbox(char *buffer, size_t len, FILE *fin)
3895 3895
 {
3896 3896
 	char *ret;
3897 3897
 
... ...
@@ -3899,7 +3899,7 @@ getline(char *buffer, size_t len, FILE *fin)
3899 3899
 		return NULL;
3900 3900
 
3901 3901
 	if((len == 0) || (buffer == NULL)) {
3902
-		cli_errmsg("Invalid call to getline(). Report to bugs@clamav.net\n");
3902
+		cli_errmsg("Invalid call to getline_from_mbox(). Report to bugs@clamav.net\n");
3903 3903
 		return NULL;
3904 3904
 	}
3905 3905
 
... ...
@@ -3935,7 +3935,7 @@ getline(char *buffer, size_t len, FILE *fin)
3935 3935
 
3936 3936
 	if(len == 0) {
3937 3937
 		/* probably, the email breaks RFC821 */
3938
-		cli_dbgmsg("getline: buffer overflow stopped\n");
3938
+		cli_dbgmsg("getline_from_mbox: buffer overflow stopped\n");
3939 3939
 		return NULL;
3940 3940
 	}
3941 3941
 	*buffer = '\0';
... ...
@@ -1264,7 +1264,7 @@ static int cabd_sys_read(struct mspack_file *file, void *buffer, int bytes) {
1264 1264
       /* check if we're out of input blocks, advance block counter */
1265 1265
       if (this->d->block++ >= this->d->folder->base.num_blocks) {
1266 1266
 	this->error = MSPACK_ERR_DATAFORMAT;
1267
-	return -1;
1267
+	break;
1268 1268
       }
1269 1269
 
1270 1270
       /* read a block */
... ...
@@ -95,7 +95,7 @@ static const unsigned short bit_mask[17] = {
95 95
 
96 96
 static int zipd_read_input(struct mszipd_stream *zip) {
97 97
   int read = zip->sys->read(zip->input, &zip->inbuf[0], (int)zip->inbuf_size);
98
-  if (read < 0) return zip->error = MSPACK_ERR_READ;
98
+  if (read <= 0) return zip->error = MSPACK_ERR_READ;
99 99
   zip->i_ptr = &zip->inbuf[0];
100 100
   zip->i_end = &zip->inbuf[read];
101 101
 
... ...
@@ -306,7 +306,7 @@ void *cli_malloc(size_t size)
306 306
 	void *alloc;
307 307
 
308 308
 
309
-    if(size > MAX_ALLOCATION) {
309
+    if(!size || size > MAX_ALLOCATION) {
310 310
 	cli_errmsg("Attempt to allocate %d bytes. Please report to bugs@clamav.net\n", size);
311 311
 	return NULL;
312 312
     }
... ...
@@ -326,7 +326,7 @@ void *cli_calloc(size_t nmemb, size_t size)
326 326
 	void *alloc;
327 327
 
328 328
 
329
-    if(size > MAX_ALLOCATION) {
329
+    if(!size || size > MAX_ALLOCATION) {
330 330
 	cli_errmsg("Attempt to allocate %d bytes. Please report to bugs@clamav.net\n", size);
331 331
 	return NULL;
332 332
     }
... ...
@@ -346,6 +346,11 @@ void *cli_realloc(void *ptr, size_t size)
346 346
 	void *alloc;
347 347
 
348 348
 
349
+    if(!size || size > MAX_ALLOCATION) {
350
+	cli_errmsg("Attempt to allocate %d bytes. Please report to bugs@clamav.net\n", size);
351
+	return NULL;
352
+    }
353
+
349 354
     alloc = realloc(ptr, size);
350 355
 
351 356
     if(!alloc) {
... ...
@@ -449,6 +454,11 @@ int cli_rmdirs(const char *dirname)
449 449
     if((dd = opendir(dirname)) != NULL) {
450 450
 	while(stat(dirname, &maind) != -1) {
451 451
 	    if(!rmdir(dirname)) break;
452
+	    if(errno != ENOTEMPTY && errno != EEXIST) {
453
+		cli_errmsg("Can't remove temporary directory %s: %s\n", dirname, strerror(errno));
454
+		closedir(dd);
455
+		return 0;
456
+	    }
452 457
 
453 458
 #ifdef HAVE_READDIR_R_3
454 459
 	    while(!readdir_r(dd, &result.d, &dent) && dent) {
... ...
@@ -1237,7 +1237,7 @@ int cli_scanpe(int desc, const char **virname, long int *scanned, const struct c
1237 1237
 	    if(cli_leavetemps_flag)
1238 1238
 		cli_dbgmsg("UPX/FSG: Decompressed data saved in %s\n", tempfile);
1239 1239
 
1240
-	    cli_dbgmsg("***** Scanning rebuilt PE file *****\n");
1240
+	    cli_dbgmsg("***** Scanning decompressed data *****\n");
1241 1241
 	    if((ret = cli_magic_scandesc(ndesc, virname, scanned, root, limits, options, arec, mrec)) == CL_VIRUS) {
1242 1242
 		close(ndesc);
1243 1243
 		if(!cli_leavetemps_flag)
... ...
@@ -1369,6 +1369,7 @@ int cli_peheader(int desc, struct cli_pe_info *peinfo)
1369 1369
 {
1370 1370
 	uint16_t e_magic; /* DOS signature ("MZ") */
1371 1371
 	uint32_t e_lfanew; /* address of new exe header */
1372
+	uint32_t min, max;
1372 1373
 	struct pe_image_file_hdr file_hdr;
1373 1374
 	struct pe_image_optional_hdr optional_hdr;
1374 1375
 	struct pe_image_section_hdr *section_hdr;
... ...
@@ -1467,11 +1468,20 @@ int cli_peheader(int desc, struct cli_pe_info *peinfo)
1467 1467
 	peinfo->section[i].vsz = EC32(section_hdr[i].VirtualSize);
1468 1468
 	peinfo->section[i].raw = EC32(section_hdr[i].PointerToRawData);
1469 1469
 	peinfo->section[i].rsz = EC32(section_hdr[i].SizeOfRawData);
1470
-    }
1471 1470
 
1472
-    peinfo->ep = cli_rawaddr(EC32(optional_hdr.AddressOfEntryPoint), section_hdr, peinfo->nsections, &err);
1471
+	if(!i) {
1472
+	    min = EC32(section_hdr[i].VirtualAddress);
1473
+	    max = EC32(section_hdr[i].VirtualAddress) + EC32(section_hdr[i].SizeOfRawData);
1474
+	} else {
1475
+	    if(EC32(section_hdr[i].VirtualAddress) < min)
1476
+		min = EC32(section_hdr[i].VirtualAddress);
1477
+
1478
+	    if(EC32(section_hdr[i].VirtualAddress) + EC32(section_hdr[i].SizeOfRawData) > max)
1479
+		max = EC32(section_hdr[i].VirtualAddress) + EC32(section_hdr[i].SizeOfRawData);
1480
+	}
1481
+    }
1473 1482
 
1474
-    if(err) {
1483
+    if((peinfo->ep = EC32(optional_hdr.AddressOfEntryPoint)) >= min && !(peinfo->ep = cli_rawaddr(EC32(optional_hdr.AddressOfEntryPoint), section_hdr, peinfo->nsections, &err)) && err) {
1475 1484
 	cli_dbgmsg("Possibly broken PE file\n");
1476 1485
 	free(section_hdr);
1477 1486
 	free(peinfo->section);
... ...
@@ -24,7 +24,7 @@
24 24
 #include "clamav-config.h"
25 25
 #endif
26 26
 
27
-static	char	const	rcsid[] = "$Id: tnef.c,v 1.24 2005/05/18 20:55:59 nigelhorne Exp $";
27
+static	char	const	rcsid[] = "$Id: tnef.c,v 1.26 2005/07/11 15:01:40 nigelhorne Exp $";
28 28
 
29 29
 #include <stdio.h>
30 30
 #include <fcntl.h>
... ...
@@ -38,9 +38,9 @@ static	char	const	rcsid[] = "$Id: tnef.c,v 1.24 2005/05/18 20:55:59 nigelhorne E
38 38
 #endif
39 39
 #include "blob.h"
40 40
 
41
-static	int	tnef_message(FILE *fp, uint16_t type, uint16_t tag, uint32_t length);
42
-static	int	tnef_attachment(FILE *fp, uint16_t type, uint16_t tag, uint32_t length, const char *dir, fileblob **fbref);
43
-static	int	tnef_header(FILE *fp, uint8_t *part, uint16_t *type, uint16_t *tag, uint32_t *length);
41
+static	int	tnef_message(FILE *fp, uint16_t type, uint16_t tag, int32_t length);
42
+static	int	tnef_attachment(FILE *fp, uint16_t type, uint16_t tag, int32_t length, const char *dir, fileblob **fbref);
43
+static	int	tnef_header(FILE *fp, uint8_t *part, uint16_t *type, uint16_t *tag, int32_t *length);
44 44
 
45 45
 #define	TNEF_SIGNATURE	0x223E9f78
46 46
 #define	LVL_MESSAGE	0x01
... ...
@@ -104,7 +104,7 @@ cli_tnef(const char *dir, int desc)
104 104
 	do {
105 105
 		uint8_t part;
106 106
 		uint16_t type, tag;
107
-		uint32_t length;
107
+		int32_t length;
108 108
 
109 109
 		switch(tnef_header(fp, &part, &type, &tag, &length)) {
110 110
 			case 0:
... ...
@@ -183,6 +183,8 @@ cli_tnef(const char *dir, int desc)
183 183
 		}
184 184
 	} while(!alldone);
185 185
 
186
+	fclose(fp);
187
+
186 188
 	if(fb) {
187 189
 		cli_dbgmsg("cli_tnef: flushing final data\n");
188 190
 		if(fileblobGetFilename(fb) == NULL) {
... ...
@@ -192,14 +194,13 @@ cli_tnef(const char *dir, int desc)
192 192
 		fileblobDestroy(fb);
193 193
 		fb = NULL;
194 194
 	}
195
-	fclose(fp);
196 195
 
197 196
 	cli_dbgmsg("cli_tnef: returning %d\n", ret);
198 197
 	return ret;
199 198
 }
200 199
 
201 200
 static int
202
-tnef_message(FILE *fp, uint16_t type, uint16_t tag, uint32_t length)
201
+tnef_message(FILE *fp, uint16_t type, uint16_t tag, int32_t length)
203 202
 {
204 203
 	uint16_t i16;
205 204
 	off_t offset;
... ...
@@ -208,7 +209,7 @@ tnef_message(FILE *fp, uint16_t type, uint16_t tag, uint32_t length)
208 208
 	char *string;
209 209
 #endif
210 210
 
211
-	cli_dbgmsg("message tag 0x%x, type 0x%x, length %u\n", tag, type, length);
211
+	cli_dbgmsg("message tag 0x%x, type 0x%x, length %d\n", tag, type, length);
212 212
 
213 213
 	offset = ftell(fp);
214 214
 
... ...
@@ -239,8 +240,12 @@ tnef_message(FILE *fp, uint16_t type, uint16_t tag, uint32_t length)
239 239
 			/* 14 bytes, long */
240 240
 			break;
241 241
 		case attMSGCLASS:
242
+			if(length <= 0)
243
+				return -1;
242 244
 			string = cli_malloc(length + 1);
243
-			if(fread(string, 1, length, fp) != length) {
245
+			if(string == NULL)
246
+				return -1;
247
+			if(fread(string, 1, (uint32_t)length, fp) != (uint32_t)length) {
244 248
 				free(string);
245 249
 				return -1;
246 250
 			}
... ...
@@ -249,7 +254,7 @@ tnef_message(FILE *fp, uint16_t type, uint16_t tag, uint32_t length)
249 249
 			free(string);
250 250
 			break;
251 251
 		default:
252
-			cli_dbgmsg("TNEF - unsupported message tag 0x%x type 0x%d length %u\n", tag, type, length);
252
+			cli_dbgmsg("TNEF - unsupported message tag 0x%x type 0x%d length %d\n", tag, type, length);
253 253
 			break;
254 254
 #endif
255 255
 	}
... ...
@@ -266,21 +271,25 @@ tnef_message(FILE *fp, uint16_t type, uint16_t tag, uint32_t length)
266 266
 }
267 267
 
268 268
 static int
269
-tnef_attachment(FILE *fp, uint16_t type, uint16_t tag, uint32_t length, const char *dir, fileblob **fbref)
269
+tnef_attachment(FILE *fp, uint16_t type, uint16_t tag, int32_t length, const char *dir, fileblob **fbref)
270 270
 {
271 271
 	uint32_t todo;
272 272
 	uint16_t i16;
273 273
 	off_t offset;
274 274
 	char *string;
275 275
 
276
-	cli_dbgmsg("attachment tag 0x%x, type 0x%x, length %u\n", tag, type, length);
276
+	cli_dbgmsg("attachment tag 0x%x, type 0x%x, length %d\n", tag, type, length);
277 277
 
278 278
 	offset = ftell(fp);
279 279
 
280 280
 	switch(tag) {
281 281
 		case attATTACHTITLE:
282
+			if(length <= 0)
283
+				return -1;
282 284
 			string = cli_malloc(length + 1);
283
-			if(fread(string, 1, length, fp) != length) {
285
+			if(string == NULL)
286
+				return -1;
287
+			if(fread(string, 1, (uint32_t)length, fp) != (uint32_t)length) {
284 288
 				free(string);
285 289
 				return -1;
286 290
 			}
... ...
@@ -321,7 +330,7 @@ tnef_attachment(FILE *fp, uint16_t type, uint16_t tag, uint32_t length, const ch
321 321
 			}
322 322
 			break;
323 323
 		default:
324
-			cli_dbgmsg("TNEF - unsupported attachment tag 0x%x type 0x%d length %u\n", tag, type, length);
324
+			cli_dbgmsg("TNEF - unsupported attachment tag 0x%x type 0x%d length %d\n", tag, type, length);
325 325
 			break;
326 326
 	}
327 327
 
... ...
@@ -337,7 +346,7 @@ tnef_attachment(FILE *fp, uint16_t type, uint16_t tag, uint32_t length, const ch
337 337
 }
338 338
 
339 339
 static int
340
-tnef_header(FILE *fp, uint8_t *part, uint16_t *type, uint16_t *tag, uint32_t *length)
340
+tnef_header(FILE *fp, uint8_t *part, uint16_t *type, uint16_t *tag, int32_t *length)
341 341
 {
342 342
 	uint32_t i32;
343 343
 
... ...
@@ -356,9 +365,9 @@ tnef_header(FILE *fp, uint8_t *part, uint16_t *type, uint16_t *tag, uint32_t *le
356 356
 
357 357
 	if(fread(&i32, sizeof(uint32_t), 1, fp) != 1)
358 358
 		return -1;
359
-	*length = host32(i32);
359
+	*length = (int32_t)host32(i32);
360 360
 
361
-	cli_dbgmsg("message tag 0x%x, type 0x%x, length %u\n", *tag, *type, *length);
361
+	cli_dbgmsg("message tag 0x%x, type 0x%x, length %d\n", *tag, *type, *length);
362 362
 
363 363
 	return 1;
364 364
 }