diff -Nru clamav-0.92~dfsg/ChangeLog clamav-0.92.1~dfsg2/ChangeLog --- clamav-0.92~dfsg/ChangeLog 2007-12-12 18:27:00.000000000 -0500 +++ clamav-0.92.1~dfsg2/ChangeLog 2008-02-11 13:32:03.000000000 -0500 @@ -1,3 +1,44 @@ +Mon Feb 11 19:32:02 CET 2008 +---------------------------- + * libclamav/mew.c: fix possible heap corruption (bb#806) + Found by Elliot, broken module disabled via daily.cvd published on Feb 2 + * libclamav/pe.c: fix possible integer overflow (CVE-2008-0318) + Found by Silvio Cesare working with the VeriSign iDefense VCP; + broken module disabled via daily.cvd published on Jan 11, 2008 + * libclamav/cab.c: improve handling of stored files (bb#771) + * libclamav/unarj.c: improve bounds checking (bb#811) + * libclamav/scanners.c: respect recursion limits in cli_scanembpe() (bb#771) + * libclamav/vba_extract.c: fix extraction of embedded files (bb#760) + * libclamav/others.[ch]: add cli_ctime() (uses ctime_r() if available or + falls back to mutex protected ctime()) + * clamd, clamav-milter, shared: use cli_ctime() instead of the + thread-unsafe ctime() + * libclamav/nsis/nulsft.c: use mutex for cli_nsis_unpack() (bb#812) + * libclamunrar: Use static CRC table - bb#64 + * libclamav/matcher-bm.c: on Solaris/Intel bm_shift could be improperly + allocated (bb#773) + * freshclam/manager.c: advertise itself as HTTP/1.0 client + * libclamav/cab.[ch]: rewrite file/folder handling code (bb#730) + * shared/output.c: fix handling of special characters in mprintf/logg (bb#360) + * shared/misc.c: add error reporting to daemonize() (bb#729) + * configure: if available use dscl on Mac OS X (bb#753) + * libclamunrar/unrar.c: disable 'Unknown RAR pack method' error message due + to false alerts with some SFX archives (bb#399) + * configure: don't link with nsl if not needed (bb#754) + * shared/misc.c, clamd, clamscan, freshclam: respect custom dbdir settings + in print_version() (bb#699) + * libclamunrar_iface/unrar_iface.h: add missing #pragma pack direct. (bb#769) + * libclamav/entconv.c: don't make tmp_move negative (exper. code, bb #772). + * shared/misc.c: don't pass --rsrc flag to ditto (bb#380) + * libclamav: fix printing of size_t and off_t vars (bb#444) + * clamav-milter: Use new cli_rndnum API + * libclamav/others.c: improve cli_rndnum() and cli_gentempfd() + * libclamav/cvd.c: fix error path descriptor leak; gzdopen() may not close fd + * shared/misc.c: cvd_unpack: cli_untgz() no longer closes fd + * clamav-milter: Fix error handling in Session Mode + * clamav-milter: Correct nul termination in ping response from clamd + * libclamunrar_iface/unrar_iface.[ch]: minor cleanups + Thu Dec 13 00:26:58 CET 2007 (tk) --------------------------------- * 0.92 (released with JS and PST code removed) diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/clamav-milter/clamav-milter.c /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/clamav-milter/clamav-milter.c --- clamav-0.92~dfsg/clamav-milter/clamav-milter.c 2007-12-12 17:41:25.000000000 -0500 +++ clamav-0.92.1~dfsg2/clamav-milter/clamav-milter.c 2008-02-06 11:00:43.000000000 -0500 @@ -33,7 +33,7 @@ */ static char const rcsid[] = "$Id: clamav-milter.c,v 1.312 2007/02/12 22:24:21 njh Exp $"; -#define CM_VERSION "0.92" +#define CM_VERSION "0.92.1" #if HAVE_CONFIG_H #include "clamav-config.h" @@ -1051,7 +1051,7 @@ #ifdef SESSION if(!external) { fprintf(stderr, - _("%s: SESSIONS mode requires --external\n")); + _("%s: SESSIONS mode requires --external\n"), argv[0]); return EX_USAGE; } #endif @@ -2283,7 +2283,7 @@ shutdown(sock, SHUT_WR); - nbytes = clamd_recv(sock, buf, sizeof(buf)); + nbytes = clamd_recv(sock, buf, sizeof(buf) - 1); close(sock); @@ -2422,11 +2422,9 @@ j = 0; } else /* - * cli_rndnum returns 0..(max-1) - the max argument is not - * the maximum number you want it to return, it is in fact - * one *more* than the maximum number you want it to return + * cli_rndnum returns 0..max */ - j = cli_rndnum(numServers); + j = cli_rndnum(numServers - 1); for(i = 0; i < numServers; i++) socks[i].sock = -1; @@ -5747,22 +5745,11 @@ if(d) { char *ptr; time_t t = d->stime; -#ifdef HAVE_CTIME_R char buf[26]; -#ifdef HAVE_CTIME_R_2 snprintf(clamav_version, VERSION_LENGTH, "ClamAV %s/%u/%s", VERSION, d->version, - ctime_r(&t, buf)); -#else - snprintf(clamav_version, VERSION_LENGTH, - "ClamAV %s/%d/%s", VERSION, d->version, - ctime_r(&t, buf, sizeof(buf))); -#endif -#else - snprintf(clamav_version, VERSION_LENGTH, - "ClamAV %s/%d/%s", VERSION, d->version, ctime(&t)); -#endif + cli_ctime(&t, buf, sizeof(buf))); /* Remove ctime's trailing \n */ if((ptr = strchr(clamav_version, '\n')) != NULL) diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/clamd/clamd.c /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/clamd/clamd.c --- clamav-0.92~dfsg/clamd/clamd.c 2007-12-06 07:58:59.000000000 -0500 +++ clamav-0.92.1~dfsg2/clamd/clamd.c 2008-02-06 10:50:12.000000000 -0500 @@ -121,12 +121,6 @@ return 1; } - if(opt_check(opt, "version")) { - print_version(); - opt_free(opt); - return 0; - } - if(opt_check(opt, "help")) { help(); opt_free(opt); @@ -156,6 +150,14 @@ opt_free(opt); return 1; } + + if(opt_check(opt, "version")) { + print_version(cfgopt(copt, "DatabaseDirectory")->strarg); + opt_free(opt); + freecfg(copt); + return 0; + } + opt_free(opt); umask(0); @@ -214,6 +216,7 @@ cl_debug(); if((cpt = cfgopt(copt, "LogFile"))->enabled) { + char timestr[32]; logg_file = cpt->strarg; if(strlen(logg_file) < 2 || (logg_file[0] != '/' && logg_file[0] != '\\' && logg_file[1] != ':')) { fprintf(stderr, "ERROR: LogFile requires full path.\n"); @@ -222,7 +225,7 @@ return 1; } time(&currtime); - if(logg("#+++ Started at %s", ctime(&currtime))) { + if(logg("#+++ Started at %s", cli_ctime(&currtime, timestr, sizeof(timestr)))) { fprintf(stderr, "ERROR: Problem with internal logger. Please check the permissions on the %s file.\n", logg_file); logg_close(); freecfg(copt); @@ -278,7 +281,12 @@ /* fork into background */ if(!cfgopt(copt, "Foreground")->enabled) { - daemonize(); + if(daemonize() == -1) { + logg("!daemonize() failed\n"); + logg_close(); + freecfg(copt); + return 1; + } if(!debug_mode) if(chdir("/") == -1) logg("^Can't change current working directory to root\n"); diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/clamd/scanner.c /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/clamd/scanner.c --- clamav-0.92~dfsg/clamd/scanner.c 2007-12-06 07:58:59.000000000 -0500 +++ clamav-0.92.1~dfsg2/clamd/scanner.c 2008-01-28 15:44:31.000000000 -0500 @@ -216,7 +216,7 @@ if(scanret == CL_VIRUS) { mdprintf(odesc, "%s: %s FOUND\n", fname, *virname); - logg("%s: %s FOUND\n", fname, *virname); + logg("~%s: %s FOUND\n", fname, *virname); virusaction(fname, *virname, copt); if(type == TYPE_SCAN) { closedir(dd); @@ -227,7 +227,7 @@ } else if(scanret != CL_CLEAN) { mdprintf(odesc, "%s: %s ERROR\n", fname, cl_strerror(scanret)); - logg("%s: %s ERROR\n", fname, cl_strerror(scanret)); + logg("~%s: %s ERROR\n", fname, cl_strerror(scanret)); if(scanret == CL_EMEM) { closedir(dd); free(fname); @@ -235,7 +235,7 @@ } } else if(logok) { - logg("%s: OK\n", fname); + logg("~%s: OK\n", fname); } free(fname); } @@ -277,13 +277,13 @@ if(ret == CL_VIRUS) { mdprintf(tag->sd, "%s: %s FOUND\n", tag->fname, virname); - logg("%s: %s FOUND\n", tag->fname, virname); + logg("~%s: %s FOUND\n", tag->fname, virname); virusaction(tag->fname, virname, tag->copt); } else if(ret != CL_CLEAN) { mdprintf(tag->sd, "%s: %s ERROR\n", tag->fname, cl_strerror(ret)); - logg("%s: %s ERROR\n", tag->fname, cl_strerror(ret)); + logg("~%s: %s ERROR\n", tag->fname, cl_strerror(ret)); } else if(logok) { - logg("%s: OK\n", tag->fname); + logg("~%s: OK\n", tag->fname); } free(tag->fname); @@ -333,15 +333,15 @@ if(ret == CL_VIRUS) { mdprintf(odesc, "%s: %s FOUND\n", filename, virname); - logg("%s: %s FOUND\n", filename, virname); + logg("~%s: %s FOUND\n", filename, virname); virusaction(filename, virname, copt); } else if(ret != CL_CLEAN) { mdprintf(odesc, "%s: %s ERROR\n", filename, cl_strerror(ret)); - logg("%s: %s ERROR\n", filename, cl_strerror(ret)); + logg("~%s: %s ERROR\n", filename, cl_strerror(ret)); if(ret == CL_EMEM) return -2; } else if (logok) { - logg("%s: OK\n", filename); + logg("~%s: OK\n", filename); } break; case S_IFDIR: @@ -437,7 +437,7 @@ while(!bound && --portscan) { if(rnd_port_first) { /* try a random port first */ - port = min_port + cli_rndnum(max_port - min_port + 1); + port = min_port + cli_rndnum(max_port - min_port); rnd_port_first = 0; } else { /* try the neighbor ports */ diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/clamd/server.h /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/clamd/server.h --- clamav-0.92~dfsg/clamd/server.h 2007-12-06 07:58:59.000000000 -0500 +++ clamav-0.92.1~dfsg2/clamd/server.h 2008-01-28 15:38:02.000000000 -0500 @@ -54,7 +54,6 @@ int acceptloop_th(int *socketds, int nsockets, struct cl_engine *engine, unsigned int dboptions, const struct cfgstruct *copt); void sighandler(int sig); void sighandler_th(int sig); -void daemonize(void); void sigsegv(int sig); #endif diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/clamd/server-th.c /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/clamd/server-th.c --- clamav-0.92~dfsg/clamd/server-th.c 2007-12-06 07:58:59.000000000 -0500 +++ clamav-0.92.1~dfsg2/clamd/server-th.c 2008-02-06 11:20:19.000000000 -0500 @@ -50,6 +50,7 @@ #include "clamuko.h" #include "others.h" #include "shared.h" +#include "libclamav/others.h" #ifndef C_WINDOWS #define closesocket(s) close(s) @@ -260,6 +261,7 @@ int max_threads, i, ret = 0; unsigned int options = 0; threadpool_t *thr_pool; + char timestr[32]; #ifndef C_WINDOWS struct sigaction sigact; #endif @@ -538,7 +540,6 @@ } #if !defined(C_WINDOWS) && !defined(C_BEOS) if(new_sd != -1 && fstat(socketd, &st_buf) == -1) { - logg("!fstat(): socket descriptor gone\n"); memmove(socketds, socketds + 1, sizeof(socketds[0]) * nsockets); nsockets--; if(!nsockets) { @@ -677,7 +678,7 @@ } time(¤t_time); - logg("--- Stopped at %s", ctime(¤t_time)); + logg("--- Stopped at %s", cli_ctime(¤t_time, timestr, sizeof(timestr))); return ret; } diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/clamd/session.c /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/clamd/session.c --- clamav-0.92~dfsg/clamd/session.c 2007-12-06 07:58:59.000000000 -0500 +++ clamav-0.92.1~dfsg2/clamd/session.c 2008-02-06 10:54:02.000000000 -0500 @@ -43,6 +43,7 @@ #include "libclamav/clamav.h" #include "libclamav/str.h" +#include "libclamav/others.h" #include "shared/cfgparser.h" #include "shared/output.h" @@ -53,8 +54,6 @@ #include "server.h" #include "session.h" -static pthread_mutex_t ctime_mutex = PTHREAD_MUTEX_INITIALIZER; - int command(int desc, const struct cl_engine *engine, const struct cl_limits *limits, unsigned int options, const struct cfgstruct *copt, int timeout) { char buff[1025]; @@ -117,12 +116,11 @@ if(stat(path, &foo) == -1) sprintf(path, "%s/daily.inc/daily.info", dbdir); - if((daily = cl_cvdhead(path))) { + if(!access(path, R_OK) && (daily = cl_cvdhead(path))) { + char timestr[32]; time_t t = (time_t) daily->stime; - pthread_mutex_lock(&ctime_mutex); - mdprintf(desc, "ClamAV "VERSION"/%d/%s", daily->version, ctime(&t)); - pthread_mutex_unlock(&ctime_mutex); + mdprintf(desc, "ClamAV "VERSION"/%d/%s", daily->version, cli_ctime(&t, timestr, sizeof(timestr))); cl_cvdfree(daily); } else { mdprintf(desc, "ClamAV "VERSION"\n"); diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/clamdscan/clamdscan.c /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/clamdscan/clamdscan.c --- clamav-0.92~dfsg/clamdscan/clamdscan.c 2007-12-06 07:58:52.000000000 -0500 +++ clamav-0.92.1~dfsg2/clamdscan/clamdscan.c 2008-01-28 16:57:12.000000000 -0500 @@ -74,7 +74,7 @@ mprintf_stdout = 1; if(opt_check(opt, "version")) { - print_version(); + print_version(NULL); opt_free(opt); exit(0); } diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/clamdscan/client.c /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/clamdscan/client.c --- clamav-0.92~dfsg/clamdscan/client.c 2007-12-06 07:58:52.000000000 -0500 +++ clamav-0.92.1~dfsg2/clamdscan/client.c 2008-01-28 15:44:44.000000000 -0500 @@ -92,12 +92,12 @@ } else { *pt = 0; if(unlink(buff)) { - mprintf("%s: Can't remove.\n", buff); - logg("%s: Can't remove.\n", buff); + mprintf("~%s: Can't remove.\n", buff); + logg("~%s: Can't remove.\n", buff); notremoved++; } else { - mprintf("%s: Removed.\n", buff); - logg("%s: Removed.\n", buff); + mprintf("~%s: Removed.\n", buff); + logg("~%s: Removed.\n", buff); } } } @@ -136,7 +136,7 @@ ret = dsresult(sockd, opt); if(!ret) - logg("%s: OK\n", filename); + logg("~%s: OK\n", filename); return ret; } diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/clamscan/clamscan.c /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/clamscan/clamscan.c --- clamav-0.92~dfsg/clamscan/clamscan.c 2007-12-06 07:58:52.000000000 -0500 +++ clamav-0.92.1~dfsg2/clamscan/clamscan.c 2008-01-28 15:28:45.000000000 -0500 @@ -104,8 +104,8 @@ } if(opt_check(opt, "version")) { + print_version(opt_arg(opt, "database")); opt_free(opt); - print_version(); return 0; } diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/clamscan/manager.c /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/clamscan/manager.c --- clamav-0.92~dfsg/clamscan/manager.c 2007-12-06 07:58:52.000000000 -0500 +++ clamav-0.92.1~dfsg2/clamscan/manager.c 2008-01-28 15:44:56.000000000 -0500 @@ -630,7 +630,7 @@ } } - logg("%s: %s to '%s'\n", filename, (moveflag) ? "moved" : "copied", movefilename); + logg("~%s: %s to '%s'\n", filename, (moveflag) ? "moved" : "copied", movefilename); free(movefilename); } @@ -649,7 +649,7 @@ } if((ret = cl_scandesc(fd, &virname, &info.blocks, engine, limits, options)) == CL_VIRUS) { - logg("%s: %s FOUND\n", filename, virname); + logg("~%s: %s FOUND\n", filename, virname); info.ifiles++; if(bell) @@ -657,10 +657,10 @@ } else if(ret == CL_CLEAN) { if(!printinfected && printclean) - mprintf("%s: OK\n", filename); + mprintf("~%s: OK\n", filename); } else if(!printinfected) - logg("%s: %s\n", filename, cl_strerror(ret)); + logg("~%s: %s\n", filename, cl_strerror(ret)); close(fd); return ret; @@ -822,7 +822,7 @@ logg("^%s: Can't remove\n", filename); info.notremoved++; } else { - logg("%s: Removed\n", filename); + logg("~%s: Removed\n", filename); } } else if (opt_check(opt, "move") || opt_check(opt, "copy")) move_infected(filename, opt); @@ -839,14 +839,14 @@ logg("^%s: Can't remove\n", filename); info.notremoved++; } else { - logg("%s: Removed\n", filename); + logg("~%s: Removed\n", filename); } } else if (opt_check(opt, "move") || opt_check(opt, "copy")) move_infected(filename, opt); } return ret; case 1: - logg("%s: Infected.Archive FOUND\n", filename); + logg("~%s: Infected.Archive FOUND\n", filename); if(bell) fprintf(stderr, "\007"); @@ -856,7 +856,7 @@ logg("^%s: Can't remove\n", filename); info.notremoved++; } else { - logg("%s: Removed\n", filename); + logg("~%s: Removed\n", filename); } } else if (opt_check(opt, "move") || opt_check(opt, "copy")) move_infected(filename, opt); @@ -937,7 +937,7 @@ logg("^%s: Can't remove\n", filename); info.notremoved++; } else { - logg("%s: Removed\n", filename); + logg("~%s: Removed\n", filename); } } else if (opt_check(opt, "move") || opt_check(opt, "copy")) move_infected(filename, opt); @@ -965,7 +965,7 @@ if(stat(filename, &sb) != -1) if(sb.st_dev == procdev) { if(!printinfected) - logg("%s: Excluded (/proc)\n", filename); + logg("~%s: Excluded (/proc)\n", filename); return 0; } #endif @@ -975,7 +975,7 @@ while(argument) { if(match_regex(filename, argument) == 1) { if(!printinfected) - logg("%s: Excluded\n", filename); + logg("~%s: Excluded\n", filename); return 0; } argument = opt_nextarg(&optnode, "exclude"); @@ -995,14 +995,14 @@ if(!included) { if(!printinfected) - logg("%s: Excluded\n", filename); + logg("~%s: Excluded\n", filename); return 0; } } if(fileinfo(filename, 1) == 0) { if(!printinfected) - logg("%s: Empty file\n", filename); + logg("~%s: Empty file\n", filename); return 0; } @@ -1010,7 +1010,7 @@ if(geteuid()) if(checkaccess(filename, NULL, R_OK) != 1) { if(!printinfected) - logg("%s: Access denied\n", filename); + logg("~%s: Access denied\n", filename); return 0; } #endif @@ -1032,7 +1032,7 @@ logg("^%s: Can't remove\n", filename); info.notremoved++; } else { - logg("%s: Removed\n", filename); + logg("~%s: Removed\n", filename); } } else if (opt_check(opt, "move") || opt_check(opt, "copy")) move_infected(filename, opt); @@ -1096,7 +1096,7 @@ logg("^%s: Can't remove\n", filename); info.notremoved++; } else { - logg("%s: Removed\n", filename); + logg("~%s: Removed\n", filename); } } else if (opt_check(opt, "move") || opt_check(opt, "copy")) move_infected(filename, opt); diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/clamscan/treewalk.c /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/clamscan/treewalk.c --- clamav-0.92~dfsg/clamscan/treewalk.c 2007-12-06 07:58:52.000000000 -0500 +++ clamav-0.92.1~dfsg2/clamscan/treewalk.c 2008-01-28 15:45:05.000000000 -0500 @@ -71,7 +71,7 @@ while(argument) { if(match_regex(dirname, argument) == 1) { if(!printinfected) - logg("%s: Excluded\n", dirname); + logg("~%s: Excluded\n", dirname); return 0; } argument = opt_nextarg(&optnode, "exclude-dir"); @@ -91,7 +91,7 @@ if(!included) { if(!printinfected) - logg("%s: Excluded\n", dirname); + logg("~%s: Excluded\n", dirname); return 0; } } @@ -135,7 +135,7 @@ } } else { if(!printinfected) - logg("%s: Can't open directory.\n", dirname); + logg("~%s: Can't open directory.\n", dirname); return 53; } @@ -237,7 +237,7 @@ } } else { if(!printinfected) - logg("%s: Can't open directory.\n", dirname); + logg("~%s: Can't open directory.\n", dirname); return 53; } @@ -285,7 +285,7 @@ } } else { if(!printinfected) - logg("%s: Can't open directory.\n", dirname); + logg("~%s: Can't open directory.\n", dirname); return 53; } diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/configure /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/configure --- clamav-0.92~dfsg/configure 2007-12-12 18:06:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/configure 2008-02-06 11:20:40.000000000 -0500 @@ -2624,7 +2624,7 @@ # Define the identity of the package. PACKAGE=clamav - VERSION="0.92" + VERSION="0.92.1" cat >>confdefs.h <<_ACEOF @@ -2774,7 +2774,7 @@ LC_CURRENT=3 -LC_REVISION=3 +LC_REVISION=4 LC_AGE=0 LIBCLAMAV_VERSION="$LC_CURRENT":"$LC_REVISION":"$LC_AGE" @@ -21046,13 +21046,12 @@ LIBS="$LIBS -lsocket"; CLAMAV_MILTER_LIBS="$CLAMAV_MILTER_LIBS -lsocket"; FRESHCLAM_LIBS="$FRESHCLAM_LIBS -lsocket"; CLAMD_LIBS="$CLAMD_LIBS -lsocket" fi -{ echo "$as_me:$LINENO: checking for gethostent in -lnsl" >&5 -echo $ECHO_N "checking for gethostent in -lnsl... $ECHO_C" >&6; } -if test "${ac_cv_lib_nsl_gethostent+set}" = set; then +{ echo "$as_me:$LINENO: checking for library containing gethostent" >&5 +echo $ECHO_N "checking for library containing gethostent... $ECHO_C" >&6; } +if test "${ac_cv_search_gethostent+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lnsl $LIBS" + ac_func_search_save_LIBS=$LIBS cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF @@ -21075,7 +21074,14 @@ return 0; } _ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext +for ac_lib in '' nsl; do + if test -z "$ac_lib"; then + ac_res="none required" + else + ac_res=-l$ac_lib + LIBS="-l$ac_lib $ac_func_search_save_LIBS" + fi + rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; @@ -21093,22 +21099,34 @@ test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then - ac_cv_lib_nsl_gethostent=yes + ac_cv_search_gethostent=$ac_res else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 - ac_cv_lib_nsl_gethostent=no + fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS + conftest$ac_exeext + if test "${ac_cv_search_gethostent+set}" = set; then + break fi -{ echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostent" >&5 -echo "${ECHO_T}$ac_cv_lib_nsl_gethostent" >&6; } -if test $ac_cv_lib_nsl_gethostent = yes; then - LIBS="$LIBS -lnsl"; CLAMAV_MILTER_LIBS="$CLAMAV_MILTER_LIBS -lnsl"; FRESHCLAM_LIBS="$FRESHCLAM_LIBS -lnsl"; CLAMD_LIBS="$CLAMD_LIBS -lnsl" +done +if test "${ac_cv_search_gethostent+set}" = set; then + : +else + ac_cv_search_gethostent=no +fi +rm conftest.$ac_ext +LIBS=$ac_func_search_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_search_gethostent" >&5 +echo "${ECHO_T}$ac_cv_search_gethostent" >&6; } +ac_res=$ac_cv_search_gethostent +if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" + (LIBS="$LIBS -lnsl"; CLAMAV_MILTER_LIBS="$CLAMAV_MILTER_LIBS -lnsl"; FRESHCLAM_LIBS="$FRESHCLAM_LIBS -lnsl"; CLAMD_LIBS="$CLAMD_LIBS -lnsl") fi @@ -25398,10 +25416,17 @@ if test "$use_netinfo" = "yes" then - { echo "$as_me:$LINENO: checking for $clamav_user using netinfo" >&5 + if test -x /usr/bin/dscl; then + { echo "$as_me:$LINENO: checking for $clamav_user using dscl" >&5 +echo $ECHO_N "checking for $clamav_user using dscl... $ECHO_C" >&6; } + clamavuser=`/usr/bin/dscl . -list /Users |grep ${clamav_user}` + clamavgroup=`/usr/bin/dscl . -list /Groups |grep ${clamav_group}` + else + { echo "$as_me:$LINENO: checking for $clamav_user using netinfo" >&5 echo $ECHO_N "checking for $clamav_user using netinfo... $ECHO_C" >&6; } - clamavuser=`/usr/bin/nidump passwd . |grep ${clamav_user}` - clamavgroup=`/usr/bin/nidump group . |grep ${clamav_group}` + clamavuser=`/usr/bin/nidump passwd . |grep ${clamav_user}` + clamavgroup=`/usr/bin/nidump group . |grep ${clamav_group}` + fi fi if test "$use_yp" = "yes" diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/configure.in /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/configure.in --- clamav-0.92~dfsg/configure.in 2007-12-12 18:06:37.000000000 -0500 +++ clamav-0.92.1~dfsg2/configure.in 2008-02-01 12:18:41.000000000 -0500 @@ -20,11 +20,11 @@ AC_INIT(clamscan/clamscan.c) AC_CREATE_TARGET_H(target.h) -AM_INIT_AUTOMAKE(clamav, "0.92") +AM_INIT_AUTOMAKE(clamav, "0.92.1") AM_CONFIG_HEADER(clamav-config.h) LC_CURRENT=3 -LC_REVISION=3 +LC_REVISION=4 LC_AGE=0 LIBCLAMAV_VERSION="$LC_CURRENT":"$LC_REVISION":"$LC_AGE" AC_SUBST(LIBCLAMAV_VERSION) @@ -206,7 +206,7 @@ fi AC_CHECK_LIB(socket, bind, [LIBS="$LIBS -lsocket"; CLAMAV_MILTER_LIBS="$CLAMAV_MILTER_LIBS -lsocket"; FRESHCLAM_LIBS="$FRESHCLAM_LIBS -lsocket"; CLAMD_LIBS="$CLAMD_LIBS -lsocket"]) -AC_CHECK_LIB(nsl, gethostent, [LIBS="$LIBS -lnsl"; CLAMAV_MILTER_LIBS="$CLAMAV_MILTER_LIBS -lnsl"; FRESHCLAM_LIBS="$FRESHCLAM_LIBS -lnsl"; CLAMD_LIBS="$CLAMD_LIBS -lnsl"]) +AC_SEARCH_LIBS([gethostent],[nsl], [(LIBS="$LIBS -lnsl"; CLAMAV_MILTER_LIBS="$CLAMAV_MILTER_LIBS -lnsl"; FRESHCLAM_LIBS="$FRESHCLAM_LIBS -lnsl"; CLAMD_LIBS="$CLAMD_LIBS -lnsl")]) AC_CHECK_LIB(iconv, libiconv_open, LIBCLAMAV_LIBS="$LIBCLAMAV_LIBS -liconv") @@ -1068,9 +1068,15 @@ if test "$use_netinfo" = "yes" then - AC_MSG_CHECKING(for $clamav_user using netinfo) - clamavuser=`/usr/bin/nidump passwd . |grep ${clamav_user}` - clamavgroup=`/usr/bin/nidump group . |grep ${clamav_group}` + if test -x /usr/bin/dscl; then + AC_MSG_CHECKING(for $clamav_user using dscl) + clamavuser=`/usr/bin/dscl . -list /Users |grep ${clamav_user}` + clamavgroup=`/usr/bin/dscl . -list /Groups |grep ${clamav_group}` + else + AC_MSG_CHECKING(for $clamav_user using netinfo) + clamavuser=`/usr/bin/nidump passwd . |grep ${clamav_user}` + clamavgroup=`/usr/bin/nidump group . |grep ${clamav_group}` + fi fi if test "$use_yp" = "yes" diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/contrib/Windows/Projects/clamAV/clamconf/clamconf.vcproj.NJH.Nigel Horne.user /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/contrib/Windows/Projects/clamAV/clamconf/clamconf.vcproj.NJH.Nigel Horne.user --- clamav-0.92~dfsg/contrib/Windows/Projects/clamAV/clamconf/clamconf.vcproj.NJH.Nigel Horne.user 2007-12-06 07:59:08.000000000 -0500 +++ clamav-0.92.1~dfsg2/contrib/Windows/Projects/clamAV/clamconf/clamconf.vcproj.NJH.Nigel Horne.user 1969-12-31 19:00:00.000000000 -0500 @@ -1,65 +0,0 @@ - - - - - - - - - - - diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/contrib/Windows/Projects/clamAV/clamd/clamd.vcproj.NJH.Nigel Horne.user /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/contrib/Windows/Projects/clamAV/clamd/clamd.vcproj.NJH.Nigel Horne.user --- clamav-0.92~dfsg/contrib/Windows/Projects/clamAV/clamd/clamd.vcproj.NJH.Nigel Horne.user 2007-12-06 07:59:08.000000000 -0500 +++ clamav-0.92.1~dfsg2/contrib/Windows/Projects/clamAV/clamd/clamd.vcproj.NJH.Nigel Horne.user 1969-12-31 19:00:00.000000000 -0500 @@ -1,65 +0,0 @@ - - - - - - - - - - - diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/contrib/Windows/Projects/clamAV/clamscan/clamscan.vcproj.NJH.Nigel Horne.user /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/contrib/Windows/Projects/clamAV/clamscan/clamscan.vcproj.NJH.Nigel Horne.user --- clamav-0.92~dfsg/contrib/Windows/Projects/clamAV/clamscan/clamscan.vcproj.NJH.Nigel Horne.user 2007-12-06 07:59:08.000000000 -0500 +++ clamav-0.92.1~dfsg2/contrib/Windows/Projects/clamAV/clamscan/clamscan.vcproj.NJH.Nigel Horne.user 1969-12-31 19:00:00.000000000 -0500 @@ -1,65 +0,0 @@ - - - - - - - - - - - diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/contrib/Windows/Projects/clamAV/shared/shared.vcproj.NJH.Nigel Horne.user /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/contrib/Windows/Projects/clamAV/shared/shared.vcproj.NJH.Nigel Horne.user --- clamav-0.92~dfsg/contrib/Windows/Projects/clamAV/shared/shared.vcproj.NJH.Nigel Horne.user 2007-12-06 07:59:08.000000000 -0500 +++ clamav-0.92.1~dfsg2/contrib/Windows/Projects/clamAV/shared/shared.vcproj.NJH.Nigel Horne.user 1969-12-31 19:00:00.000000000 -0500 @@ -1,65 +0,0 @@ - - - - - - - - - - - Binary files /tmp/60cupQ0aKb/clamav-0.92~dfsg/database/daily.cvd and /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/database/daily.cvd differ diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/changelog /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/changelog --- clamav-0.92~dfsg/debian/changelog 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/changelog 2008-04-18 08:49:42.000000000 -0400 @@ -1,27 +1,57 @@ -clamav (0.92~dfsg-2~dapper1ubuntu0.1) dapper-security; urgency=low - - * SECURITY UPDATE: possible integer overflow and tempfile symlink - vulnerability - * Added : 27_others.c.CVE-2007-6595.dpatch Fixes Tempfile symlink - vulnerability - * Added 26_pe.c.CVE-2008-0318.dpatch: Fixes posible integer overflow - * References CVE-2007-6595 CVE-2008-0318 (LP: 191150) - - -- Leonel Nunez Mon, 11 Feb 2008 22:52:13 -0700 - -clamav (0.92~dfsg-2~dapper1) dapper-backports; urgency=low +clamav (0.92.1~dfsg2-1~dapper1) dapper-backports; urgency=high * Source backport for dapper-backports. Changes: - - Change ${binary:Version} and ${source:Version} depends to - {Source-Version} in debian/control and drop dpkg-dev + - Change ${binary:Version} and ${source:Version} depends to + {Source-Version} in debian/control and drop dpkg-dev dependency to (>= 1.13.11) as a result - Add CC=gcc-3.4 to configure options in debian/rules and build-dep for gcc-3.4 to avoid GCC bug 28045 - - Remove leading comments from debian/clamav-base.templates and - debian/clamav-freshclam.templates to work around Dapper tool chain - problem (inserts extra line in the template. + - Remove leading comments from debian/clamav-base.templates and + debian/clamav-freshclam.templates to work around Dapper tool chain + problem (inserts extra line in the template). + + -- Scott Kitterman Thu, 17 Apr 2008 23:45:03 -0400 + +clamav (0.92.1~dfsg2-1) unstable; urgency=high + + * libclamav/pe.c: possible integer overflow in wwpack + * [CVE-2008-1100]: libclamav/pe.c: possible integer overflow in upack + * [CVE-2008-1387]: libclamav/spin.c: possible integer overflow + * libclamav/unarj.c: DoS in unarj + + -- Stephen Gran Tue, 15 Apr 2008 17:48:43 +0100 + +clamav (0.92.1~dfsg2-0.1) unstable; urgency=low + + * Non-maintainer upload. + * Remove non-free unrar files and repack orig.tar.gz (Closes: #470073) + + -- Scott Kitterman Sat, 08 Mar 2008 19:29:19 -0500 + +clamav (0.92.1~dfsg-1) unstable; urgency=low + + * New upstream bugfix release + - [2007-6595]: libclamav/others.c: symlink vulnerability + cli_gentempfd now calls open with O_EXCL (closes: #458532) + - [CVE-2008-0318]: libclamav/pe.c: possible integer overflow + - libclamav/mew.c: possible heap corruption + * Add a note to NEWS.Debian about unrar support being dropped + (closes: #465203) + * clamav-milter: off-by-one programming error in pingServer + (closes: #458204) + * Copyright now complete (thanks Scott Kitterman ) + (closes: #456770) + * Attempt to work around clamav-milter not bothering to check if another + instance is running on startup (reported as LP bug 179169) + + -- Stephen Gran Tue, 12 Feb 2008 02:25:20 +0000 + +clamav (0.92~dfsg-3) unstable; urgency=low + + * Copyright clarifications (closes: #456770) (thanks + Scott Kitterman ) - -- Scott Kitterman Mon, 21 Jan 2008 11:36:20 -0500 + -- Stephen Gran Thu, 20 Dec 2007 15:28:12 +0000 clamav (0.92~dfsg-2) unstable; urgency=low diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/clamav-milter.init.in /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/clamav-milter.init.in --- clamav-0.92~dfsg/debian/clamav-milter.init.in 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/clamav-milter.init.in 2008-04-18 08:49:42.000000000 -0400 @@ -79,6 +79,13 @@ case "$1" in start) OPTIND=1 + if [ -n "$PID" ]; then + PID=`echo $PID | sed 's/[^0-9]//g'` + if kill -0 $PID; then + log_failure_msg "$DAEMON already running" + exit 1 + fi + fi if [ -z "$RUN_SUPERVISED" ] ; then log_daemon_msg "Starting $DESC" "$BASENAME" su "$User" -p -s /bin/sh -c ". /lib/lsb/init-functions && start_daemon $DAEMON $OPTIONS --pidfile $PIDFILE $SOCKET" > /dev/null diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/control /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/control --- clamav-0.92~dfsg/debian/control 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/control 2008-04-18 08:49:42.000000000 -0400 @@ -40,7 +40,7 @@ Package: clamav-dbg Architecture: any -Depends: libclamav3, ${shlibs:Depends} +Depends: libclamav3, clamav, ${shlibs:Depends} Priority: extra Description: debug symbols for ClamAV Clam AntiVirus is an anti-virus toolkit for Unix. The main purpose of diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/copyright /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/copyright --- clamav-0.92~dfsg/debian/copyright 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/copyright 2008-04-18 08:49:42.000000000 -0400 @@ -28,3 +28,750 @@ On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. +libclamav/mspack.c, libclamav/mspack.h are Copyright (C) 2003-2004 Stuart Caie +libclamunrar_iface/unrar_iface.c and libclamunrar_iface/unrar_iface.h are +Copyright (C) 2007 Sourcefire, Inc. +shared/sha256.c and shared/sha256.h are Copyright (C) 2001 Niels Moller +libclamav/unzip.c and libclamav/unzip.h are Copyright (C) 2003 - 2005 Tomasz +Kojm and (C) 2006 Sensory Networks, Inc. + +and are licensed under the terms of the LGPL: + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; version 2.1 of the + License. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. + +All files in libclamav/regex/ are Copyright (c) 1992, 1993, 1994 Henry Spencer +and the Regents of the University of California. They are licensed under the +BSD license: + + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + +On Debian GNU/Linux systems, the complete text of the BSD License can be found +in `/usr/share/common-licenses/BSD'. + +******************************************************************************** + This document contains licence details for files in libclamav/nsis. It can + be accessed on-line at http://nsis.sourceforge.net/License +******************************************************************************** + +Copyright (C) 1995-2007 Contributors + +More detailed copyright information can be found in the individual source code +files. + +Applicable licenses +------------------- + +* All NSIS source code, plug-ins, documentation, examples, header files and + graphics, with the exception of the compression modules and where otherwise + noted, are licensed under the zlib/libpng license. + +* The zlib compression module for NSIS is licensed under the zlib/libpng + license. + +* The bzip2 compression module for NSIS is licensed under the bzip2 license. + +* The lzma compression module for NSIS is licensed under the Common Public + License version 1.0. + +zlib/libpng license +------------------- + +This software is provided 'as-is', without any express or implied warranty. In +no event will the authors be held liable for any damages arising from the use +of this software. + +Permission is granted to anyone to use this software for any purpose, including +commercial applications, and to alter it and redistribute it freely, subject to +the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software in + a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source distribution. + +bzip2 license +------------- + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software in + a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 3. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 4. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY +OF SUCH DAMAGE. + +Julian Seward, Cambridge, UK. + +jseward@acm.org + +Common Public License version 1.0 +--------------------------------- + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC +LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM +CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + +a) in the case of the initial Contributor, the initial code and documentation + distributed under this Agreement, and b) in the case of each subsequent + Contributor: + +i) changes to the Program, and + +ii) additions to the Program; + +where such changes and/or additions to the Program originate from and are +distributed by that particular Contributor. A Contribution 'originates' from a +Contributor if it was added to the Program by such Contributor itself or anyone +acting on such Contributor's behalf. Contributions do not include additions to +the Program which: (i) are separate modules of software distributed in +conjunction with the Program under their own license agreement, and (ii) are +not derivative works of the Program. + +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents " mean patent claims licensable by a Contributor which are +necessarily infringed by the use or sale of its Contribution alone or when +combined with the Program. + +"Program" means the Contributions distributed in accordance with this Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, +including all Contributors. + +2. GRANT OF RIGHTS + +a) Subject to the terms of this Agreement, each Contributor hereby grants +Recipient a non-exclusive, worldwide, royalty-free copyright license to +reproduce, prepare derivative works of, publicly display, publicly perform, +distribute and sublicense the Contribution of such Contributor, if any, and +such derivative works, in source code and object code form. + +b) Subject to the terms of this Agreement, each Contributor hereby grants +Recipient a non-exclusive, worldwide, royalty-free patent license under +Licensed Patents to make, use, sell, offer to sell, import and otherwise +transfer the Contribution of such Contributor, if any, in source code and +object code form. This patent license shall apply to the combination of the +Contribution and the Program if, at the time the Contribution is added by the +Contributor, such addition of the Contribution causes such combination to be +covered by the Licensed Patents. The patent license shall not apply to any +other combinations which include the Contribution. No hardware per se is +licensed hereunder. + +c) Recipient understands that although each Contributor grants the licenses to +its Contributions set forth herein, no assurances are provided by any +Contributor that the Program does not infringe the patent or other intellectual +property rights of any other entity. Each Contributor disclaims any liability +to Recipient for claims brought by any other entity based on infringement of +intellectual property rights or otherwise. As a condition to exercising the +rights and licenses granted hereunder, each Recipient hereby assumes sole +responsibility to secure any other intellectual property rights needed, if any. +For example, if a third party patent license is required to allow Recipient to +distribute the Program, it is Recipient's responsibility to acquire that +license before distributing the Program. + +d) Each Contributor represents that to its knowledge it has sufficient +copyright rights in its Contribution, if any, to grant the copyright license +set forth in this Agreement. + +3. REQUIREMENTS + +A Contributor may choose to distribute the Program in object code form under +its own license agreement, provided that: + +a) it complies with the terms and conditions of this Agreement; and + +b) its license agreement: + +i) effectively disclaims on behalf of all Contributors all warranties and +conditions, express and implied, including warranties or conditions of title +and non-infringement, and implied warranties or conditions of merchantability +and fitness for a particular purpose; + +ii) effectively excludes on behalf of all Contributors all liability for +damages, including direct, indirect, special, incidental and consequential +damages, such as lost profits; + +iii) states that any provisions which differ from this Agreement are offered by +that Contributor alone and not by any other party; and + +iv) states that source code for the Program is available from such Contributor, +and informs licensees how to obtain it in a reasonable manner on or through a +medium customarily used for software exchange. + +When the Program is made available in source code form: + +a) it must be made available under this Agreement; and + +b) a copy of this Agreement must be included with each copy of the Program. + +Contributors may not remove or alter any copyright notices contained within the +Program. + +Each Contributor must identify itself as the originator of its Contribution, if +any, in a manner that reasonably allows subsequent Recipients to identify the +originator of the Contribution. + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain responsibilities with +respect to end users, business partners and the like. While this license is +intended to facilitate the commercial use of the Program, the Contributor who +includes the Program in a commercial product offering should do so in a manner +which does not create potential liability for other Contributors. Therefore, if +a Contributor includes the Program in a commercial product offering, such +Contributor ("Commercial Contributor") hereby agrees to defend and indemnify +every other Contributor ("Indemnified Contributor") against any losses, damages +and costs (collectively "Losses") arising from claims, lawsuits and other legal +actions brought by a third party against the Indemnified Contributor to the +extent caused by the acts or omissions of such Commercial Contributor in +connection with its distribution of the Program in a commercial product +offering. The obligations in this section do not apply to any claims or Losses +relating to any actual or alleged intellectual property infringement. In order +to qualify, an Indemnified Contributor must: a) promptly notify the Commercial +Contributor in writing of such claim, and b) allow the Commercial Contributor +to control, and cooperate with the Commercial Contributor in, the defense and +any related settlement negotiations. The Indemnified Contributor may +participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial product +offering, Product X. That Contributor is then a Commercial Contributor. If that +Commercial Contributor then makes performance claims, or offers warranties +related to Product X, those performance claims and warranties are such +Commercial Contributor's responsibility alone. Under this section, the +Commercial Contributor would have to defend claims against the other +Contributors related to those performance claims and warranties, and if a court +requires any other Contributor to pay any damages as a result, the Commercial +Contributor must pay those damages. + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON +AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS +OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF +TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. +Each Recipient is solely responsible for determining the appropriateness of +using and distributing the Program and assumes all risks associated with its +exercise of rights under this Agreement, including but not limited to the risks +and costs of program errors, compliance with applicable laws, damage to or loss +of data, programs or equipment, and unavailability or interruption of +operations. + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY +CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST +PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY +WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS +GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under applicable +law, it shall not affect the validity or enforceability of the remainder of the +terms of this Agreement, and without further action by the parties hereto, such +provision shall be reformed to the minimum extent necessary to make such +provision valid and enforceable. + +If Recipient institutes patent litigation against a Contributor with respect to +a patent applicable to software (including a cross-claim or counterclaim in a +lawsuit), then any patent licenses granted by that Contributor to such +Recipient under this Agreement shall terminate as of the date such litigation +is filed. In addition, if Recipient institutes patent litigation against any +entity (including a cross-claim or counterclaim in a lawsuit) alleging that the +Program itself (excluding combinations of the Program with other software or +hardware) infringes such Recipient's patent(s), then such Recipient's rights +granted under Section 2(b) shall terminate as of the date such litigation is +filed. + +All Recipient's rights under this Agreement shall terminate if it fails to +comply with any of the material terms or conditions of this Agreement and does +not cure such failure in a reasonable period of time after becoming aware of +such noncompliance. If all Recipient's rights under this Agreement terminate, +Recipient agrees to cease use and distribution of the Program as soon as +reasonably practicable. However, Recipient's obligations under this Agreement +and any licenses granted by Recipient relating to the Program shall continue +and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, but in +order to avoid inconsistency the Agreement is copyrighted and may only be +modified in the following manner. The Agreement Steward reserves the right to +publish new versions (including revisions) of this Agreement from time to time. +No one other than the Agreement Steward has the right to modify this Agreement. +IBM is the initial Agreement Steward. IBM may assign the responsibility to +serve as the Agreement Steward to a suitable separate entity. Each new version +of the Agreement will be given a distinguishing version number. The Program +(including Contributions) may always be distributed subject to the version of +the Agreement under which it was received. In addition, after a new version of +the Agreement is published, Contributor may elect to distribute the Program +(including its Contributions) under the new version. Except as expressly +stated in Sections 2(a) and 2(b) above, Recipient receives no rights or +licenses to the intellectual property of any Contributor under this Agreement, +whether expressly, by implication, estoppel or otherwise. All rights in the +Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the +intellectual property laws of the United States of America. No party to this +Agreement will bring a legal action under this Agreement more than one year +after the cause of action arose. Each party waives its rights to a jury trial +in any resulting litigation. + +Special exception for LZMA compression module +--------------------------------------------- + +Igor Pavlov and Amir Szekely, the authors of the LZMA compression module for +NSIS, expressly permit you to statically or dynamically link your code (or bind +by name) to the files from the LZMA compression module for NSIS without +subjecting your linked code to the terms of the Common Public license version +1.0. Any modifications or additions to files from the LZMA compression module +for NSIS, however, are subject to the terms of the Common Public License +version 1.0. + +clamd/dazukio.c, dazukio.h, dazukoio_compat12.c, dazukoio_compat12.h, +dazukoio_xp.h, and dazuko_xp.h: + + Copyright (c) 2002, 2003, 2004 H+BEDV Datentechnik GmbH + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of Dazuko nor the names of its contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + +libclamav/snprintf.c is Copyright Patrick Powell 1995 + + This code is based on code written by Patrick Powell (papowell@astart.com) + It may be used for any purpose as long as this notice remains intact + on all source code distributions +libclamav/mspack.c, libclamav/mspack.h are Copyright (C) 2003-2004 Stuart Caie +libclamunrar_iface/unrar_iface.c and libclamunrar_iface/unrar_iface.h are +Copyright (C) 2007 Sourcefire, Inc. +shared/sha256.c and shared/sha256.h are Copyright (C) 2001 Niels Moller + +and are licensed under the terms of the LGPL: + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; version 2.1 of the + License. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. + +All files in libclamav/regex/ are Copyright (c) 1992, 1993, 1994 Henry Spencer +and the Regents of the University of California. They are licensed under the +BSD license: + + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + +On Debian GNU/Linux systems, the complete text of the BSD License can be found +in `/usr/share/common-licenses/BSD'. + +******************************************************************************** + This document contains licence details for files in libclamav/nsis. It can + be accessed on-line at http://nsis.sourceforge.net/License +******************************************************************************** + +Copyright (C) 1995-2007 Contributors + +More detailed copyright information can be found in the individual source code +files. + +Applicable licenses +------------------- + +* All NSIS source code, plug-ins, documentation, examples, header files and + graphics, with the exception of the compression modules and where otherwise + noted, are licensed under the zlib/libpng license. + +* The zlib compression module for NSIS is licensed under the zlib/libpng + license. + +* The bzip2 compression module for NSIS is licensed under the bzip2 license. + +* The lzma compression module for NSIS is licensed under the Common Public + License version 1.0. + +zlib/libpng license +------------------- + +This software is provided 'as-is', without any express or implied warranty. In +no event will the authors be held liable for any damages arising from the use +of this software. + +Permission is granted to anyone to use this software for any purpose, including +commercial applications, and to alter it and redistribute it freely, subject to +the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software in + a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source distribution. + +bzip2 license +------------- + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software in + a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 3. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 4. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY +OF SUCH DAMAGE. + +Julian Seward, Cambridge, UK. + +jseward@acm.org + +Common Public License version 1.0 +--------------------------------- + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC +LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM +CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + +a) in the case of the initial Contributor, the initial code and documentation + distributed under this Agreement, and b) in the case of each subsequent + Contributor: + +i) changes to the Program, and + +ii) additions to the Program; + +where such changes and/or additions to the Program originate from and are +distributed by that particular Contributor. A Contribution 'originates' from a +Contributor if it was added to the Program by such Contributor itself or anyone +acting on such Contributor's behalf. Contributions do not include additions to +the Program which: (i) are separate modules of software distributed in +conjunction with the Program under their own license agreement, and (ii) are +not derivative works of the Program. + +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents " mean patent claims licensable by a Contributor which are +necessarily infringed by the use or sale of its Contribution alone or when +combined with the Program. + +"Program" means the Contributions distributed in accordance with this Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, +including all Contributors. + +2. GRANT OF RIGHTS + +a) Subject to the terms of this Agreement, each Contributor hereby grants +Recipient a non-exclusive, worldwide, royalty-free copyright license to +reproduce, prepare derivative works of, publicly display, publicly perform, +distribute and sublicense the Contribution of such Contributor, if any, and +such derivative works, in source code and object code form. + +b) Subject to the terms of this Agreement, each Contributor hereby grants +Recipient a non-exclusive, worldwide, royalty-free patent license under +Licensed Patents to make, use, sell, offer to sell, import and otherwise +transfer the Contribution of such Contributor, if any, in source code and +object code form. This patent license shall apply to the combination of the +Contribution and the Program if, at the time the Contribution is added by the +Contributor, such addition of the Contribution causes such combination to be +covered by the Licensed Patents. The patent license shall not apply to any +other combinations which include the Contribution. No hardware per se is +licensed hereunder. + +c) Recipient understands that although each Contributor grants the licenses to +its Contributions set forth herein, no assurances are provided by any +Contributor that the Program does not infringe the patent or other intellectual +property rights of any other entity. Each Contributor disclaims any liability +to Recipient for claims brought by any other entity based on infringement of +intellectual property rights or otherwise. As a condition to exercising the +rights and licenses granted hereunder, each Recipient hereby assumes sole +responsibility to secure any other intellectual property rights needed, if any. +For example, if a third party patent license is required to allow Recipient to +distribute the Program, it is Recipient's responsibility to acquire that +license before distributing the Program. + +d) Each Contributor represents that to its knowledge it has sufficient +copyright rights in its Contribution, if any, to grant the copyright license +set forth in this Agreement. + +3. REQUIREMENTS + +A Contributor may choose to distribute the Program in object code form under +its own license agreement, provided that: + +a) it complies with the terms and conditions of this Agreement; and + +b) its license agreement: + +i) effectively disclaims on behalf of all Contributors all warranties and +conditions, express and implied, including warranties or conditions of title +and non-infringement, and implied warranties or conditions of merchantability +and fitness for a particular purpose; + +ii) effectively excludes on behalf of all Contributors all liability for +damages, including direct, indirect, special, incidental and consequential +damages, such as lost profits; + +iii) states that any provisions which differ from this Agreement are offered by +that Contributor alone and not by any other party; and + +iv) states that source code for the Program is available from such Contributor, +and informs licensees how to obtain it in a reasonable manner on or through a +medium customarily used for software exchange. + +When the Program is made available in source code form: + +a) it must be made available under this Agreement; and + +b) a copy of this Agreement must be included with each copy of the Program. + +Contributors may not remove or alter any copyright notices contained within the +Program. + +Each Contributor must identify itself as the originator of its Contribution, if +any, in a manner that reasonably allows subsequent Recipients to identify the +originator of the Contribution. + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain responsibilities with +respect to end users, business partners and the like. While this license is +intended to facilitate the commercial use of the Program, the Contributor who +includes the Program in a commercial product offering should do so in a manner +which does not create potential liability for other Contributors. Therefore, if +a Contributor includes the Program in a commercial product offering, such +Contributor ("Commercial Contributor") hereby agrees to defend and indemnify +every other Contributor ("Indemnified Contributor") against any losses, damages +and costs (collectively "Losses") arising from claims, lawsuits and other legal +actions brought by a third party against the Indemnified Contributor to the +extent caused by the acts or omissions of such Commercial Contributor in +connection with its distribution of the Program in a commercial product +offering. The obligations in this section do not apply to any claims or Losses +relating to any actual or alleged intellectual property infringement. In order +to qualify, an Indemnified Contributor must: a) promptly notify the Commercial +Contributor in writing of such claim, and b) allow the Commercial Contributor +to control, and cooperate with the Commercial Contributor in, the defense and +any related settlement negotiations. The Indemnified Contributor may +participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial product +offering, Product X. That Contributor is then a Commercial Contributor. If that +Commercial Contributor then makes performance claims, or offers warranties +related to Product X, those performance claims and warranties are such +Commercial Contributor's responsibility alone. Under this section, the +Commercial Contributor would have to defend claims against the other +Contributors related to those performance claims and warranties, and if a court +requires any other Contributor to pay any damages as a result, the Commercial +Contributor must pay those damages. + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON +AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS +OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF +TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. +Each Recipient is solely responsible for determining the appropriateness of +using and distributing the Program and assumes all risks associated with its +exercise of rights under this Agreement, including but not limited to the risks +and costs of program errors, compliance with applicable laws, damage to or loss +of data, programs or equipment, and unavailability or interruption of +operations. + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY +CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST +PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY +WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS +GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under applicable +law, it shall not affect the validity or enforceability of the remainder of the +terms of this Agreement, and without further action by the parties hereto, such +provision shall be reformed to the minimum extent necessary to make such +provision valid and enforceable. + +If Recipient institutes patent litigation against a Contributor with respect to +a patent applicable to software (including a cross-claim or counterclaim in a +lawsuit), then any patent licenses granted by that Contributor to such +Recipient under this Agreement shall terminate as of the date such litigation +is filed. In addition, if Recipient institutes patent litigation against any +entity (including a cross-claim or counterclaim in a lawsuit) alleging that the +Program itself (excluding combinations of the Program with other software or +hardware) infringes such Recipient's patent(s), then such Recipient's rights +granted under Section 2(b) shall terminate as of the date such litigation is +filed. + +All Recipient's rights under this Agreement shall terminate if it fails to +comply with any of the material terms or conditions of this Agreement and does +not cure such failure in a reasonable period of time after becoming aware of +such noncompliance. If all Recipient's rights under this Agreement terminate, +Recipient agrees to cease use and distribution of the Program as soon as +reasonably practicable. However, Recipient's obligations under this Agreement +and any licenses granted by Recipient relating to the Program shall continue +and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, but in +order to avoid inconsistency the Agreement is copyrighted and may only be +modified in the following manner. The Agreement Steward reserves the right to +publish new versions (including revisions) of this Agreement from time to time. +No one other than the Agreement Steward has the right to modify this Agreement. +IBM is the initial Agreement Steward. IBM may assign the responsibility to +serve as the Agreement Steward to a suitable separate entity. Each new version +of the Agreement will be given a distinguishing version number. The Program +(including Contributions) may always be distributed subject to the version of +the Agreement under which it was received. In addition, after a new version of +the Agreement is published, Contributor may elect to distribute the Program +(including its Contributions) under the new version. Except as expressly +stated in Sections 2(a) and 2(b) above, Recipient receives no rights or +licenses to the intellectual property of any Contributor under this Agreement, +whether expressly, by implication, estoppel or otherwise. All rights in the +Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the +intellectual property laws of the United States of America. No party to this +Agreement will bring a legal action under this Agreement more than one year +after the cause of action arose. Each party waives its rights to a jury trial +in any resulting litigation. + +Special exception for LZMA compression module +--------------------------------------------- + +Igor Pavlov and Amir Szekely, the authors of the LZMA compression module for +NSIS, expressly permit you to statically or dynamically link your code (or bind +by name) to the files from the LZMA compression module for NSIS without +subjecting your linked code to the terms of the Common Public license version +1.0. Any modifications or additions to files from the LZMA compression module +for NSIS, however, are subject to the terms of the Common Public License +version 1.0. + + +The libclamunrar code has been stripped from the orig tarball due to +license incompatibilities. diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/NEWS.Debian /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/NEWS.Debian --- clamav-0.92~dfsg/debian/NEWS.Debian 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/NEWS.Debian 2008-04-18 08:49:42.000000000 -0400 @@ -1,3 +1,10 @@ +clamav (0.92.1~dfsg-1) unstable; urgency=low + + * unrar support is disabled in clamav due to licensing issues. We're + sorry for the inconvenience and we're working on a solution. + + -- Stephen Gran Tue, 12 Feb 2008 02:06:23 +0000 + clamav (0.81-1) unstable; urgency=medium * clamav-milter now by default scans messages internally. This may not be diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/patches/00list /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/patches/00list --- clamav-0.92~dfsg/debian/patches/00list 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/patches/00list 2008-04-18 08:49:42.000000000 -0400 @@ -3,5 +3,3 @@ 19_freshclam-manpage-info.dpatch 24_nullmailer_ftbfs.dpatch 25_skip_sendmail.cf.dpatch -26_pe.c.CVE-2008-0318.dpatch -27_others.c.CVE-2007-6595.dpatch diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/patches/26_pe.c.CVE-2008-0318.dpatch /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/patches/26_pe.c.CVE-2008-0318.dpatch --- clamav-0.92~dfsg/debian/patches/26_pe.c.CVE-2008-0318.dpatch 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/patches/26_pe.c.CVE-2008-0318.dpatch 1969-12-31 19:00:00.000000000 -0500 @@ -1,31 +0,0 @@ -#! /bin/sh /usr/share/dpatch/dpatch-run -## 26_pe.c.CVE-2008-0318.dpatch by Leonel Nunez -## -## All lines beginning with `## DP:' are a description of the patch. -## DP: No description. - -@DPATCH@ -diff -urNad clamav-0.92~dfsg~/libclamav/pe.c clamav-0.92~dfsg/libclamav/pe.c ---- clamav-0.92~dfsg~/libclamav/pe.c 2007-12-10 07:13:16.000000000 -0700 -+++ clamav-0.92~dfsg/libclamav/pe.c 2008-02-11 22:44:40.000000000 -0700 -@@ -813,6 +813,19 @@ - } - } - -+ if (exe_sections[i].uvsz>>31 || exe_sections[i].ursz>>31) { -+ cli_dbgmsg("Found PE values with sign bit set\n"); -+ free(section_hdr); -+ free(exe_sections); -+ if(DETECT_BROKEN) { -+ if(ctx->virname) -+ *ctx->virname = "Broken.Executable"; -+ return CL_VIRUS; -+ } -+ return CL_CLEAN; -+ } -+ -+ - if(!i) { - if (DETECT_BROKEN && exe_sections[i].urva!=hdr_size) { /* Bad first section RVA */ - cli_dbgmsg("First section is in the wrong place\n"); - diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/patches/27_others.c.CVE-2007-6595.dpatch /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/patches/27_others.c.CVE-2007-6595.dpatch --- clamav-0.92~dfsg/debian/patches/27_others.c.CVE-2007-6595.dpatch 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/patches/27_others.c.CVE-2007-6595.dpatch 1969-12-31 19:00:00.000000000 -0500 @@ -1,26 +0,0 @@ -#! /bin/sh /usr/share/dpatch/dpatch-run -## 27_others.c.CVE-2007-6595.dpatch by Leonel Nunez -## -## All lines beginning with `## DP:' are a description of the patch. -## DP: No description. - -@DPATCH@ -diff -urNad clamav-0.92~dfsg~/libclamav/others.c clamav-0.92~dfsg/libclamav/others.c ---- clamav-0.92~dfsg~/libclamav/others.c 2007-12-12 15:35:59.000000000 -0700 -+++ clamav-0.92~dfsg/libclamav/others.c 2008-02-11 22:48:10.000000000 -0700 -@@ -492,8 +492,12 @@ - if(!*name) - return CL_EMEM; - -- *fd = open(*name, O_RDWR|O_CREAT|O_TRUNC|O_BINARY, S_IRWXU); -- if(*fd == -1) { -+ *fd = open(*name, O_RDWR|O_CREAT|O_TRUNC|O_BINARY|O_EXCL, S_IRWXU); -+ /* -+ * EEXIST is almost impossible to occur, so we just treat it as other -+ * errors -+ */ -+ if(*fd == -1) { - cli_errmsg("cli_gentempfd: Can't create temporary file %s: %s\n", *name, strerror(errno)); - free(*name); - return CL_EIO; - diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/po/cs.po /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/po/cs.po --- clamav-0.92~dfsg/debian/po/cs.po 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/po/cs.po 2008-04-18 08:49:42.000000000 -0400 @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: clamav\n" -"Report-Msgid-Bugs-To: sgran@debian.org\n" -"POT-Creation-Date: 2008-01-21 17:53-0800\n" +"Report-Msgid-Bugs-To: Source: clamav@packages.debian.org\n" +"POT-Creation-Date: 2008-04-17 23:46-0400\n" "PO-Revision-Date: 2007-10-15 19:16+0200\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/po/da.po /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/po/da.po --- clamav-0.92~dfsg/debian/po/da.po 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/po/da.po 2008-04-18 08:49:42.000000000 -0400 @@ -4,8 +4,8 @@ msgid "" msgstr "" "Project-Id-Version: clamav_0.69-0.70-rc-2_da\n" -"Report-Msgid-Bugs-To: sgran@debian.org\n" -"POT-Creation-Date: 2008-02-12 17:20+0000\n" +"Report-Msgid-Bugs-To: Source: clamav@packages.debian.org\n" +"POT-Creation-Date: 2008-04-17 23:46-0400\n" "PO-Revision-Date: 2005-06-22 12:57+0200\n" "Last-Translator: Claus Hindsgaul \n" "Language-Team: Danish \n" @@ -17,59 +17,46 @@ #. Type: select #. Choices -#. flag:translate!:2,3 -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "daemon" msgstr "" #. Type: select #. Choices -#: ../clamav-freshclam.templates:5 -msgid "ifup.d" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 -msgid "cron" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "manual" msgstr "" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Virus database update method:" msgstr "Opdateringsmetode for virusdatabase:" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Please choose the method for virus database updates." msgstr "Vælg på hvilken måde virusdatabasen skal opdateres." -# | msgid "" -# | " daemon : freshclam is running as a daemon all the time. You should " -# | "choose\n" -# | " this option if you have a permanent network connection.\n" -# | " ifup.d : freshclam will be running as a daemon as long as your Internet\n" -# | " connection is up. Choose this one if you have a dialup " -# | "Internet\n" -# | " connection and don't want freshclam to initiate new " -# | "connections.\n" -# | " cron : freshclam is started from cron. Choose if you want full " -# | "control\n" -# | " of when the database is updated.\n" -# | " manual : No automatic invocation of freshclam. This is not recommended,\n" -# | " as clamav's database is constantly updated." #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 #, fuzzy +#| msgid "" +#| " daemon : freshclam is running as a daemon all the time. You should " +#| "choose\n" +#| " this option if you have a permanent network connection.\n" +#| " ifup.d : freshclam will be running as a daemon as long as your Internet\n" +#| " connection is up. Choose this one if you have a dialup " +#| "Internet\n" +#| " connection and don't want freshclam to initiate new " +#| "connections.\n" +#| " cron : freshclam is started from cron. Choose if you want full " +#| "control\n" +#| " of when the database is updated.\n" +#| " manual : No automatic invocation of freshclam. This is not recommended,\n" +#| " as clamav's database is constantly updated." msgid "" " daemon: freshclam is running as a daemon all the time. You should choose\n" " this option if you have a permanent network connection;\n" @@ -96,26 +83,26 @@ #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Local database mirror site:" msgstr "Lokalt databasespejl:" #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Please select the closest local mirror site." msgstr "Vælg det nærmeste lokale spejl." -# | msgid "" -# | "Freshclam updates its database from a world wide network of mirror " -# | "sites. Please select the mirror closest to you. If you leave it at the " -# | "default setting, an attempt will be made to provide you with a nearby " -# | "mirror, but this attempt may not always provide you with the closest " -# | "mirror site." #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 #, fuzzy +#| msgid "" +#| "Freshclam updates its database from a world wide network of mirror " +#| "sites. Please select the mirror closest to you. If you leave it at the " +#| "default setting, an attempt will be made to provide you with a nearby " +#| "mirror, but this attempt may not always provide you with the closest " +#| "mirror site." msgid "" "Freshclam updates its database from a world wide network of mirror sites. " "Please select the closest mirror. If you leave the default setting, an " @@ -128,17 +115,17 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "HTTP proxy information (leave blank for none):" msgstr "HTTP-proxyoplysninger (lad feltet stå tomt hvis ingen):" -# | msgid "" -# | "If you need to use a HTTP proxy to access the outside world, enter the " -# | "proxy information here. Otherwise, leave this blank." #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 #, fuzzy +#| msgid "" +#| "If you need to use a HTTP proxy to access the outside world, enter the " +#| "proxy information here. Otherwise, leave this blank." msgid "" "If you need to use an HTTP proxy to access the outside world, enter the " "proxy information here. Otherwise, leave this blank." @@ -148,19 +135,19 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "Please use URL syntax (\"http://host[:port]\") here." msgstr "Brug URL-syntaksen (\"http://vært[:port]\") her." #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "Proxy user information (leave blank for none):" msgstr "Proxy-brugeroplysninger (lad feltet stå tomt hvis ingen):" #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "" "If you need to supply a username and password to the proxy, enter it here. " "Otherwise, leave this blank." @@ -168,48 +155,48 @@ "Hvis proxyen kræver brugernavn og adgangskode, så angiv dem her. Ellers lad " "feltet stå tomt." -# | msgid "" -# | "When entering user information, use the standard form of \"user:pass\"" #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 #, fuzzy +#| msgid "" +#| "When entering user information, use the standard form of \"user:pass\"" msgid "When entering user information, use the standard form of \"user:pass\"." msgstr "" "Brug standardformen \"bruger:adgangskode\" når du angiver brugeroplysninger" #. Type: string #. Description -#: ../clamav-freshclam.templates:52 +#: ../clamav-freshclam.templates:5001 msgid "Number of freshclam updates per day:" msgstr "Antal daglige freshclam-opdateringer:" -# | msgid "Name of the network interface connected to the Internet:" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 #, fuzzy +#| msgid "Name of the network interface connected to the Internet:" msgid "Network interface connected to the Internet:" msgstr "Navn på den netforbindelse, der er forbundet til internettet:" -# | msgid "Name of the network interface connected to the Internet:" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 #, fuzzy +#| msgid "Name of the network interface connected to the Internet:" msgid "" "Please enter the name of the network interface connected to the Internet. " "Example: eth0." msgstr "Navn på den netforbindelse, der er forbundet til internettet:" -# | msgid "" -# | "If the daemon runs when the network is down the log file is filled with a " -# | "lot of entries like 'ERROR: Connection with database.clamav.net failed.', " -# | "making it easy to miss when freshclam really can't update the database." #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 #, fuzzy +#| msgid "" +#| "If the daemon runs when the network is down the log file is filled with a " +#| "lot of entries like 'ERROR: Connection with database.clamav.net failed.', " +#| "making it easy to miss when freshclam really can't update the database." msgid "" "If the daemon runs when the network is down, the log file will be filled " "with entries like 'ERROR: Connection with database.clamav.net failed.', " @@ -222,7 +209,7 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "You can leave this field blank and the daemon will be started from the " "initialization scripts instead. You should then make sure the computer is " @@ -231,28 +218,28 @@ #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "Should clamd be notified after updates?" msgstr "Skal clamd informeres efter opdateringer?" #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "" "Please confirm whether clamd should be notified to reload the database after " "successful updates." msgstr "Bekræft om clamd skal bedes genindlæse databasen efter opdateringer." -# | msgid "" -# | "If you do not choose this option, clamd's database reloads will be " -# | "notably delayed (it performs this check every 6 hours by default), posing " -# | "the risk that a new virus may slip through although your database is up " -# | "to date. Do not use this if you do not use clamd, as it will produce " -# | "errors." #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 #, fuzzy +#| msgid "" +#| "If you do not choose this option, clamd's database reloads will be " +#| "notably delayed (it performs this check every 6 hours by default), posing " +#| "the risk that a new virus may slip through although your database is up " +#| "to date. Do not use this if you do not use clamd, as it will produce " +#| "errors." msgid "" "If you do not choose this option, clamd's database reloads will be notably " "delayed (it performs this check every 6 hours by default), posing the risk " @@ -265,31 +252,31 @@ "er fuldt opdateret. Brug ikke denne indstilling, hvis du ikke bruger clamd, " "da den så vil resultere i fejl." -# | msgid "Do you want to handle the configuration file with debconf?" #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 #, fuzzy +#| msgid "Do you want to handle the configuration file with debconf?" msgid "Handle the configuration file automatically?" msgstr "Vil du håndtere opsætningsfilen med debconf?" -# | msgid "There are quite a few options to be configured for clamav-base." #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 #, fuzzy +#| msgid "There are quite a few options to be configured for clamav-base." msgid "Some options must be configured for clamav-base." msgstr "Der er ganske mange indstillinger, der skal sættes op i clamav-base." -# | msgid "" -# | "The ClamAV suite won't work if it isn't configured. If you don't choose " -# | "debconf you'll have to configure /etc/clamav/clamd.conf manually or run " -# | "'dpkg-reconfigure clamav-base' later. Whether you choose debconf or not, " -# | "manual changes in /etc/clamav/clamd.conf will be respected." #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 #, fuzzy +#| msgid "" +#| "The ClamAV suite won't work if it isn't configured. If you don't choose " +#| "debconf you'll have to configure /etc/clamav/clamd.conf manually or run " +#| "'dpkg-reconfigure clamav-base' later. Whether you choose debconf or not, " +#| "manual changes in /etc/clamav/clamd.conf will be respected." msgid "" "The ClamAV suite won't work if it isn't configured. If you do not configure " "it automatically, you'll have to configure /etc/clamav/clamd.conf manually " @@ -303,24 +290,24 @@ #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Socket type:" msgstr "Sokkeltype:" #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Please choose the type of socket clamd will be listening on." msgstr "Vælg den sokkeltype, clamd skal lytte på." -# | msgid "" -# | "If you choose TCP clamd can be accessed remotely. This choice isn't " -# | "recommended since ClamAV is a very young project. If you choose local " -# | "UNIX sockets, clamd can be accessed through a file." #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 #, fuzzy +#| msgid "" +#| "If you choose TCP clamd can be accessed remotely. This choice isn't " +#| "recommended since ClamAV is a very young project. If you choose local " +#| "UNIX sockets, clamd can be accessed through a file." msgid "" "If you choose TCP, clamd can be accessed remotely. If you choose local UNIX " "sockets, clamd can be accessed through a file. Local UNIX sockets are " @@ -330,42 +317,42 @@ "ikke, da ClamAV er et ret nyt projekt. Hvis du vælger lokale UNIX-sokler, " "kan dæmonen nås via en fil." -# | msgid "Local (Unix) socket clamd will listen on:" #. Type: string #. Description -#: ../clamav-base.templates:28 +#: ../clamav-base.templates:3001 #, fuzzy +#| msgid "Local (Unix) socket clamd will listen on:" msgid "Local (UNIX) socket clamd will listen on:" msgstr "Lokal (Unix) sokkel, clamd skal lytte på:" -# | msgid "Gracefully handle left-over Unix socket files?" #. Type: boolean #. Description -#: ../clamav-base.templates:33 +#: ../clamav-base.templates:4001 #, fuzzy +#| msgid "Gracefully handle left-over Unix socket files?" msgid "Gracefully handle left-over UNIX socket files?" msgstr "Lempelig håndtering af overskydene Unix-sokkelfiler?" #. Type: string #. Description -#: ../clamav-base.templates:38 +#: ../clamav-base.templates:5001 msgid "TCP port clamd will listen on:" msgstr "TCP-port, clamd skal lytte på:" #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 msgid "IP address clamd will listen on:" msgstr "IP-adresse, clamd skal lytte på:" -# | msgid "" -# | "Enter \"any\" to listen on every IP address configured. If you instead " -# | "want to listen on a single address or hostname, enter that address (e.g. " -# | "\"127.0.0.1\") or hostname." #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 #, fuzzy +#| msgid "" +#| "Enter \"any\" to listen on every IP address configured. If you instead " +#| "want to listen on a single address or hostname, enter that address (e.g. " +#| "\"127.0.0.1\") or hostname." msgid "" "Enter \"any\" to listen on every IP address configured. If you want to " "listen on a single address or host name, enter it here." @@ -376,32 +363,32 @@ #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "Mandatory numeric value" msgstr "" #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "This question requires a numeric answer." msgstr "" #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 msgid "Do you want to enable mail scanning?" msgstr "Ønsker du at aktivere post-skanning?" -# | msgid "" -# | "This option enables scanning mail contents for viruses. Although this is " -# | "the least stable part of libclamav, you need this option enabled if you " -# | "want to use clamav-milter. It is recommended that you use a separate " -# | "unpacker to extract any MIME parts of email messages if you want to scan " -# | "email." #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 #, fuzzy +#| msgid "" +#| "This option enables scanning mail contents for viruses. Although this is " +#| "the least stable part of libclamav, you need this option enabled if you " +#| "want to use clamav-milter. It is recommended that you use a separate " +#| "unpacker to extract any MIME parts of email messages if you want to scan " +#| "email." msgid "" "This option enables scanning mail contents for viruses. You need this option " "enabled if you want to use clamav-milter. It is recommended that you use a " @@ -416,17 +403,17 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "Do you want to enable archive scanning?" msgstr "Vil du aktivere skanning af arkiver?" -# | msgid "" -# | "If archive scanning is enabled, the daemon will extract archives such as " -# | "bz2, tar.gz, deb and many more to check their contents for viruses." #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 #, fuzzy +#| msgid "" +#| "If archive scanning is enabled, the daemon will extract archives such as " +#| "bz2, tar.gz, deb and many more to check their contents for viruses." msgid "" "If archive scanning is enabled, the daemon will extract archives such as " "bz2, tar.gz, deb and many more, to check their contents for viruses." @@ -434,13 +421,13 @@ "Hvis arkivskanning er aktiveret, vil dæmonen pakke arkiver såsom bz2, tar." "gz, deb med flere ud for at tjekke deres indhold for virusser." -# | msgid "" -# | "For more information about what archives are supported see /usr/share/doc/" -# | "clamav-docs/clamdoc.pdf or the manpage clamscan(5)." #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 #, fuzzy +#| msgid "" +#| "For more information about what archives are supported see /usr/share/doc/" +#| "clamav-docs/clamdoc.pdf or the manpage clamscan(5)." msgid "" "For more information about what archives are supported, see /usr/share/doc/" "clamav-docs/clamdoc.pdf or the manpage clamscan(5)." @@ -450,18 +437,18 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 msgid "Do you want to enable RAR archive scanning?" msgstr "Ønsker du at aktivere skanning af RAR-arkiver?" -# | msgid "" -# | "This enables the builtin RAR archiver. Use with caution, as the RAR code " -# | "may have memory leaks. Clamscan can also use external RAR programs, such " -# | "as unrar, although clamd does not." #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 #, fuzzy +#| msgid "" +#| "This enables the builtin RAR archiver. Use with caution, as the RAR code " +#| "may have memory leaks. Clamscan can also use external RAR programs, such " +#| "as unrar, although clamd does not." msgid "" "This enables the builtin RAR archiver. Use with caution, as the RAR code may " "have memory leaks. Clamscan can also use external RAR programs, such as " @@ -473,17 +460,17 @@ #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 msgid "Maximum stream length (unit Mb) allowed:" msgstr "Maksimalt tilladt længde af datastrøm (i Mb):" -# | msgid "" -# | "If you want you can set a limit on the stream length that can be scanned. " -# | "The value 0 disables this limit." #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 #, fuzzy +#| msgid "" +#| "If you want you can set a limit on the stream length that can be scanned. " +#| "The value 0 disables this limit." msgid "You can set a limit on the stream length that can be scanned." msgstr "" "Hvis du ønsker det, kan du sætte en begrænsning på størrelsen af de strømme, " @@ -491,17 +478,35 @@ #. Type: string #. Description -#: ../clamav-base.templates:91 +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#: ../clamav-base.templates:11001 ../clamav-base.templates:12001 +#: ../clamav-base.templates:13001 ../clamav-base.templates:15001 +#: ../clamav-base.templates:16001 +#, fuzzy +#| msgid "Enter 0 to disable maximal directory depth limit." +msgid "Entering '0' will disable this limit." +msgstr "Skriv 0 hvis du ikke vil begrænse mappedybden." + +#. Type: string +#. Description +#: ../clamav-base.templates:12001 msgid "Limit on the Archive recursion:" msgstr "Begrænsning for arkiv-rekursion:" -# | msgid "" -# | "This setting places a limit on recursion within archives, for example, a " -# | "tar file that is also gzipped. The value 0 disables the recursion limit." #. Type: string #. Description -#: ../clamav-base.templates:91 +#: ../clamav-base.templates:12001 #, fuzzy +#| msgid "" +#| "This setting places a limit on recursion within archives, for example, a " +#| "tar file that is also gzipped. The value 0 disables the recursion limit." msgid "" "This setting places a limit on recursion within archives, for example, a tar " "file that is also gzipped." @@ -512,19 +517,19 @@ #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 msgid "Limit on Archive compression:" msgstr "Begrænsning for arkiv-komprimering:" -# | msgid "" -# | "This setting places a limit on compression within archives, to guard " -# | "against archive bombs (small files that expand to massive ones, a form of " -# | "Denial of Service Attack). However, this limit may be too low for some " -# | "settings. The value 0 disables this limit." #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 #, fuzzy +#| msgid "" +#| "This setting places a limit on compression within archives, to guard " +#| "against archive bombs (small files that expand to massive ones, a form of " +#| "Denial of Service Attack). However, this limit may be too low for some " +#| "settings. The value 0 disables this limit." msgid "" "This setting places a limit on compression within archives, to guard against " "archive bombs (small files that expand to massive ones, a form of Denial of " @@ -537,91 +542,83 @@ #. Type: string #. Description -#: ../clamav-base.templates:111 +#: ../clamav-base.templates:14001 msgid "Limit for the maximum number of files in an archive:" msgstr "Begrænsning af antallet af filer i et arkiv:" #. Type: string #. Description -#: ../clamav-base.templates:116 +#: ../clamav-base.templates:15001 msgid "Largest file size in Mb you will scan inside archives:" msgstr "Største filstørrelse (i Mb), du vil skanne inden i arkiver:" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 msgid "Maximum directory depth that will be allowed:" msgstr "Maksimal mappedybde, der skal tillades:" -# | msgid "Do you want the daemon to follow directory symlinks?" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 #, fuzzy +#| msgid "Do you want the daemon to follow directory symlinks?" msgid "" "This value must be set if you want to allow the daemon to follow directory " "symlinks." msgstr "Ønsker du at dæmonen skal følge symbolske mappelænker?" -# | msgid "Enter 0 to disable maximal directory depth limit." -#. Type: string -#. Description -#: ../clamav-base.templates:122 -#, fuzzy -msgid "Entering '0' will disable this limit." -msgstr "Skriv 0 hvis du ikke vil begrænse mappedybden." - #. Type: boolean #. Description -#: ../clamav-base.templates:131 +#: ../clamav-base.templates:17001 msgid "Do you want the daemon to follow directory symlinks?" msgstr "Ønsker du at dæmonen skal følge symbolske mappelænker?" #. Type: boolean #. Description -#: ../clamav-base.templates:136 +#: ../clamav-base.templates:18001 msgid "Do you want the daemon to follow regular file symlinks?" msgstr "Ønsker du at dæmonen skal følge almindelige symbolske fillænker?" #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 msgid "Timeout for stopping the thread-scanner (seconds):" msgstr "Tidsudløb før trådskanneren stoppes (sekunder):" -# | msgid "The value 0 disables the timeout." #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 #, fuzzy +#| msgid "The value 0 disables the timeout." msgid "Entering '0' will disable the timeout." msgstr "Værdien 0 deaktiverer tidsudløb." #. Type: string #. Description -#: ../clamav-base.templates:147 +#: ../clamav-base.templates:20001 msgid "Number of threads for the daemon:" msgstr "Antal tråde til dæmonen:" #. Type: string #. Description -#: ../clamav-base.templates:152 +#: ../clamav-base.templates:21001 msgid "Number of pending connections allowed:" msgstr "Antal tilladte ventende forbindelser:" #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 msgid "Do you want to use the system logger?" msgstr "Ønsker du at bruge system-loggeren?" -# | msgid "" -# | "It is possible to log daemon activity to the system logger. This can be " -# | "done independently of whether you want to log activity to a special file." #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 #, fuzzy +#| msgid "" +#| "It is possible to log daemon activity to the system logger. This can be " +#| "done independently of whether you want to log activity to a special file." msgid "" "It is possible to log the daemon activity to the system logger. This can be " "done independently of whether you want to log activity to a special file." @@ -631,30 +628,30 @@ #. Type: string #. Description -#: ../clamav-base.templates:164 +#: ../clamav-base.templates:23001 msgid "Log file for clamav-daemon (enter none to disable):" msgstr "Logfil for clamav-dæmonen (lad feltet stå tomt for at deaktivere):" #. Type: boolean #. Description -#: ../clamav-base.templates:169 +#: ../clamav-base.templates:24001 msgid "Do you want to log time information with each message?" msgstr "Vil du inkludere tidspunktet ved hver besked?" #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 msgid "Delay in seconds between daemon self checks:" msgstr "Tid i sekunder mellem dæmonens selvtjek:" -# | msgid "" -# | "During the SelfCheck the daemon checks if it needs to reload the virus " -# | "database. It also tries to repair problems caused by bugs in the daemon, " -# | "i.e in some cases it's able to repair broken data structures." #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 #, fuzzy +#| msgid "" +#| "During the SelfCheck the daemon checks if it needs to reload the virus " +#| "database. It also tries to repair problems caused by bugs in the daemon, " +#| "i.e in some cases it's able to repair broken data structures." msgid "" "During the SelfCheck the daemon checks if it needs to reload the virus " "database. It also tries to repair problems caused by bugs in the daemon, " @@ -665,23 +662,23 @@ "programfejl i dæmonen, f.eks. er den i nogle tilfælde i stand til at " "reparere ødelagte datastrukturer." -# | msgid "What user do you want to run clamav-daemon as:" #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 #, fuzzy +#| msgid "What user do you want to run clamav-daemon as:" msgid "User to run clamav-daemon as:" msgstr "Hvilken bruger vil du køre clamav-dæmonen som:" -# | msgid "" -# | "It is recommended to run the ClamAV programs as a non-priviledged user. " -# | "This will work with most MTA's with a little tweaking, but if you want to " -# | "use clamd for filesystem scans, running as root is probably unavoidable. " -# | "Please see README.Debian in the clamav-base package for details." #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 #, fuzzy +#| msgid "" +#| "It is recommended to run the ClamAV programs as a non-priviledged user. " +#| "This will work with most MTA's with a little tweaking, but if you want to " +#| "use clamd for filesystem scans, running as root is probably unavoidable. " +#| "Please see README.Debian in the clamav-base package for details." msgid "" "It is recommended to run the ClamAV programs as a non-privileged user. This " "will work with most MTAs with a little tweaking, but if you want to use " @@ -694,30 +691,30 @@ "filsystemer, kan det nok ikke undgås at køre den som root. Se README.Debian " "i pakken clamav-base for detaljer." -# | msgid "Groups for clamav-daemon (space-seperated):" #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 #, fuzzy +#| msgid "Groups for clamav-daemon (space-seperated):" msgid "Groups for clamav-daemon (space-separated):" msgstr "Grupper til clamav-daemon (adskilt af mellemrum):" #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "Please enter any extra groups for clamd." msgstr "Angiv eventuelle ekstra grupper til clamd." -# | msgid "" -# | "Clamd runs as a non-priviledged user by default. If you need clamd to be " -# | "able to access files owned by another user (e.g., in combination with an " -# | "MTA), then you will need to add clamd to the group for that piece of " -# | "software. Please see README.Debian in the clamav-base package for " -# | "details." #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 #, fuzzy +#| msgid "" +#| "Clamd runs as a non-priviledged user by default. If you need clamd to be " +#| "able to access files owned by another user (e.g., in combination with an " +#| "MTA), then you will need to add clamd to the group for that piece of " +#| "software. Please see README.Debian in the clamav-base package for " +#| "details." msgid "" "By default, clamd runs as a non-privileged user. If you need clamd to be " "able to access files owned by another user (e.g., in combination with an " diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/po/de.po /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/po/de.po --- clamav-0.92~dfsg/debian/po/de.po 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/po/de.po 2008-04-18 08:49:42.000000000 -0400 @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: clamav 0.87.1-2\n" -"Report-Msgid-Bugs-To: sgran@debian.org\n" -"POT-Creation-Date: 2008-02-12 17:20+0000\n" +"Report-Msgid-Bugs-To: Source: clamav@packages.debian.org\n" +"POT-Creation-Date: 2008-04-17 23:46-0400\n" "PO-Revision-Date: 2007-10-21 16:39+0200\n" "Last-Translator: Helge Kreutzmann \n" "Language-Team: German \n" @@ -20,38 +20,25 @@ #. Type: select #. Choices -#. flag:translate!:2,3 -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "daemon" msgstr "Daemon" #. Type: select #. Choices -#: ../clamav-freshclam.templates:5 -msgid "ifup.d" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 -msgid "cron" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "manual" msgstr "manuell" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Virus database update method:" msgstr "Aktualisierungsmethode der Virus-Datenbank:" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Please choose the method for virus database updates." msgstr "" "Bitte wählen Sie die Methode für die Aktualisierungen der Virus-Datenbank " @@ -59,7 +46,7 @@ #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "" " daemon: freshclam is running as a daemon all the time. You should choose\n" " this option if you have a permanent network connection;\n" @@ -86,19 +73,19 @@ #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Local database mirror site:" msgstr "Nächster Datenbank-Spiegel-Server:" #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Please select the closest local mirror site." msgstr "Bitte den nächsten lokalen Spiegelserver auswählen." #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "" "Freshclam updates its database from a world wide network of mirror sites. " "Please select the closest mirror. If you leave the default setting, an " @@ -111,13 +98,13 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "HTTP proxy information (leave blank for none):" msgstr "HTTP-Proxy-Server angeben (leer lassen für keinen):" #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "" "If you need to use an HTTP proxy to access the outside world, enter the " "proxy information here. Otherwise, leave this blank." @@ -128,19 +115,19 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "Please use URL syntax (\"http://host[:port]\") here." msgstr "Bitte benutzen Sie die URL-Schreibweise (\"http://Rechner[:Port]\")." #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "Proxy user information (leave blank for none):" msgstr "Proxy-Benutzer-Daten (leer lassen für keine)" #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "" "If you need to supply a username and password to the proxy, enter it here. " "Otherwise, leave this blank." @@ -150,25 +137,25 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "When entering user information, use the standard form of \"user:pass\"." msgstr "Wenn Sie Benutzerdaten eingeben, dann in der Form »Benutzer:Passwort«." #. Type: string #. Description -#: ../clamav-freshclam.templates:52 +#: ../clamav-freshclam.templates:5001 msgid "Number of freshclam updates per day:" msgstr "Anzahl der freshclam-Aktualisierungen pro Tag:" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "Network interface connected to the Internet:" msgstr "Netzwerkschnittstelle, die mit dem Internet verbunden ist:" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "Please enter the name of the network interface connected to the Internet. " "Example: eth0." @@ -178,7 +165,7 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "If the daemon runs when the network is down, the log file will be filled " "with entries like 'ERROR: Connection with database.clamav.net failed.', " @@ -191,7 +178,7 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "You can leave this field blank and the daemon will be started from the " "initialization scripts instead. You should then make sure the computer is " @@ -204,13 +191,13 @@ #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "Should clamd be notified after updates?" msgstr "Soll clamd nach Aktualisierungen benachrichtigt werden?" #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "" "Please confirm whether clamd should be notified to reload the database after " "successful updates." @@ -220,7 +207,7 @@ #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "" "If you do not choose this option, clamd's database reloads will be notably " "delayed (it performs this check every 6 hours by default), posing the risk " @@ -236,19 +223,19 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "Handle the configuration file automatically?" msgstr "Soll die Konfigurationsdatei automatisch verwaltet werden?" #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "Some options must be configured for clamav-base." msgstr "Einige Optionen für clamav-base müssen noch konfiguriert werden." #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "" "The ClamAV suite won't work if it isn't configured. If you do not configure " "it automatically, you'll have to configure /etc/clamav/clamd.conf manually " @@ -263,19 +250,19 @@ #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Socket type:" msgstr "Socket-Typ:" #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Please choose the type of socket clamd will be listening on." msgstr "Bitte wählen Sie den Socket-Typ, an dem clamd lauschen soll." #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "" "If you choose TCP, clamd can be accessed remotely. If you choose local UNIX " "sockets, clamd can be accessed through a file. Local UNIX sockets are " @@ -288,31 +275,31 @@ #. Type: string #. Description -#: ../clamav-base.templates:28 +#: ../clamav-base.templates:3001 msgid "Local (UNIX) socket clamd will listen on:" msgstr "Lokaler (UNIX-)Socket, an dem clamd auf Verbindungen warten soll:" #. Type: boolean #. Description -#: ../clamav-base.templates:33 +#: ../clamav-base.templates:4001 msgid "Gracefully handle left-over UNIX socket files?" msgstr "Großzügiger Umgang mit übrig gebliebenen UNIX-Socket-Dateien?" #. Type: string #. Description -#: ../clamav-base.templates:38 +#: ../clamav-base.templates:5001 msgid "TCP port clamd will listen on:" msgstr "TCP-Port, an dem clamd lauschen soll:" #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 msgid "IP address clamd will listen on:" msgstr "IP-Adresse, an der clamd lauschen soll:" #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 msgid "" "Enter \"any\" to listen on every IP address configured. If you want to " "listen on a single address or host name, enter it here." @@ -323,25 +310,25 @@ #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "Mandatory numeric value" msgstr "Zwingend numerischer Wert" #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "This question requires a numeric answer." msgstr "Diese Frage erwartet eine numerische Antwort." #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 msgid "Do you want to enable mail scanning?" msgstr "Soll E-Mail-Ãœberprüfung aktiviert werden?" #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 msgid "" "This option enables scanning mail contents for viruses. You need this option " "enabled if you want to use clamav-milter. It is recommended that you use a " @@ -355,13 +342,13 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "Do you want to enable archive scanning?" msgstr "Sollen Archive überprüft werden?" #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "" "If archive scanning is enabled, the daemon will extract archives such as " "bz2, tar.gz, deb and many more, to check their contents for viruses." @@ -372,7 +359,7 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "" "For more information about what archives are supported, see /usr/share/doc/" "clamav-docs/clamdoc.pdf or the manpage clamscan(5)." @@ -383,13 +370,13 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 msgid "Do you want to enable RAR archive scanning?" msgstr "Sollen RAR-Archive überprüft werden?" #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 msgid "" "This enables the builtin RAR archiver. Use with caution, as the RAR code may " "have memory leaks. Clamscan can also use external RAR programs, such as " @@ -401,13 +388,13 @@ #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 msgid "Maximum stream length (unit Mb) allowed:" msgstr "Maximale Datenstromlänge (in MByte) zulassen:" #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 msgid "You can set a limit on the stream length that can be scanned." msgstr "" "Sie können eine Obergrenze der Datenstromlänge setzen, die überprüft werden " @@ -415,13 +402,29 @@ #. Type: string #. Description -#: ../clamav-base.templates:91 +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#: ../clamav-base.templates:11001 ../clamav-base.templates:12001 +#: ../clamav-base.templates:13001 ../clamav-base.templates:15001 +#: ../clamav-base.templates:16001 +msgid "Entering '0' will disable this limit." +msgstr "Der Eingabe von »0« hebt die Begrenzung auf." + +#. Type: string +#. Description +#: ../clamav-base.templates:12001 msgid "Limit on the Archive recursion:" msgstr "Begrenzung der Rekursion im Archiv:" #. Type: string #. Description -#: ../clamav-base.templates:91 +#: ../clamav-base.templates:12001 msgid "" "This setting places a limit on recursion within archives, for example, a tar " "file that is also gzipped." @@ -431,13 +434,13 @@ #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 msgid "Limit on Archive compression:" msgstr "Grenze der Kompressionsrate in Archiven:" #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 msgid "" "This setting places a limit on compression within archives, to guard against " "archive bombs (small files that expand to massive ones, a form of Denial of " @@ -450,25 +453,25 @@ #. Type: string #. Description -#: ../clamav-base.templates:111 +#: ../clamav-base.templates:14001 msgid "Limit for the maximum number of files in an archive:" msgstr "Begrenzung der Anzahl von Dateien in einem Archiv:" #. Type: string #. Description -#: ../clamav-base.templates:116 +#: ../clamav-base.templates:15001 msgid "Largest file size in Mb you will scan inside archives:" msgstr "Maximale Dateigröße in MByte, die Sie in Archiven überprüfen wollen:" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 msgid "Maximum directory depth that will be allowed:" msgstr "Maximale Verzeichnistiefe, die Sie erlauben wollen:" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 msgid "" "This value must be set if you want to allow the daemon to follow directory " "symlinks." @@ -476,57 +479,51 @@ "Dieser Wert muss gesetzt werden, falls dem Dienst erlaubt werden soll, " "symbolischen Verzeichnis-Verweisen zu folgen." -#. Type: string -#. Description -#: ../clamav-base.templates:122 -msgid "Entering '0' will disable this limit." -msgstr "Der Eingabe von »0« hebt die Begrenzung auf." - #. Type: boolean #. Description -#: ../clamav-base.templates:131 +#: ../clamav-base.templates:17001 msgid "Do you want the daemon to follow directory symlinks?" msgstr "Soll der Dienst symbolischen Verzeichnis-Verweisen folgen?" #. Type: boolean #. Description -#: ../clamav-base.templates:136 +#: ../clamav-base.templates:18001 msgid "Do you want the daemon to follow regular file symlinks?" msgstr "Soll der Dienst normalen symbolischen Datei-Verweisen folgen?" #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 msgid "Timeout for stopping the thread-scanner (seconds):" msgstr "Zeitbeschränkung für den Stopp des Thread-Scanners (in Sekunden):" #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 msgid "Entering '0' will disable the timeout." msgstr "Die Eingabe von »0« hebt die Zeitbeschränkung auf." #. Type: string #. Description -#: ../clamav-base.templates:147 +#: ../clamav-base.templates:20001 msgid "Number of threads for the daemon:" msgstr "Anzahl der Threads für den Dienst:" #. Type: string #. Description -#: ../clamav-base.templates:152 +#: ../clamav-base.templates:21001 msgid "Number of pending connections allowed:" msgstr "Anzahl der wartenden Verbindungen:" #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 msgid "Do you want to use the system logger?" msgstr "Wollen Sie den Protokolldienst des Systems (syslog) nutzen?" #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 msgid "" "It is possible to log the daemon activity to the system logger. This can be " "done independently of whether you want to log activity to a special file." @@ -537,25 +534,25 @@ #. Type: string #. Description -#: ../clamav-base.templates:164 +#: ../clamav-base.templates:23001 msgid "Log file for clamav-daemon (enter none to disable):" msgstr "Protokolldatei für den clamav-Dienst (»none« eingeben für keine):" #. Type: boolean #. Description -#: ../clamav-base.templates:169 +#: ../clamav-base.templates:24001 msgid "Do you want to log time information with each message?" msgstr "Sollen mit jeder Meldung auch Zeitangaben mit protokolliert werden?" #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 msgid "Delay in seconds between daemon self checks:" msgstr "Zeitspanne in Sekunden zwischen Selbsttests des Dienstes:" #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 msgid "" "During the SelfCheck the daemon checks if it needs to reload the virus " "database. It also tries to repair problems caused by bugs in the daemon, " @@ -568,13 +565,13 @@ #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 msgid "User to run clamav-daemon as:" msgstr "Benutzernamen, unter dem der clamav-Dienst laufen soll:" #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 msgid "" "It is recommended to run the ClamAV programs as a non-privileged user. This " "will work with most MTAs with a little tweaking, but if you want to use " @@ -589,19 +586,19 @@ #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "Groups for clamav-daemon (space-separated):" msgstr "Gruppen des clamav-Dienstes (durch Leerzeichen getrennt):" #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "Please enter any extra groups for clamd." msgstr "Bitte jede zusätzliche Gruppe für clamd angeben." #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "" "By default, clamd runs as a non-privileged user. If you need clamd to be " "able to access files owned by another user (e.g., in combination with an " @@ -622,8 +619,8 @@ #~ "ClamAV team dropped support for the 'mirrors.txt' configuration file." #~ msgstr "" #~ "Das ClamAV-Team hat die Unterstützung für die Konfigurationsdatei " -#~ "»mirrors.txt« eingestellt, weil die Spiegel-Server-Datenbank durch das " -#~ "DNS verwaltet wird." +#~ "»mirrors.txt« eingestellt, weil die Spiegel-Server-Datenbank durch das DNS " +#~ "verwaltet wird." #~ msgid "" #~ "If additional mirrors are mentioned there, this file will be backed up " diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/po/es.po /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/po/es.po --- clamav-0.92~dfsg/debian/po/es.po 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/po/es.po 2008-04-18 08:49:42.000000000 -0400 @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: clamav 0.88.6-1\n" -"Report-Msgid-Bugs-To: sgran@debian.org\n" -"POT-Creation-Date: 2008-02-12 17:20+0000\n" +"Report-Msgid-Bugs-To: Source: clamav@packages.debian.org\n" +"POT-Creation-Date: 2008-04-17 23:46-0400\n" "PO-Revision-Date: 2007-10-07 10:54+0200\n" "Last-Translator: Javi Fernández-Sanguino \n" "Language-Team: Debian Spanish \n" @@ -36,45 +36,32 @@ #. Type: select #. Choices -#. flag:translate!:2,3 -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "daemon" msgstr "demonio" #. Type: select #. Choices -#: ../clamav-freshclam.templates:5 -msgid "ifup.d" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 -msgid "cron" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "manual" msgstr "manual" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Virus database update method:" msgstr "Método de actualización de la base de datos de virus:" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Please choose the method for virus database updates." msgstr "" "Por favor, seleccione el método de actualización de la base de datos virus." #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "" " daemon: freshclam is running as a daemon all the time. You should choose\n" " this option if you have a permanent network connection;\n" @@ -104,19 +91,19 @@ #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Local database mirror site:" msgstr "Réplica local de la base de datos:" #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Please select the closest local mirror site." msgstr "Por favor, seleccione la réplica local más cercana." #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "" "Freshclam updates its database from a world wide network of mirror sites. " "Please select the closest mirror. If you leave the default setting, an " @@ -128,13 +115,13 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "HTTP proxy information (leave blank for none):" msgstr "Información HTTP del proxy (déjelo en blanco si no tiene):" #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "" "If you need to use an HTTP proxy to access the outside world, enter the " "proxy information here. Otherwise, leave this blank." @@ -144,20 +131,20 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "Please use URL syntax (\"http://host[:port]\") here." msgstr "Por favor utilice aquí la sintaxis URL («http://host[:port]»)." #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "Proxy user information (leave blank for none):" msgstr "" "Introduzca la información del usuario proxy (déjelo en blanco si no tiene)" #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "" "If you need to supply a username and password to the proxy, enter it here. " "Otherwise, leave this blank." @@ -167,7 +154,7 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "When entering user information, use the standard form of \"user:pass\"." msgstr "" "Cuando introduzca la información del usuario utilice la forma estándar " @@ -175,19 +162,19 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:52 +#: ../clamav-freshclam.templates:5001 msgid "Number of freshclam updates per day:" msgstr "Número de actualizaciones diarias de freshclam:" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "Network interface connected to the Internet:" msgstr "Interfaz de red conectada a Internet:" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "Please enter the name of the network interface connected to the Internet. " "Example: eth0." @@ -197,20 +184,20 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "If the daemon runs when the network is down, the log file will be filled " "with entries like 'ERROR: Connection with database.clamav.net failed.', " "making it easy to miss when freshclam really can't update the database." msgstr "" "Si el demonio se ejecuta sin conexión a red el fichero de registro se " -"llenará con un montón de entradas del estilo «ERROR: Connection with " -"database.clamav.net failed.», haciendo más dificil encontrar cuándo " -"realmente no puede actualizar la base de datos." +"llenará con un montón de entradas del estilo «ERROR: Connection with database." +"clamav.net failed.», haciendo más dificil encontrar cuándo realmente no " +"puede actualizar la base de datos." #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "You can leave this field blank and the daemon will be started from the " "initialization scripts instead. You should then make sure the computer is " @@ -223,13 +210,13 @@ #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "Should clamd be notified after updates?" msgstr "¿Desea que clamd le avise tras actualizar?" #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "" "Please confirm whether clamd should be notified to reload the database after " "successful updates." @@ -239,7 +226,7 @@ #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "" "If you do not choose this option, clamd's database reloads will be notably " "delayed (it performs this check every 6 hours by default), posing the risk " @@ -254,19 +241,19 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "Handle the configuration file automatically?" msgstr "¿Quiere gestionar el fichero de configuración automáticamente?" #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "Some options must be configured for clamav-base." msgstr "Debe configurar algunas opciones para clamav-base." #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "" "The ClamAV suite won't work if it isn't configured. If you do not configure " "it automatically, you'll have to configure /etc/clamav/clamd.conf manually " @@ -281,85 +268,85 @@ #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Socket type:" msgstr "Tipo de socket:" #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Please choose the type of socket clamd will be listening on." msgstr "Seleccione el tipo de socket en el que escuchará clamd." #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "" "If you choose TCP, clamd can be accessed remotely. If you choose local UNIX " "sockets, clamd can be accessed through a file. Local UNIX sockets are " "recommended for security reasons." msgstr "" -"Si escoge TCP se podrá acceder al demonio «clamd» de forma remota. Clamd " -"será accesible a través de un fichero si escoge sockets UNIX locales. Se " +"Si escoge TCP se podrá acceder al demonio «clamd» de forma remota. Clamd será " +"accesible a través de un fichero si escoge sockets UNIX locales. Se " "recomienda el uso de sockets UNIX locales por motivos de seguridad." #. Type: string #. Description -#: ../clamav-base.templates:28 +#: ../clamav-base.templates:3001 msgid "Local (UNIX) socket clamd will listen on:" msgstr "Socket local (UNIX) en el que clamd escuchará:" #. Type: boolean #. Description -#: ../clamav-base.templates:33 +#: ../clamav-base.templates:4001 msgid "Gracefully handle left-over UNIX socket files?" msgstr "" "¿Quiere que el demonio gestione los ficheros de sockets UNIX abandonados?" #. Type: string #. Description -#: ../clamav-base.templates:38 +#: ../clamav-base.templates:5001 msgid "TCP port clamd will listen on:" msgstr "Puerto TCP en el que escuchará clamd:" #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 msgid "IP address clamd will listen on:" msgstr "Dirección IP en la que escuchará clamd:" #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 msgid "" "Enter \"any\" to listen on every IP address configured. If you want to " "listen on a single address or host name, enter it here." msgstr "" -"Escriba «any» para que escuche en cada dirección IP configurada. Si en vez " -"de eso quiere que escuche en una única dirección o nombre de servidor, " +"Escriba «any» para que escuche en cada dirección IP configurada. Si en vez de " +"eso quiere que escuche en una única dirección o nombre de servidor, " "introdúzcala aquí." #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "Mandatory numeric value" msgstr "Valor numérico obligatorio" #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "This question requires a numeric answer." msgstr "Debe proporcionar un valor numérico como respuesta a esta pregunta." #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 msgid "Do you want to enable mail scanning?" msgstr "¿Quiere habilitar el análisis del correo?" #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 msgid "" "This option enables scanning mail contents for viruses. You need this option " "enabled if you want to use clamav-milter. It is recommended that you use a " @@ -373,13 +360,13 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "Do you want to enable archive scanning?" msgstr "¿Quiere habilitar el análisis de archivos?" #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "" "If archive scanning is enabled, the daemon will extract archives such as " "bz2, tar.gz, deb and many more, to check their contents for viruses." @@ -390,24 +377,24 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "" "For more information about what archives are supported, see /usr/share/doc/" "clamav-docs/clamdoc.pdf or the manpage clamscan(5)." msgstr "" "Si desea más información sobre los tipos de archivos que se analizarán, " -"consulte «/usr/share/doc/clamav/clamdoc.pdf.gz» o la página de manual " -"clamscan(5)." +"consulte «/usr/share/doc/clamav/clamdoc.pdf.gz» o la página de manual clamscan" +"(5)." #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 msgid "Do you want to enable RAR archive scanning?" msgstr "¿Quiere habilitar el análisis de archivos RAR?" #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 msgid "" "This enables the builtin RAR archiver. Use with caution, as the RAR code may " "have memory leaks. Clamscan can also use external RAR programs, such as " @@ -419,13 +406,13 @@ #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 msgid "Maximum stream length (unit Mb) allowed:" msgstr "Longitud máxima de secuencia permitida (en unidades de Mb)?" #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 msgid "You can set a limit on the stream length that can be scanned." msgstr "" "Si lo desea puede ajustar el límite de longitud de la secuencia que podrá " @@ -433,13 +420,29 @@ #. Type: string #. Description -#: ../clamav-base.templates:91 +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#: ../clamav-base.templates:11001 ../clamav-base.templates:12001 +#: ../clamav-base.templates:13001 ../clamav-base.templates:15001 +#: ../clamav-base.templates:16001 +msgid "Entering '0' will disable this limit." +msgstr "Si introduce '0' deshabilitará este límite." + +#. Type: string +#. Description +#: ../clamav-base.templates:12001 msgid "Limit on the Archive recursion:" msgstr "Límite para la extracción recursiva de archivos:" #. Type: string #. Description -#: ../clamav-base.templates:91 +#: ../clamav-base.templates:12001 msgid "" "This setting places a limit on recursion within archives, for example, a tar " "file that is also gzipped." @@ -449,46 +452,46 @@ #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 msgid "Limit on Archive compression:" msgstr "Límite de la compresión de archivos:" #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 msgid "" "This setting places a limit on compression within archives, to guard against " "archive bombs (small files that expand to massive ones, a form of Denial of " "Service attack). However, this limit may be too low for some settings." msgstr "" "Este valor define el límite de compresión permitida en archivos. De esta " -"forma se protege contra «archivos bomba» (pequeños ficheros que se expanden " -"a ficheros muy grantes y que pueden causar una denegación de servicion). El " +"forma se protege contra «archivos bomba» (pequeños ficheros que se expanden a " +"ficheros muy grantes y que pueden causar una denegación de servicion). El " "límite por omisión, sin embargo, puede ser demasiado bajo para algunas " "configuraciones." #. Type: string #. Description -#: ../clamav-base.templates:111 +#: ../clamav-base.templates:14001 msgid "Limit for the maximum number of files in an archive:" msgstr "Límite para el número máximo de ficheros dentro de un archivo:" #. Type: string #. Description -#: ../clamav-base.templates:116 +#: ../clamav-base.templates:15001 msgid "Largest file size in Mb you will scan inside archives:" msgstr "" "Tamaño más grande de fichero en Mb que analizará dentro de los archivos:" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 msgid "Maximum directory depth that will be allowed:" msgstr "Máxima profundidad de directorio permitida:" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 msgid "" "This value must be set if you want to allow the daemon to follow directory " "symlinks." @@ -496,58 +499,52 @@ "Debe definir este valor si quiere que el demonio siga los enlaces simbólicos " "a directorios." -#. Type: string -#. Description -#: ../clamav-base.templates:122 -msgid "Entering '0' will disable this limit." -msgstr "Si introduce '0' deshabilitará este límite." - #. Type: boolean #. Description -#: ../clamav-base.templates:131 +#: ../clamav-base.templates:17001 msgid "Do you want the daemon to follow directory symlinks?" msgstr "¿Quiere que el demonio siga los enlaces simbólicos a directorios?" #. Type: boolean #. Description -#: ../clamav-base.templates:136 +#: ../clamav-base.templates:18001 msgid "Do you want the daemon to follow regular file symlinks?" msgstr "" "¿Quiere que el demonio siga los enlaces simbólicos a ficheros normales?" #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 msgid "Timeout for stopping the thread-scanner (seconds):" msgstr "Límite de tiempo para detener el análisis en hilos (en segundos):" #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 msgid "Entering '0' will disable the timeout." msgstr "Si introduce el valor '0' desactivará el límite de tiempo." #. Type: string #. Description -#: ../clamav-base.templates:147 +#: ../clamav-base.templates:20001 msgid "Number of threads for the daemon:" msgstr "Número de hilos para el demonio:" #. Type: string #. Description -#: ../clamav-base.templates:152 +#: ../clamav-base.templates:21001 msgid "Number of pending connections allowed:" msgstr "Número de conexiones pendientes permitidas:" #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 msgid "Do you want to use the system logger?" msgstr "¿Quiere usar el servicio de registro de actividades del sistema?" #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 msgid "" "It is possible to log the daemon activity to the system logger. This can be " "done independently of whether you want to log activity to a special file." @@ -558,26 +555,26 @@ #. Type: string #. Description -#: ../clamav-base.templates:164 +#: ../clamav-base.templates:23001 msgid "Log file for clamav-daemon (enter none to disable):" msgstr "" "Fichero de registro para clamav-daemon (escriba «none» para deshabilitarlo):" #. Type: boolean #. Description -#: ../clamav-base.templates:169 +#: ../clamav-base.templates:24001 msgid "Do you want to log time information with each message?" msgstr "¿Quiere registrar información de hora con cada mensaje?" #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 msgid "Delay in seconds between daemon self checks:" msgstr "Demora en segundos entre auto comprobaciones del demonio:" #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 msgid "" "During the SelfCheck the daemon checks if it needs to reload the virus " "database. It also tries to repair problems caused by bugs in the daemon, " @@ -590,13 +587,13 @@ #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 msgid "User to run clamav-daemon as:" msgstr "Usuario con el que ejecutar el demonio clamav:" #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 msgid "" "It is recommended to run the ClamAV programs as a non-privileged user. This " "will work with most MTAs with a little tweaking, but if you want to use " @@ -611,19 +608,19 @@ #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "Groups for clamav-daemon (space-separated):" msgstr "Grupos a los que asignar clamav-daemon (separdos por espacios):" #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "Please enter any extra groups for clamd." msgstr "Por favor, introduzca grupos adicionales para clamd." #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "" "By default, clamd runs as a non-privileged user. If you need clamd to be " "able to access files owned by another user (e.g., in combination with an " diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/po/fi.po /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/po/fi.po --- clamav-0.92~dfsg/debian/po/fi.po 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/po/fi.po 2008-04-18 08:49:42.000000000 -0400 @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: clamav\n" -"Report-Msgid-Bugs-To: sgran@debian.org\n" -"POT-Creation-Date: 2008-02-12 17:20+0000\n" +"Report-Msgid-Bugs-To: Source: clamav@packages.debian.org\n" +"POT-Creation-Date: 2008-04-17 23:46-0400\n" "PO-Revision-Date: 2007-10-17 12:37+0200\n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \n" @@ -14,44 +14,31 @@ #. Type: select #. Choices -#. flag:translate!:2,3 -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "daemon" msgstr "taustaprosessi" #. Type: select #. Choices -#: ../clamav-freshclam.templates:5 -msgid "ifup.d" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 -msgid "cron" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "manual" msgstr "manuaalinen" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Virus database update method:" msgstr "Virustietokannan päivitystapa:" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Please choose the method for virus database updates." msgstr "Valitse tapa, jolla virustietokanta päivitetään." #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "" " daemon: freshclam is running as a daemon all the time. You should choose\n" " this option if you have a permanent network connection;\n" @@ -80,19 +67,19 @@ #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Local database mirror site:" msgstr "Paikallinen peilitietokantasivusto:" #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Please select the closest local mirror site." msgstr "Valitse lähin paikallinen peilisivusto." #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "" "Freshclam updates its database from a world wide network of mirror sites. " "Please select the closest mirror. If you leave the default setting, an " @@ -104,13 +91,13 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "HTTP proxy information (leave blank for none):" msgstr "HTTP-välityspalvelintiedot (jätä tyhjäksi, jos ei ole):" #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "" "If you need to use an HTTP proxy to access the outside world, enter the " "proxy information here. Otherwise, leave this blank." @@ -120,19 +107,19 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "Please use URL syntax (\"http://host[:port]\") here." msgstr "Käytä URL-syntaksia (â€http://verkkonimi[:portti]â€) tässä." #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "Proxy user information (leave blank for none):" msgstr "Välityspalvelimen käyttäjätiedot (jätä tyhjäksi, jos ei ole):" #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "" "If you need to supply a username and password to the proxy, enter it here. " "Otherwise, leave this blank." @@ -142,25 +129,25 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "When entering user information, use the standard form of \"user:pass\"." msgstr "Syöttäessäsi käyttäjätietoja, käytä standardimuotoa â€tunnus:salasanaâ€." #. Type: string #. Description -#: ../clamav-freshclam.templates:52 +#: ../clamav-freshclam.templates:5001 msgid "Number of freshclam updates per day:" msgstr "Päivittäisten freshclam-päivitysten lukumäärä:" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "Network interface connected to the Internet:" msgstr "Internetiin yhdistetty verkkoliityntä:" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "Please enter the name of the network interface connected to the Internet. " "Example: eth0." @@ -168,7 +155,7 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "If the daemon runs when the network is down, the log file will be filled " "with entries like 'ERROR: Connection with database.clamav.net failed.', " @@ -181,7 +168,7 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "You can leave this field blank and the daemon will be started from the " "initialization scripts instead. You should then make sure the computer is " @@ -194,13 +181,13 @@ #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "Should clamd be notified after updates?" msgstr "Tulisiko ohjelmalle clamd tiedottaa päivityksistä?" #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "" "Please confirm whether clamd should be notified to reload the database after " "successful updates." @@ -210,7 +197,7 @@ #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "" "If you do not choose this option, clamd's database reloads will be notably " "delayed (it performs this check every 6 hours by default), posing the risk " @@ -225,19 +212,19 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "Handle the configuration file automatically?" msgstr "Muokataanko asetustiedostoa automaattisesti?" #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "Some options must be configured for clamav-base." msgstr "Ohjelmaa clamav-base varten tulee tehdä joitain asetuksia. " #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "" "The ClamAV suite won't work if it isn't configured. If you do not configure " "it automatically, you'll have to configure /etc/clamav/clamd.conf manually " @@ -252,19 +239,19 @@ #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Socket type:" msgstr "Pistoketyyppi:" #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Please choose the type of socket clamd will be listening on." msgstr "Valitse minkä tyyppistä pistoketta clamd kuuntelee." #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "" "If you choose TCP, clamd can be accessed remotely. If you choose local UNIX " "sockets, clamd can be accessed through a file. Local UNIX sockets are " @@ -276,31 +263,31 @@ #. Type: string #. Description -#: ../clamav-base.templates:28 +#: ../clamav-base.templates:3001 msgid "Local (UNIX) socket clamd will listen on:" msgstr "Paikallinen pistoke (UNIX), jota clamd kuuntelee:" #. Type: boolean #. Description -#: ../clamav-base.templates:33 +#: ../clamav-base.templates:4001 msgid "Gracefully handle left-over UNIX socket files?" msgstr "Huolehditaanko jäljelle jääneistä UNIX-pistoketiedostoista?" #. Type: string #. Description -#: ../clamav-base.templates:38 +#: ../clamav-base.templates:5001 msgid "TCP port clamd will listen on:" msgstr "TCP-portti, jota clamd kuuntelee:" #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 msgid "IP address clamd will listen on:" msgstr "IP-osoite, jota clamd kuuntelee:" #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 msgid "" "Enter \"any\" to listen on every IP address configured. If you want to " "listen on a single address or host name, enter it here." @@ -310,25 +297,25 @@ #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "Mandatory numeric value" msgstr "Pakollinen numeroarvo" #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "This question requires a numeric answer." msgstr "Tämä kysymys vaatii numeerisen vastauksen." #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 msgid "Do you want to enable mail scanning?" msgstr "Otetaanko käyttöön sähköpostien tutkinta?" #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 msgid "" "This option enables scanning mail contents for viruses. You need this option " "enabled if you want to use clamav-milter. It is recommended that you use a " @@ -342,13 +329,13 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "Do you want to enable archive scanning?" msgstr "Otetaanko käyttöön arkistojen tutkinta?" #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "" "If archive scanning is enabled, the daemon will extract archives such as " "bz2, tar.gz, deb and many more, to check their contents for viruses." @@ -358,7 +345,7 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "" "For more information about what archives are supported, see /usr/share/doc/" "clamav-docs/clamdoc.pdf or the manpage clamscan(5)." @@ -368,13 +355,13 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 msgid "Do you want to enable RAR archive scanning?" msgstr "Otetaanko käyttöön RAR-arkistojen tutkinta?" #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 msgid "" "This enables the builtin RAR archiver. Use with caution, as the RAR code may " "have memory leaks. Clamscan can also use external RAR programs, such as " @@ -386,25 +373,41 @@ #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 msgid "Maximum stream length (unit Mb) allowed:" msgstr "Syötevirran suurin sallittu pituus (yksikkö Mb):" #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 msgid "You can set a limit on the stream length that can be scanned." msgstr "Voit asettaa tutkittavan syötevirran pituudelle rajoituksen." #. Type: string #. Description -#: ../clamav-base.templates:91 +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#: ../clamav-base.templates:11001 ../clamav-base.templates:12001 +#: ../clamav-base.templates:13001 ../clamav-base.templates:15001 +#: ../clamav-base.templates:16001 +msgid "Entering '0' will disable this limit." +msgstr "Asetus 0 poistaa tämän rajoituksen." + +#. Type: string +#. Description +#: ../clamav-base.templates:12001 msgid "Limit on the Archive recursion:" msgstr "Arkistorekursion rajoitus:" #. Type: string #. Description -#: ../clamav-base.templates:91 +#: ../clamav-base.templates:12001 msgid "" "This setting places a limit on recursion within archives, for example, a tar " "file that is also gzipped." @@ -414,13 +417,13 @@ #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 msgid "Limit on Archive compression:" msgstr "Arkistopakkauksen rajoitus:" #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 msgid "" "This setting places a limit on compression within archives, to guard against " "archive bombs (small files that expand to massive ones, a form of Denial of " @@ -433,25 +436,25 @@ #. Type: string #. Description -#: ../clamav-base.templates:111 +#: ../clamav-base.templates:14001 msgid "Limit for the maximum number of files in an archive:" msgstr "Rajoitus tiedostojen määrälle arkistossa:" #. Type: string #. Description -#: ../clamav-base.templates:116 +#: ../clamav-base.templates:15001 msgid "Largest file size in Mb you will scan inside archives:" msgstr "Suurin tiedoston koko megabiteissä, joka tutkitaan arkiston sisällä:" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 msgid "Maximum directory depth that will be allowed:" msgstr "Suurin sallittu hakemistopuun syvyys:" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 msgid "" "This value must be set if you want to allow the daemon to follow directory " "symlinks." @@ -459,57 +462,51 @@ "Tämä arvo pitää olla asetettuna, jos haluat taustaprosessin seuraavan " "symbolisia hakemistolinkkejä." -#. Type: string -#. Description -#: ../clamav-base.templates:122 -msgid "Entering '0' will disable this limit." -msgstr "Asetus 0 poistaa tämän rajoituksen." - #. Type: boolean #. Description -#: ../clamav-base.templates:131 +#: ../clamav-base.templates:17001 msgid "Do you want the daemon to follow directory symlinks?" msgstr "Tuleeko taustaprosessin seurata symbolisia hakemistolinkkejä?" #. Type: boolean #. Description -#: ../clamav-base.templates:136 +#: ../clamav-base.templates:18001 msgid "Do you want the daemon to follow regular file symlinks?" msgstr "Tuleeko taustaprosessin seurata tavallisia symbolisia linkkejä?" #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 msgid "Timeout for stopping the thread-scanner (seconds):" msgstr "Tutkimisen aikakatkaisu (sekunteja):" #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 msgid "Entering '0' will disable the timeout." msgstr "Asetus 0 poistaa aikakatkaisun." #. Type: string #. Description -#: ../clamav-base.templates:147 +#: ../clamav-base.templates:20001 msgid "Number of threads for the daemon:" msgstr "Taustaprosessin säikeiden määrä:" #. Type: string #. Description -#: ../clamav-base.templates:152 +#: ../clamav-base.templates:21001 msgid "Number of pending connections allowed:" msgstr "Sallittu odottavien yhteyksien lukumäärä:" #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 msgid "Do you want to use the system logger?" msgstr "Haluatko käyttää järjestelmälokia?" #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 msgid "" "It is possible to log the daemon activity to the system logger. This can be " "done independently of whether you want to log activity to a special file." @@ -520,26 +517,26 @@ #. Type: string #. Description -#: ../clamav-base.templates:164 +#: ../clamav-base.templates:23001 msgid "Log file for clamav-daemon (enter none to disable):" msgstr "" "Ohjelman clamav-daemon lokitiedosto (jätä tyhjäksi käytöstä poistamiseksi):" #. Type: boolean #. Description -#: ../clamav-base.templates:169 +#: ../clamav-base.templates:24001 msgid "Do you want to log time information with each message?" msgstr "Haluatko tallentaa aikatiedon jokaisen viestin yhteydessä?" #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 msgid "Delay in seconds between daemon self checks:" msgstr "Taustaprosessin itsetarkistusten väli sekunneissa:" #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 msgid "" "During the SelfCheck the daemon checks if it needs to reload the virus " "database. It also tries to repair problems caused by bugs in the daemon, " @@ -552,13 +549,13 @@ #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 msgid "User to run clamav-daemon as:" msgstr "clamav-daemon ajetaan tunnuksella:" #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 msgid "" "It is recommended to run the ClamAV programs as a non-privileged user. This " "will work with most MTAs with a little tweaking, but if you want to use " @@ -573,19 +570,19 @@ #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "Groups for clamav-daemon (space-separated):" msgstr "Ohjelman clamav-daemon ryhmät (välilyönnein eroteltuina):" #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "Please enter any extra groups for clamd." msgstr "Anna mahdolliset clamdin lisäryhmät." #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "" "By default, clamd runs as a non-privileged user. If you need clamd to be " "able to access files owned by another user (e.g., in combination with an " diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/po/fr.po /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/po/fr.po --- clamav-0.92~dfsg/debian/po/fr.po 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/po/fr.po 2008-04-18 08:49:42.000000000 -0400 @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: sgran@debian.org\n" -"POT-Creation-Date: 2008-02-12 17:20+0000\n" +"Report-Msgid-Bugs-To: Source: clamav@packages.debian.org\n" +"POT-Creation-Date: 2008-04-17 23:46-0400\n" "PO-Revision-Date: 2007-10-05 08:13+0200\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" @@ -20,45 +20,32 @@ #. Type: select #. Choices -#. flag:translate!:2,3 -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "daemon" msgstr "démon" #. Type: select #. Choices -#: ../clamav-freshclam.templates:5 -msgid "ifup.d" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 -msgid "cron" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "manual" msgstr "manuelle" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Virus database update method:" msgstr "Méthode de mise à jour de la base de données des virus :" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Please choose the method for virus database updates." msgstr "" "Veuillez choisir la méthode de mise à jour de la base de données des virus." #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "" " daemon: freshclam is running as a daemon all the time. You should choose\n" " this option if you have a permanent network connection;\n" @@ -86,19 +73,19 @@ #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Local database mirror site:" msgstr "Miroir de la base de données :" #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Please select the closest local mirror site." msgstr "Veuillez choisir le miroir le plus proche." #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "" "Freshclam updates its database from a world wide network of mirror sites. " "Please select the closest mirror. If you leave the default setting, an " @@ -110,13 +97,13 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "HTTP proxy information (leave blank for none):" msgstr "Mandataire HTTP (laisser vide pour aucun) :" #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "" "If you need to use an HTTP proxy to access the outside world, enter the " "proxy information here. Otherwise, leave this blank." @@ -127,7 +114,7 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "Please use URL syntax (\"http://host[:port]\") here." msgstr "" "Les paramètres du mandataire doivent être indiqués avec la forme normalisée " @@ -135,13 +122,13 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "Proxy user information (leave blank for none):" msgstr "Identifiant pour le mandataire (laisser vide pour aucun) :" #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "" "If you need to supply a username and password to the proxy, enter it here. " "Otherwise, leave this blank." @@ -152,7 +139,7 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "When entering user information, use the standard form of \"user:pass\"." msgstr "" "Ces paramètres doivent être indiqués avec la forme normalisée « utilisateur:" @@ -160,19 +147,19 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:52 +#: ../clamav-freshclam.templates:5001 msgid "Number of freshclam updates per day:" msgstr "Nombre de mises à jour de freshclam par jour :" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "Network interface connected to the Internet:" msgstr "Nom de l'interface réseau pour la connexion Internet :" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "Please enter the name of the network interface connected to the Internet. " "Example: eth0." @@ -182,7 +169,7 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "If the daemon runs when the network is down, the log file will be filled " "with entries like 'ERROR: Connection with database.clamav.net failed.', " @@ -195,7 +182,7 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "You can leave this field blank and the daemon will be started from the " "initialization scripts instead. You should then make sure the computer is " @@ -207,13 +194,13 @@ #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "Should clamd be notified after updates?" msgstr "Faut-il notifier clamd des mises à jour ?" #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "" "Please confirm whether clamd should be notified to reload the database after " "successful updates." @@ -223,7 +210,7 @@ #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "" "If you do not choose this option, clamd's database reloads will be notably " "delayed (it performs this check every 6 hours by default), posing the risk " @@ -238,19 +225,19 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "Handle the configuration file automatically?" msgstr "Faut-il gérer le fichier de configuration automatiquement ?" #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "Some options must be configured for clamav-base." msgstr "Certaines options de clamav-base doivent être configurées." #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "" "The ClamAV suite won't work if it isn't configured. If you do not configure " "it automatically, you'll have to configure /etc/clamav/clamd.conf manually " @@ -265,19 +252,19 @@ #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Socket type:" msgstr "Type de « socket » :" #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Please choose the type of socket clamd will be listening on." msgstr "Veuillez choisir le type de « socket » où clamd sera à l'écoute." #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "" "If you choose TCP, clamd can be accessed remotely. If you choose local UNIX " "sockets, clamd can be accessed through a file. Local UNIX sockets are " @@ -290,32 +277,32 @@ #. Type: string #. Description -#: ../clamav-base.templates:28 +#: ../clamav-base.templates:3001 msgid "Local (UNIX) socket clamd will listen on:" msgstr "« Socket » locale (UNIX) où clamd sera à l'écoute :" #. Type: boolean #. Description -#: ../clamav-base.templates:33 +#: ../clamav-base.templates:4001 msgid "Gracefully handle left-over UNIX socket files?" msgstr "" "Faut-il gérer correctement les fichiers « socket » Unix restés ouverts ?" #. Type: string #. Description -#: ../clamav-base.templates:38 +#: ../clamav-base.templates:5001 msgid "TCP port clamd will listen on:" msgstr "Port TCP où clamd sera à l'écoute :" #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 msgid "IP address clamd will listen on:" msgstr "Adresse IP où clamd sera à l'écoute :" #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 msgid "" "Enter \"any\" to listen on every IP address configured. If you want to " "listen on a single address or host name, enter it here." @@ -326,25 +313,25 @@ #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "Mandatory numeric value" msgstr "Valeur numérique obligatoire" #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "This question requires a numeric answer." msgstr "La valeur de ce réglage doit être numérique." #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 msgid "Do you want to enable mail scanning?" msgstr "Faut-il activer la vérification du courriel ?" #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 msgid "" "This option enables scanning mail contents for viruses. You need this option " "enabled if you want to use clamav-milter. It is recommended that you use a " @@ -358,13 +345,13 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "Do you want to enable archive scanning?" msgstr "Souhaitez-vous activer la vérification des archives ?" #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "" "If archive scanning is enabled, the daemon will extract archives such as " "bz2, tar.gz, deb and many more, to check their contents for viruses." @@ -375,7 +362,7 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "" "For more information about what archives are supported, see /usr/share/doc/" "clamav-docs/clamdoc.pdf or the manpage clamscan(5)." @@ -386,13 +373,13 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 msgid "Do you want to enable RAR archive scanning?" msgstr "Souhaitez-vous activer la vérification des archives RAR ?" #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 msgid "" "This enables the builtin RAR archiver. Use with caution, as the RAR code may " "have memory leaks. Clamscan can also use external RAR programs, such as " @@ -405,25 +392,41 @@ #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 msgid "Maximum stream length (unit Mb) allowed:" msgstr "Longueur maximale (en Mo) autorisée pour les flux :" #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 msgid "You can set a limit on the stream length that can be scanned." msgstr "Vous pouvez, limiter la taille des flux qui seront analysés." #. Type: string #. Description -#: ../clamav-base.templates:91 +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#: ../clamav-base.templates:11001 ../clamav-base.templates:12001 +#: ../clamav-base.templates:13001 ../clamav-base.templates:15001 +#: ../clamav-base.templates:16001 +msgid "Entering '0' will disable this limit." +msgstr "Une valeur nulle désactivera cette limite." + +#. Type: string +#. Description +#: ../clamav-base.templates:12001 msgid "Limit on the Archive recursion:" msgstr "Niveau maximal de récursivité dans les archives :" #. Type: string #. Description -#: ../clamav-base.templates:91 +#: ../clamav-base.templates:12001 msgid "" "This setting places a limit on recursion within archives, for example, a tar " "file that is also gzipped." @@ -433,13 +436,13 @@ #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 msgid "Limit on Archive compression:" msgstr "Niveau maximal de compression dans les archives :" #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 msgid "" "This setting places a limit on compression within archives, to guard against " "archive bombs (small files that expand to massive ones, a form of Denial of " @@ -452,25 +455,25 @@ #. Type: string #. Description -#: ../clamav-base.templates:111 +#: ../clamav-base.templates:14001 msgid "Limit for the maximum number of files in an archive:" msgstr "Nombre maximal de fichiers dans une archive :" #. Type: string #. Description -#: ../clamav-base.templates:116 +#: ../clamav-base.templates:15001 msgid "Largest file size in Mb you will scan inside archives:" msgstr "Taille maximale (en Mo) des fichiers analysés dans une archive :" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 msgid "Maximum directory depth that will be allowed:" msgstr "Profondeur maximale autorisée pour les répertoires :" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 msgid "" "This value must be set if you want to allow the daemon to follow directory " "symlinks." @@ -478,29 +481,23 @@ "Cette valeur doit être indiquée si vous souhaitez autoriser le démon à " "suivre les liens symboliques de répertoires." -#. Type: string -#. Description -#: ../clamav-base.templates:122 -msgid "Entering '0' will disable this limit." -msgstr "Une valeur nulle désactivera cette limite." - #. Type: boolean #. Description -#: ../clamav-base.templates:131 +#: ../clamav-base.templates:17001 msgid "Do you want the daemon to follow directory symlinks?" msgstr "" "Faut-il autoriser le démon à suivre les liens symboliques de répertoires ?" #. Type: boolean #. Description -#: ../clamav-base.templates:136 +#: ../clamav-base.templates:18001 msgid "Do you want the daemon to follow regular file symlinks?" msgstr "" "Faut-il autoriser le démon à suivre les liens symboliques de fichiers ?" #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 msgid "Timeout for stopping the thread-scanner (seconds):" msgstr "" "Délai d'attente (en secondes) avant l'arrêt de l'analyse avec processus " @@ -508,31 +505,31 @@ #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 msgid "Entering '0' will disable the timeout." msgstr "Une valeur nulle désactive le délai d'expiration." #. Type: string #. Description -#: ../clamav-base.templates:147 +#: ../clamav-base.templates:20001 msgid "Number of threads for the daemon:" msgstr "Nombre de processus légers (« threads ») du démon : " #. Type: string #. Description -#: ../clamav-base.templates:152 +#: ../clamav-base.templates:21001 msgid "Number of pending connections allowed:" msgstr "Nombre maximal de connexions en attente autorisées :" #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 msgid "Do you want to use the system logger?" msgstr "Souhaitez-vous utiliser la journalisation du système ?" #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 msgid "" "It is possible to log the daemon activity to the system logger. This can be " "done independently of whether you want to log activity to a special file." @@ -543,26 +540,25 @@ #. Type: string #. Description -#: ../clamav-base.templates:164 +#: ../clamav-base.templates:23001 msgid "Log file for clamav-daemon (enter none to disable):" -msgstr "" -"Fichier de journalisation de clamav-daemon (« none » pour désactiver) :" +msgstr "Fichier de journalisation de clamav-daemon (« none » pour désactiver) :" #. Type: boolean #. Description -#: ../clamav-base.templates:169 +#: ../clamav-base.templates:24001 msgid "Do you want to log time information with each message?" msgstr "Souhaitez-vous indiquer l'heure pour chaque entrée du journal ?" #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 msgid "Delay in seconds between daemon self checks:" msgstr "Délai en secondes entre les autovérifications du démon :" #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 msgid "" "During the SelfCheck the daemon checks if it needs to reload the virus " "database. It also tries to repair problems caused by bugs in the daemon, " @@ -575,13 +571,13 @@ #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 msgid "User to run clamav-daemon as:" msgstr "Identifiant qui exécutera le démon :" #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 msgid "" "It is recommended to run the ClamAV programs as a non-privileged user. This " "will work with most MTAs with a little tweaking, but if you want to use " @@ -598,20 +594,20 @@ #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "Groups for clamav-daemon (space-separated):" msgstr "Groupes de clamav-daemon (séparés par des espaces) :" #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "Please enter any extra groups for clamd." msgstr "" "Veuillez indiquer tous les groupes supplémentaires auxquels appartient clamd." #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "" "By default, clamd runs as a non-privileged user. If you need clamd to be " "able to access files owned by another user (e.g., in combination with an " @@ -665,10 +661,10 @@ #~ "Exim, AMaVis)." #~ msgstr "" #~ "ClamAV fonctionne désormais par défaut avec les droits de l'utilisateur " -#~ "non privilégié « clamav ». Si votre configuration précédente utilisait " -#~ "une « socket » ou un fichier PID (fichier d'identification de processus) " -#~ "dans /var/run, clam ne démarrera pas après cette mise à jour. Veuillez " -#~ "exécuter « dpkg-reconfigure clamav-daemon » et changer l'emplacement de " -#~ "la « socket » pour /var/run/clamav/. Vous devez également mettre à jour " -#~ "la configuration de tous les logiciels qui s'en servent (par exemple " -#~ "Exim, AMaVis, etc.)." +#~ "non privilégié « clamav ». Si votre configuration précédente utilisait une " +#~ "« socket » ou un fichier PID (fichier d'identification de processus) dans /" +#~ "var/run, clam ne démarrera pas après cette mise à jour. Veuillez exécuter " +#~ "« dpkg-reconfigure clamav-daemon » et changer l'emplacement de la " +#~ "« socket » pour /var/run/clamav/. Vous devez également mettre à jour la " +#~ "configuration de tous les logiciels qui s'en servent (par exemple Exim, " +#~ "AMaVis, etc.)." diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/po/gl.po /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/po/gl.po --- clamav-0.92~dfsg/debian/po/gl.po 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/po/gl.po 2008-04-18 08:49:42.000000000 -0400 @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: clamav\n" -"Report-Msgid-Bugs-To: sgran@debian.org\n" -"POT-Creation-Date: 2008-01-21 17:53-0800\n" +"Report-Msgid-Bugs-To: Source: clamav@packages.debian.org\n" +"POT-Creation-Date: 2008-04-17 23:46-0400\n" "PO-Revision-Date: 2007-10-13 11:43+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/po/it.po /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/po/it.po --- clamav-0.92~dfsg/debian/po/it.po 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/po/it.po 2008-04-18 08:49:42.000000000 -0400 @@ -4,8 +4,8 @@ msgid "" msgstr "" "Project-Id-Version: clamav 0.91.2-3\n" -"Report-Msgid-Bugs-To: sgran@debian.org\n" -"POT-Creation-Date: 2008-01-21 17:53-0800\n" +"Report-Msgid-Bugs-To: Source: clamav@packages.debian.org\n" +"POT-Creation-Date: 2008-04-17 23:46-0400\n" "PO-Revision-Date: 2007-10-05 09:15+0200\n" "Last-Translator: Cristian Rigamonti \n" "Language-Team: Italian \n" diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/po/ja.po /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/po/ja.po --- clamav-0.92~dfsg/debian/po/ja.po 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/po/ja.po 2008-04-18 08:49:42.000000000 -0400 @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: clamav\n" -"Report-Msgid-Bugs-To: sgran@debian.org\n" -"POT-Creation-Date: 2008-02-12 17:20+0000\n" +"Report-Msgid-Bugs-To: Source: clamav@packages.debian.org\n" +"POT-Creation-Date: 2008-04-17 23:46-0400\n" "PO-Revision-Date: 2007-10-11 16:26+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Japanese \n" @@ -25,44 +25,31 @@ #. Type: select #. Choices -#. flag:translate!:2,3 -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "daemon" msgstr "デーモン" #. Type: select #. Choices -#: ../clamav-freshclam.templates:5 -msgid "ifup.d" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 -msgid "cron" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "manual" msgstr "手動" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Virus database update method:" msgstr "ウイルスデータベースã®æ›´æ–°æ–¹æ³•:" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Please choose the method for virus database updates." msgstr "ウイルスデータベース更新ã®æ–¹æ³•ã‚’é¸æŠžã—ã¦ãã ã•ã„。" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "" " daemon: freshclam is running as a daemon all the time. You should choose\n" " this option if you have a permanent network connection;\n" @@ -88,19 +75,19 @@ #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Local database mirror site:" msgstr "ローカルデータベースミラーサイト:" #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Please select the closest local mirror site." msgstr "最も近ã„ローカルミラーサイトをé¸æŠžã—ã¦ãã ã•ã„。" #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "" "Freshclam updates its database from a world wide network of mirror sites. " "Please select the closest mirror. If you leave the default setting, an " @@ -112,13 +99,13 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "HTTP proxy information (leave blank for none):" msgstr "HTTP プロキシ情報 (ãªã„ãªã‚‰ç©ºã®ã¾ã¾ã«ã—ã¦ãŠãã¾ã™):" #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "" "If you need to use an HTTP proxy to access the outside world, enter the " "proxy information here. Otherwise, leave this blank." @@ -128,19 +115,19 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "Please use URL syntax (\"http://host[:port]\") here." msgstr "ã“ã“ã§ã¯ URL 文法 (\"http://host[:port]\") を使ã£ã¦ãã ã•ã„。" #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "Proxy user information (leave blank for none):" msgstr "プロキシユーザ情報 (ãªã„ãªã‚‰ç©ºã®ã¾ã¾):" #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "" "If you need to supply a username and password to the proxy, enter it here. " "Otherwise, leave this blank." @@ -150,26 +137,26 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "When entering user information, use the standard form of \"user:pass\"." msgstr "" "ユーザ情報を入力ã™ã‚‹ã¨ãã«ã¯ã€\"user:pass\" ã®æ¨™æº–å½¢å¼ã‚’使ã£ã¦ãã ã•ã„。" #. Type: string #. Description -#: ../clamav-freshclam.templates:52 +#: ../clamav-freshclam.templates:5001 msgid "Number of freshclam updates per day:" msgstr "1æ—¥ã‚ãŸã‚Šã® freshclam ã®æ›´æ–°å›žæ•°:" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "Network interface connected to the Internet:" msgstr "インターãƒãƒƒãƒˆã«æŽ¥ç¶šã—ã¦ã„ã‚‹ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ã‚§ã‚¤ã‚¹:" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "Please enter the name of the network interface connected to the Internet. " "Example: eth0." @@ -180,7 +167,7 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "If the daemon runs when the network is down, the log file will be filled " "with entries like 'ERROR: Connection with database.clamav.net failed.', " @@ -193,7 +180,7 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "You can leave this field blank and the daemon will be started from the " "initialization scripts instead. You should then make sure the computer is " @@ -205,13 +192,13 @@ #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "Should clamd be notified after updates?" msgstr "更新後㫠clamd ã«æ•™ç¤ºã—ã¾ã™ã‹?" #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "" "Please confirm whether clamd should be notified to reload the database after " "successful updates." @@ -221,7 +208,7 @@ #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "" "If you do not choose this option, clamd's database reloads will be notably " "delayed (it performs this check every 6 hours by default), posing the risk " @@ -235,19 +222,19 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "Handle the configuration file automatically?" msgstr "設定ファイルを自動ã§ç®¡ç†ã—ã¾ã™ã‹?" #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "Some options must be configured for clamav-base." msgstr "clamav-base ã®ãŸã‚ã«ã„ãã¤ã‹ã®ã‚ªãƒ—ションを設定ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "" "The ClamAV suite won't work if it isn't configured. If you do not configure " "it automatically, you'll have to configure /etc/clamav/clamd.conf manually " @@ -261,19 +248,19 @@ #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Socket type:" msgstr "ソケット形å¼:" #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Please choose the type of socket clamd will be listening on." msgstr "clamd ãŒãƒªã‚¹ãƒ³ã™ã‚‹ã‚½ã‚±ãƒƒãƒˆå½¢å¼ã‚’é¸æŠžã—ã¦ãã ã•ã„。" #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "" "If you choose TCP, clamd can be accessed remotely. If you choose local UNIX " "sockets, clamd can be accessed through a file. Local UNIX sockets are " @@ -285,31 +272,31 @@ #. Type: string #. Description -#: ../clamav-base.templates:28 +#: ../clamav-base.templates:3001 msgid "Local (UNIX) socket clamd will listen on:" msgstr "clamd ãŒãƒªã‚¹ãƒ³ã™ã‚‹ãƒ­ãƒ¼ã‚«ãƒ« (UNIX) ソケット:" #. Type: boolean #. Description -#: ../clamav-base.templates:33 +#: ../clamav-base.templates:4001 msgid "Gracefully handle left-over UNIX socket files?" msgstr "残り㮠UNIX ソケットファイルを管ç†ã™ã‚‹ã‚ˆã†ã«ã—ã¾ã™ã‹?" #. Type: string #. Description -#: ../clamav-base.templates:38 +#: ../clamav-base.templates:5001 msgid "TCP port clamd will listen on:" msgstr "clamd ãŒãƒªã‚¹ãƒ³ã™ã‚‹ TCP ãƒãƒ¼ãƒˆ:" #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 msgid "IP address clamd will listen on:" msgstr "clamd ãŒãƒªã‚¹ãƒ³ã™ã‚‹ IP アドレス:" #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 msgid "" "Enter \"any\" to listen on every IP address configured. If you want to " "listen on a single address or host name, enter it here." @@ -320,25 +307,25 @@ #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "Mandatory numeric value" msgstr "数値ã§ã®å…¥åŠ›ã‚’強制" #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "This question requires a numeric answer." msgstr "ã“ã®è³ªå•ã«ã¯æ•°å€¤ã§ç­”ãˆã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 msgid "Do you want to enable mail scanning?" msgstr "メール走査を有効ã«ã—ã¾ã™ã‹?" #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 msgid "" "This option enables scanning mail contents for viruses. You need this option " "enabled if you want to use clamav-milter. It is recommended that you use a " @@ -352,13 +339,13 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "Do you want to enable archive scanning?" msgstr "アーカイブã®èµ°æŸ»ã‚’有効ã«ã—ã¾ã™ã‹?" #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "" "If archive scanning is enabled, the daemon will extract archives such as " "bz2, tar.gz, deb and many more, to check their contents for viruses." @@ -368,7 +355,7 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "" "For more information about what archives are supported, see /usr/share/doc/" "clamav-docs/clamdoc.pdf or the manpage clamscan(5)." @@ -378,13 +365,13 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 msgid "Do you want to enable RAR archive scanning?" msgstr "RAR アーカイブã®æ“作を有効ã«ã—ã¾ã™ã‹?" #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 msgid "" "This enables the builtin RAR archiver. Use with caution, as the RAR code may " "have memory leaks. Clamscan can also use external RAR programs, such as " @@ -396,25 +383,41 @@ #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 msgid "Maximum stream length (unit Mb) allowed:" msgstr "許å¯ã™ã‚‹æœ€å¤§ã‚¹ãƒˆãƒªãƒ¼ãƒ é•· (Mb å˜ä½):" #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 msgid "You can set a limit on the stream length that can be scanned." msgstr "走査å¯èƒ½ãªã‚¹ãƒˆãƒªãƒ¼ãƒ é•·ã‚’制é™ã§ãã¾ã™ã€‚" #. Type: string #. Description -#: ../clamav-base.templates:91 +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#: ../clamav-base.templates:11001 ../clamav-base.templates:12001 +#: ../clamav-base.templates:13001 ../clamav-base.templates:15001 +#: ../clamav-base.templates:16001 +msgid "Entering '0' will disable this limit." +msgstr "'0' を入力ã™ã‚‹ã¨ã€åˆ¶é™ãŒç„¡åŠ¹ã«ãªã‚Šã¾ã™ã€‚" + +#. Type: string +#. Description +#: ../clamav-base.templates:12001 msgid "Limit on the Archive recursion:" msgstr "アーカイブå†å¸°ãƒ¬ãƒ™ãƒ«ã®åˆ¶é™:" #. Type: string #. Description -#: ../clamav-base.templates:91 +#: ../clamav-base.templates:12001 msgid "" "This setting places a limit on recursion within archives, for example, a tar " "file that is also gzipped." @@ -424,13 +427,13 @@ #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 msgid "Limit on Archive compression:" msgstr "アーカイブ圧縮ã®åˆ¶é™:" #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 msgid "" "This setting places a limit on compression within archives, to guard against " "archive bombs (small files that expand to massive ones, a form of Denial of " @@ -442,25 +445,25 @@ #. Type: string #. Description -#: ../clamav-base.templates:111 +#: ../clamav-base.templates:14001 msgid "Limit for the maximum number of files in an archive:" msgstr "アーカイブã®ãƒ•ã‚¡ã‚¤ãƒ«ã®æœ€å¤§å€¤ã®åˆ¶é™:" #. Type: string #. Description -#: ../clamav-base.templates:116 +#: ../clamav-base.templates:15001 msgid "Largest file size in Mb you will scan inside archives:" msgstr "アーカイブ内部を走査ã™ã‚‹æœ€å¤§ãƒ•ã‚¡ã‚¤ãƒ«ã‚µã‚¤ã‚º (Mb):" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 msgid "Maximum directory depth that will be allowed:" msgstr "許å¯ã™ã‚‹æœ€å¤§ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªæ·±åº¦:" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 msgid "" "This value must be set if you want to allow the daemon to follow directory " "symlinks." @@ -468,57 +471,51 @@ "デーモンãŒãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚·ãƒ³ãƒœãƒªãƒƒã‚¯ãƒªãƒ³ã‚¯ã«è¿½å¾“ã§ãるよã†ã«ã—ãŸã„ãªã‚‰ã€å€¤ã‚’設" "定ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" -#. Type: string -#. Description -#: ../clamav-base.templates:122 -msgid "Entering '0' will disable this limit." -msgstr "'0' を入力ã™ã‚‹ã¨ã€åˆ¶é™ãŒç„¡åŠ¹ã«ãªã‚Šã¾ã™ã€‚" - #. Type: boolean #. Description -#: ../clamav-base.templates:131 +#: ../clamav-base.templates:17001 msgid "Do you want the daemon to follow directory symlinks?" msgstr "デーモンãŒãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚·ãƒ³ãƒœãƒªãƒƒã‚¯ãƒªãƒ³ã‚¯ã«è¿½å¾“ã™ã‚‹ã‚ˆã†ã«ã—ã¾ã™ã‹?" #. Type: boolean #. Description -#: ../clamav-base.templates:136 +#: ../clamav-base.templates:18001 msgid "Do you want the daemon to follow regular file symlinks?" msgstr "デーモンãŒä¸€èˆ¬ãƒ•ã‚¡ã‚¤ãƒ«ã®ã‚·ãƒ³ãƒœãƒªãƒƒã‚¯ãƒªãƒ³ã‚¯ã«è¿½å¾“ã™ã‚‹ã‚ˆã†ã«ã—ã¾ã™ã‹?" #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 msgid "Timeout for stopping the thread-scanner (seconds):" msgstr "スレッドスキャナをåœæ­¢ã™ã‚‹ã¾ã§ã®ã‚¿ã‚¤ãƒ ã‚¢ã‚¦ãƒˆå€¤ (秒):" #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 msgid "Entering '0' will disable the timeout." msgstr "'0' を入力ã™ã‚‹ã¨ã€ã‚¿ã‚¤ãƒ ã‚¢ã‚¦ãƒˆãŒç„¡åŠ¹ã«ãªã‚Šã¾ã™ã€‚" #. Type: string #. Description -#: ../clamav-base.templates:147 +#: ../clamav-base.templates:20001 msgid "Number of threads for the daemon:" msgstr "デーモンã®ã‚¹ãƒ¬ãƒƒãƒ‰æ•°:" #. Type: string #. Description -#: ../clamav-base.templates:152 +#: ../clamav-base.templates:21001 msgid "Number of pending connections allowed:" msgstr "許å¯ã™ã‚‹æŽ¥ç¶šå¾…ã¡æ•°:" #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 msgid "Do you want to use the system logger?" msgstr "システムロガーを使ã„ã¾ã™ã‹?" #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 msgid "" "It is possible to log the daemon activity to the system logger. This can be " "done independently of whether you want to log activity to a special file." @@ -528,25 +525,25 @@ #. Type: string #. Description -#: ../clamav-base.templates:164 +#: ../clamav-base.templates:23001 msgid "Log file for clamav-daemon (enter none to disable):" msgstr "clamav-daemon ã®ãƒ­ã‚°ãƒ•ã‚¡ã‚¤ãƒ« (無効ã«ã™ã‚‹ã«ã¯ç©º):" #. Type: boolean #. Description -#: ../clamav-base.templates:169 +#: ../clamav-base.templates:24001 msgid "Do you want to log time information with each message?" msgstr "å„メッセージã«æ™‚間情報を記録ã—ã¾ã™ã‹?" #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 msgid "Delay in seconds between daemon self checks:" msgstr "デーモンã®ã‚»ãƒ«ãƒ•ãƒã‚§ãƒƒã‚¯ã®ã‚ã„ã ã®é…延秒数:" #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 msgid "" "During the SelfCheck the daemon checks if it needs to reload the virus " "database. It also tries to repair problems caused by bugs in the daemon, " @@ -558,13 +555,13 @@ #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 msgid "User to run clamav-daemon as:" msgstr "clamav-daemon を実行ã™ã‚‹ãƒ¦ãƒ¼ã‚¶:" #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 msgid "" "It is recommended to run the ClamAV programs as a non-privileged user. This " "will work with most MTAs with a little tweaking, but if you want to use " @@ -578,19 +575,19 @@ #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "Groups for clamav-daemon (space-separated):" msgstr "clamav-daemon ã®ã‚°ãƒ«ãƒ¼ãƒ— (スペースã§åŒºåˆ‡ã‚‹):" #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "Please enter any extra groups for clamd." msgstr "clamd ã®ãã®ä»–ã®ã‚°ãƒ«ãƒ¼ãƒ—を入力ã—ã¦ãã ã•ã„。" #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "" "By default, clamd runs as a non-privileged user. If you need clamd to be " "able to access files owned by another user (e.g., in combination with an " diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/po/nl.po /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/po/nl.po --- clamav-0.92~dfsg/debian/po/nl.po 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/po/nl.po 2008-04-18 08:49:42.000000000 -0400 @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: clamav 0.88.2-1\n" -"Report-Msgid-Bugs-To: sgran@debian.org\n" -"POT-Creation-Date: 2008-02-12 17:20+0000\n" +"Report-Msgid-Bugs-To: Source: clamav@packages.debian.org\n" +"POT-Creation-Date: 2008-04-17 23:46-0400\n" "PO-Revision-Date: 2006-05-28 17:27+0100\n" "Last-Translator: Vincent Zweije \n" "Language-Team: Debian Dutch \n" @@ -25,59 +25,46 @@ #. Type: select #. Choices -#. flag:translate!:2,3 -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "daemon" msgstr "" #. Type: select #. Choices -#: ../clamav-freshclam.templates:5 -msgid "ifup.d" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 -msgid "cron" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "manual" msgstr "" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Virus database update method:" msgstr "Methode voor bijwerken van virusgegevensbank:" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Please choose the method for virus database updates." msgstr "Kies een methode voor het bijwerken van de virusgegevensbanken." -# | msgid "" -# | " daemon : freshclam is running as a daemon all the time. You should " -# | "choose\n" -# | " this option if you have a permanent network connection.\n" -# | " ifup.d : freshclam will be running as a daemon as long as your Internet\n" -# | " connection is up. Choose this one if you have a dialup " -# | "Internet\n" -# | " connection and don't want freshclam to initiate new " -# | "connections.\n" -# | " cron : freshclam is started from cron. Choose if you want full " -# | "control\n" -# | " of when the database is updated.\n" -# | " manual : No automatic invocation of freshclam. This is not recommended,\n" -# | " as clamav's database is constantly updated." #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 #, fuzzy +#| msgid "" +#| " daemon : freshclam is running as a daemon all the time. You should " +#| "choose\n" +#| " this option if you have a permanent network connection.\n" +#| " ifup.d : freshclam will be running as a daemon as long as your Internet\n" +#| " connection is up. Choose this one if you have a dialup " +#| "Internet\n" +#| " connection and don't want freshclam to initiate new " +#| "connections.\n" +#| " cron : freshclam is started from cron. Choose if you want full " +#| "control\n" +#| " of when the database is updated.\n" +#| " manual : No automatic invocation of freshclam. This is not recommended,\n" +#| " as clamav's database is constantly updated." msgid "" " daemon: freshclam is running as a daemon all the time. You should choose\n" " this option if you have a permanent network connection;\n" @@ -106,26 +93,26 @@ #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Local database mirror site:" msgstr "Dichtsbijzijnde gegevensbank-mirror:" #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Please select the closest local mirror site." msgstr "Selecteer de dichtstbijzijnde mirror." -# | msgid "" -# | "Freshclam updates its database from a world wide network of mirror " -# | "sites. Please select the mirror closest to you. If you leave it at the " -# | "default setting, an attempt will be made to provide you with a nearby " -# | "mirror, but this attempt may not always provide you with the closest " -# | "mirror site." #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 #, fuzzy +#| msgid "" +#| "Freshclam updates its database from a world wide network of mirror " +#| "sites. Please select the mirror closest to you. If you leave it at the " +#| "default setting, an attempt will be made to provide you with a nearby " +#| "mirror, but this attempt may not always provide you with the closest " +#| "mirror site." msgid "" "Freshclam updates its database from a world wide network of mirror sites. " "Please select the closest mirror. If you leave the default setting, an " @@ -138,17 +125,17 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "HTTP proxy information (leave blank for none):" msgstr "HTTP-proxy-gegevens (laat leeg voor geen):" -# | msgid "" -# | "If you need to use a HTTP proxy to access the outside world, enter the " -# | "proxy information here. Otherwise, leave this blank." #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 #, fuzzy +#| msgid "" +#| "If you need to use a HTTP proxy to access the outside world, enter the " +#| "proxy information here. Otherwise, leave this blank." msgid "" "If you need to use an HTTP proxy to access the outside world, enter the " "proxy information here. Otherwise, leave this blank." @@ -158,19 +145,19 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "Please use URL syntax (\"http://host[:port]\") here." msgstr "U dient hier URL-notatie te gebruiken (\"http://host[:poort]\") ." #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "Proxy user information (leave blank for none):" msgstr "Gebruikergegevens voor proxy (laat leeg voor geen):" #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "" "If you need to supply a username and password to the proxy, enter it here. " "Otherwise, leave this blank." @@ -178,12 +165,12 @@ "Als u de proxy van een gebruikersnaam en wachtwoord moet voorzien, dient u " "ze hier op te geven. Laat anders leeg." -# | msgid "" -# | "When entering user information, use the standard form of \"user:pass\"" #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 #, fuzzy +#| msgid "" +#| "When entering user information, use the standard form of \"user:pass\"" msgid "When entering user information, use the standard form of \"user:pass\"." msgstr "" "Als u gebruikergegevens opgeeft dient u de standaardvorm \"gebruiker:" @@ -191,36 +178,36 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:52 +#: ../clamav-freshclam.templates:5001 msgid "Number of freshclam updates per day:" msgstr "Aantal freshclam-bijwerkingen per dag:" -# | msgid "Name of the network interface connected to the Internet:" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 #, fuzzy +#| msgid "Name of the network interface connected to the Internet:" msgid "Network interface connected to the Internet:" msgstr "Naam van de netwerkinterface verbonden met het internet:" -# | msgid "Name of the network interface connected to the Internet:" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 #, fuzzy +#| msgid "Name of the network interface connected to the Internet:" msgid "" "Please enter the name of the network interface connected to the Internet. " "Example: eth0." msgstr "Naam van de netwerkinterface verbonden met het internet:" -# | msgid "" -# | "If the daemon runs when the network is down the log file is filled with a " -# | "lot of entries like 'ERROR: Connection with database.clamav.net failed.', " -# | "making it easy to miss when freshclam really can't update the database." #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 #, fuzzy +#| msgid "" +#| "If the daemon runs when the network is down the log file is filled with a " +#| "lot of entries like 'ERROR: Connection with database.clamav.net failed.', " +#| "making it easy to miss when freshclam really can't update the database." msgid "" "If the daemon runs when the network is down, the log file will be filled " "with entries like 'ERROR: Connection with database.clamav.net failed.', " @@ -233,7 +220,7 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "You can leave this field blank and the daemon will be started from the " "initialization scripts instead. You should then make sure the computer is " @@ -242,13 +229,13 @@ #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "Should clamd be notified after updates?" msgstr "Moet clamd gewaarschuwd worden na het bijwerken?" #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "" "Please confirm whether clamd should be notified to reload the database after " "successful updates." @@ -256,16 +243,16 @@ "Geef aan of clamd gewaarschuwd moet worden dat het zijn database moet " "herladen nadat deze succesvol is bijgewerkt." -# | msgid "" -# | "If you do not choose this option, clamd's database reloads will be " -# | "notably delayed (it performs this check every 6 hours by default), posing " -# | "the risk that a new virus may slip through although your database is up " -# | "to date. Do not use this if you do not use clamd, as it will produce " -# | "errors." #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 #, fuzzy +#| msgid "" +#| "If you do not choose this option, clamd's database reloads will be " +#| "notably delayed (it performs this check every 6 hours by default), posing " +#| "the risk that a new virus may slip through although your database is up " +#| "to date. Do not use this if you do not use clamd, as it will produce " +#| "errors." msgid "" "If you do not choose this option, clamd's database reloads will be notably " "delayed (it performs this check every 6 hours by default), posing the risk " @@ -278,32 +265,32 @@ "wordt terwijl uw database al volledig is bijgewerkt. Gebruik deze instelling " "alleen als u clamd gebruikt, anders genereert het fouten." -# | msgid "Do you want to handle the configuration file with debconf?" #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 #, fuzzy +#| msgid "Do you want to handle the configuration file with debconf?" msgid "Handle the configuration file automatically?" msgstr "Wilt u het configuratiebestand met debconf afhandelen?" -# | msgid "There are quite a few options to be configured for clamav-base." #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 #, fuzzy +#| msgid "There are quite a few options to be configured for clamav-base." msgid "Some options must be configured for clamav-base." msgstr "" "Clamav-daemon heeft behoorlijk veel opties die ingesteld kunnen worden." -# | msgid "" -# | "The ClamAV suite won't work if it isn't configured. If you don't choose " -# | "debconf you'll have to configure /etc/clamav/clamd.conf manually or run " -# | "'dpkg-reconfigure clamav-base' later. Whether you choose debconf or not, " -# | "manual changes in /etc/clamav/clamd.conf will be respected." #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 #, fuzzy +#| msgid "" +#| "The ClamAV suite won't work if it isn't configured. If you don't choose " +#| "debconf you'll have to configure /etc/clamav/clamd.conf manually or run " +#| "'dpkg-reconfigure clamav-base' later. Whether you choose debconf or not, " +#| "manual changes in /etc/clamav/clamd.conf will be respected." msgid "" "The ClamAV suite won't work if it isn't configured. If you do not configure " "it automatically, you'll have to configure /etc/clamav/clamd.conf manually " @@ -318,24 +305,24 @@ #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Socket type:" msgstr "Socket-type:" #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Please choose the type of socket clamd will be listening on." msgstr "Kies het type socket waarop clamd zal luisteren." -# | msgid "" -# | "If you choose TCP clamd can be accessed remotely. This choice isn't " -# | "recommended since ClamAV is a very young project. If you choose local " -# | "UNIX sockets, clamd can be accessed through a file." #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 #, fuzzy +#| msgid "" +#| "If you choose TCP clamd can be accessed remotely. This choice isn't " +#| "recommended since ClamAV is a very young project. If you choose local " +#| "UNIX sockets, clamd can be accessed through a file." msgid "" "If you choose TCP, clamd can be accessed remotely. If you choose local UNIX " "sockets, clamd can be accessed through a file. Local UNIX sockets are " @@ -345,42 +332,42 @@ "bevelen, omdat clam nog een heel jong project is. Als u lokale UNIX-sockets " "kiest kan de clamd worden benaderd via een bestand." -# | msgid "Local (Unix) socket clamd will listen on:" #. Type: string #. Description -#: ../clamav-base.templates:28 +#: ../clamav-base.templates:3001 #, fuzzy +#| msgid "Local (Unix) socket clamd will listen on:" msgid "Local (UNIX) socket clamd will listen on:" msgstr "Lokaal (Unix-) socket waarop clamd zal luisteren:" -# | msgid "Gracefully handle left-over Unix socket files?" #. Type: boolean #. Description -#: ../clamav-base.templates:33 +#: ../clamav-base.templates:4001 #, fuzzy +#| msgid "Gracefully handle left-over Unix socket files?" msgid "Gracefully handle left-over UNIX socket files?" msgstr "Overgebleven UNIX-socketbestanden elegant afhandelen?" #. Type: string #. Description -#: ../clamav-base.templates:38 +#: ../clamav-base.templates:5001 msgid "TCP port clamd will listen on:" msgstr "TCP-poort waarop clamd zal luisteren:" #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 msgid "IP address clamd will listen on:" msgstr "IP-adres waarop clamd zal luisteren:" -# | msgid "" -# | "Enter \"any\" to listen on every IP address configured. If you instead " -# | "want to listen on a single address or hostname, enter that address (e.g. " -# | "\"127.0.0.1\") or hostname." #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 #, fuzzy +#| msgid "" +#| "Enter \"any\" to listen on every IP address configured. If you instead " +#| "want to listen on a single address or hostname, enter that address (e.g. " +#| "\"127.0.0.1\") or hostname." msgid "" "Enter \"any\" to listen on every IP address configured. If you want to " "listen on a single address or host name, enter it here." @@ -391,32 +378,32 @@ #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "Mandatory numeric value" msgstr "" #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "This question requires a numeric answer." msgstr "" #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 msgid "Do you want to enable mail scanning?" msgstr "Wilt u het scannen van e-mail aanzetten?" -# | msgid "" -# | "This option enables scanning mail contents for viruses. Although this is " -# | "the least stable part of libclamav, you need this option enabled if you " -# | "want to use clamav-milter. It is recommended that you use a separate " -# | "unpacker to extract any MIME parts of email messages if you want to scan " -# | "email." #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 #, fuzzy +#| msgid "" +#| "This option enables scanning mail contents for viruses. Although this is " +#| "the least stable part of libclamav, you need this option enabled if you " +#| "want to use clamav-milter. It is recommended that you use a separate " +#| "unpacker to extract any MIME parts of email messages if you want to scan " +#| "email." msgid "" "This option enables scanning mail contents for viruses. You need this option " "enabled if you want to use clamav-milter. It is recommended that you use a " @@ -432,17 +419,17 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "Do you want to enable archive scanning?" msgstr "Wilt u scannen van archieven aanzetten?" -# | msgid "" -# | "If archive scanning is enabled, the daemon will extract archives such as " -# | "bz2, tar.gz, deb and many more to check their contents for viruses." #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 #, fuzzy +#| msgid "" +#| "If archive scanning is enabled, the daemon will extract archives such as " +#| "bz2, tar.gz, deb and many more to check their contents for viruses." msgid "" "If archive scanning is enabled, the daemon will extract archives such as " "bz2, tar.gz, deb and many more, to check their contents for viruses." @@ -451,13 +438,13 @@ "zoals bz2, tar.gz, deb en vele anderen uitpakken en hun inhoud controleren " "op virussen." -# | msgid "" -# | "For more information about what archives are supported see /usr/share/doc/" -# | "clamav-docs/clamdoc.pdf or the manpage clamscan(5)." #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 #, fuzzy +#| msgid "" +#| "For more information about what archives are supported see /usr/share/doc/" +#| "clamav-docs/clamdoc.pdf or the manpage clamscan(5)." msgid "" "For more information about what archives are supported, see /usr/share/doc/" "clamav-docs/clamdoc.pdf or the manpage clamscan(5)." @@ -467,18 +454,18 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 msgid "Do you want to enable RAR archive scanning?" msgstr "Wilt u het scannen van RAR-archieven aanzetten?" -# | msgid "" -# | "This enables the builtin RAR archiver. Use with caution, as the RAR code " -# | "may have memory leaks. Clamscan can also use external RAR programs, such " -# | "as unrar, although clamd does not." #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 #, fuzzy +#| msgid "" +#| "This enables the builtin RAR archiver. Use with caution, as the RAR code " +#| "may have memory leaks. Clamscan can also use external RAR programs, such " +#| "as unrar, although clamd does not." msgid "" "This enables the builtin RAR archiver. Use with caution, as the RAR code may " "have memory leaks. Clamscan can also use external RAR programs, such as " @@ -490,17 +477,17 @@ #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 msgid "Maximum stream length (unit Mb) allowed:" msgstr "Maximaal toegestane datastroomlengte (in Mb):" -# | msgid "" -# | "If you want you can set a limit on the stream length that can be scanned. " -# | "The value 0 disables this limit." #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 #, fuzzy +#| msgid "" +#| "If you want you can set a limit on the stream length that can be scanned. " +#| "The value 0 disables this limit." msgid "You can set a limit on the stream length that can be scanned." msgstr "" "Als u wilt, kunt u een limiet zetten op de lengte van een te scannen " @@ -508,17 +495,35 @@ #. Type: string #. Description -#: ../clamav-base.templates:91 +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#: ../clamav-base.templates:11001 ../clamav-base.templates:12001 +#: ../clamav-base.templates:13001 ../clamav-base.templates:15001 +#: ../clamav-base.templates:16001 +#, fuzzy +#| msgid "The value 0 disables the size limit." +msgid "Entering '0' will disable this limit." +msgstr "De waarde 0 betekent ongelimiteerd." + +#. Type: string +#. Description +#: ../clamav-base.templates:12001 msgid "Limit on the Archive recursion:" msgstr "Limiet op het recursieniveau voor archieven:" -# | msgid "" -# | "This setting places a limit on recursion within archives, for example, a " -# | "tar file that is also gzipped. The value 0 disables the recursion limit." #. Type: string #. Description -#: ../clamav-base.templates:91 +#: ../clamav-base.templates:12001 #, fuzzy +#| msgid "" +#| "This setting places a limit on recursion within archives, for example, a " +#| "tar file that is also gzipped. The value 0 disables the recursion limit." msgid "" "This setting places a limit on recursion within archives, for example, a tar " "file that is also gzipped." @@ -528,19 +533,19 @@ #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 msgid "Limit on Archive compression:" msgstr "Limiet op archiefcompressie:" -# | msgid "" -# | "This setting places a limit on compression within archives, to guard " -# | "against archive bombs (small files that expand to massive ones, a form of " -# | "Denial of Service Attack). However, this limit may be too low for some " -# | "settings. The value 0 disables this limit." #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 #, fuzzy +#| msgid "" +#| "This setting places a limit on compression within archives, to guard " +#| "against archive bombs (small files that expand to massive ones, a form of " +#| "Denial of Service Attack). However, this limit may be too low for some " +#| "settings. The value 0 disables this limit." msgid "" "This setting places a limit on compression within archives, to guard against " "archive bombs (small files that expand to massive ones, a form of Denial of " @@ -554,27 +559,27 @@ #. Type: string #. Description -#: ../clamav-base.templates:111 +#: ../clamav-base.templates:14001 msgid "Limit for the maximum number of files in an archive:" msgstr "Limiet op het aantal bestanden in een archief:" #. Type: string #. Description -#: ../clamav-base.templates:116 +#: ../clamav-base.templates:15001 msgid "Largest file size in Mb you will scan inside archives:" msgstr "Grootste bestand (Mb) in een archief dat wordt gescand:" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 msgid "Maximum directory depth that will be allowed:" msgstr "Maximale diepte van de mapstructuur die is toegestaan:" -# | msgid "Do you want the daemon to follow directory symlinks?" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 #, fuzzy +#| msgid "Do you want the daemon to follow directory symlinks?" msgid "" "This value must be set if you want to allow the daemon to follow directory " "symlinks." @@ -582,17 +587,9 @@ "Wilt u de achtergronddienst toestaan symbolische koppelingen naar mappen te " "volgen?" -# | msgid "The value 0 disables the size limit." -#. Type: string -#. Description -#: ../clamav-base.templates:122 -#, fuzzy -msgid "Entering '0' will disable this limit." -msgstr "De waarde 0 betekent ongelimiteerd." - #. Type: boolean #. Description -#: ../clamav-base.templates:131 +#: ../clamav-base.templates:17001 msgid "Do you want the daemon to follow directory symlinks?" msgstr "" "Wilt u de achtergronddienst toestaan symbolische koppelingen naar mappen te " @@ -600,7 +597,7 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:136 +#: ../clamav-base.templates:18001 msgid "Do you want the daemon to follow regular file symlinks?" msgstr "" "Wilt u de achtergronddienst toestaan symbolische koppelingen naar gewone " @@ -608,43 +605,43 @@ #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 msgid "Timeout for stopping the thread-scanner (seconds):" msgstr "Timeout voor het stoppen van de procesdraden-scanner (seconden):" -# | msgid "The value 0 disables the timeout." #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 #, fuzzy +#| msgid "The value 0 disables the timeout." msgid "Entering '0' will disable the timeout." msgstr "De waarde 0 schakelt de tijdlimiet uit." #. Type: string #. Description -#: ../clamav-base.templates:147 +#: ../clamav-base.templates:20001 msgid "Number of threads for the daemon:" msgstr "Aantal procesdraden voor de achtergronddienst:" #. Type: string #. Description -#: ../clamav-base.templates:152 +#: ../clamav-base.templates:21001 msgid "Number of pending connections allowed:" msgstr "Aantal hangende verbindingen dat is toegestaan:" #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 msgid "Do you want to use the system logger?" msgstr "Wilt u het systeemlogproces gebruiken?" -# | msgid "" -# | "It is possible to log daemon activity to the system logger. This can be " -# | "done independently of whether you want to log activity to a special file." #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 #, fuzzy +#| msgid "" +#| "It is possible to log daemon activity to the system logger. This can be " +#| "done independently of whether you want to log activity to a special file." msgid "" "It is possible to log the daemon activity to the system logger. This can be " "done independently of whether you want to log activity to a special file." @@ -655,30 +652,30 @@ #. Type: string #. Description -#: ../clamav-base.templates:164 +#: ../clamav-base.templates:23001 msgid "Log file for clamav-daemon (enter none to disable):" msgstr "Logbestand voor clamav-daemon (laat leeg voor geen):" #. Type: boolean #. Description -#: ../clamav-base.templates:169 +#: ../clamav-base.templates:24001 msgid "Do you want to log time information with each message?" msgstr "Wilt u bij elk bericht de tijd loggen?" #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 msgid "Delay in seconds between daemon self checks:" msgstr "Vertraging in seconden tussen achtergronddienst-zelfcontroles:" -# | msgid "" -# | "During the SelfCheck the daemon checks if it needs to reload the virus " -# | "database. It also tries to repair problems caused by bugs in the daemon, " -# | "i.e in some cases it's able to repair broken data structures." #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 #, fuzzy +#| msgid "" +#| "During the SelfCheck the daemon checks if it needs to reload the virus " +#| "database. It also tries to repair problems caused by bugs in the daemon, " +#| "i.e in some cases it's able to repair broken data structures." msgid "" "During the SelfCheck the daemon checks if it needs to reload the virus " "database. It also tries to repair problems caused by bugs in the daemon, " @@ -689,23 +686,23 @@ "die zijn ontstaan door programmeerfouten in de achtergronddienst, in sommige " "gevallen is het bijvoorbeeld mogelijk gebroken datastructuren te repareren." -# | msgid "What user do you want to run clamav-daemon as:" #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 #, fuzzy +#| msgid "What user do you want to run clamav-daemon as:" msgid "User to run clamav-daemon as:" msgstr "Gebruiker waaronder clamav-daemon draait:" -# | msgid "" -# | "It is recommended to run the ClamAV programs as a non-priviledged user. " -# | "This will work with most MTA's with a little tweaking, but if you want to " -# | "use clamd for filesystem scans, running as root is probably unavoidable. " -# | "Please see README.Debian in the clamav-base package for details." #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 #, fuzzy +#| msgid "" +#| "It is recommended to run the ClamAV programs as a non-priviledged user. " +#| "This will work with most MTA's with a little tweaking, but if you want to " +#| "use clamd for filesystem scans, running as root is probably unavoidable. " +#| "Please see README.Debian in the clamav-base package for details." msgid "" "It is recommended to run the ClamAV programs as a non-privileged user. This " "will work with most MTAs with a little tweaking, but if you want to use " @@ -718,30 +715,30 @@ "waarschijnlijk onontkoombaar. Zie README.Debian in het clamav-base pakket " "voor de details." -# | msgid "Groups for clamav-daemon (space-seperated):" #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 #, fuzzy +#| msgid "Groups for clamav-daemon (space-seperated):" msgid "Groups for clamav-daemon (space-separated):" msgstr "Groepen voor clamav-daemon (spatie-gescheiden):" #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "Please enter any extra groups for clamd." msgstr "Geef extra groepen voor clamd." -# | msgid "" -# | "Clamd runs as a non-priviledged user by default. If you need clamd to be " -# | "able to access files owned by another user (e.g., in combination with an " -# | "MTA), then you will need to add clamd to the group for that piece of " -# | "software. Please see README.Debian in the clamav-base package for " -# | "details." #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 #, fuzzy +#| msgid "" +#| "Clamd runs as a non-priviledged user by default. If you need clamd to be " +#| "able to access files owned by another user (e.g., in combination with an " +#| "MTA), then you will need to add clamd to the group for that piece of " +#| "software. Please see README.Debian in the clamav-base package for " +#| "details." msgid "" "By default, clamd runs as a non-privileged user. If you need clamd to be " "able to access files owned by another user (e.g., in combination with an " diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/po/pt_BR.po /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/po/pt_BR.po --- clamav-0.92~dfsg/debian/po/pt_BR.po 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/po/pt_BR.po 2008-04-18 08:49:42.000000000 -0400 @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: clamav\n" -"Report-Msgid-Bugs-To: sgran@debian.org\n" -"POT-Creation-Date: 2008-01-21 17:53-0800\n" +"Report-Msgid-Bugs-To: Source: clamav@packages.debian.org\n" +"POT-Creation-Date: 2008-04-17 23:46-0400\n" "PO-Revision-Date: 2007-10-06 14:39-0300\n" "Last-Translator: Felipe Augusto van de Wiel (faw) \n" "Language-Team: l10n portuguese \n" diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/po/pt.po /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/po/pt.po --- clamav-0.92~dfsg/debian/po/pt.po 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/po/pt.po 2008-04-18 08:49:42.000000000 -0400 @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: clamav 0.91.2-4\n" -"Report-Msgid-Bugs-To: sgran@debian.org\n" -"POT-Creation-Date: 2008-01-21 17:53-0800\n" +"Report-Msgid-Bugs-To: Source: clamav@packages.debian.org\n" +"POT-Creation-Date: 2008-04-17 23:46-0400\n" "PO-Revision-Date: 2007-10-19 20:46+0100\n" "Last-Translator: Ricardo Silva \n" "Language-Team: Native Portuguese \n" diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/po/ru.po /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/po/ru.po --- clamav-0.92~dfsg/debian/po/ru.po 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/po/ru.po 2008-04-18 08:49:42.000000000 -0400 @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: 0.91.2-4\n" -"Report-Msgid-Bugs-To: sgran@debian.org\n" -"POT-Creation-Date: 2008-01-21 17:53-0800\n" +"Report-Msgid-Bugs-To: Source: clamav@packages.debian.org\n" +"POT-Creation-Date: 2008-04-17 23:46-0400\n" "PO-Revision-Date: 2007-10-20 17:29+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/po/sv.po /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/po/sv.po --- clamav-0.92~dfsg/debian/po/sv.po 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/po/sv.po 2008-04-18 08:49:42.000000000 -0400 @@ -8,13 +8,13 @@ # or http://www.debian.org/intl/l10n/po-debconf/README-trans # Developers do not need to manually edit POT or PO files. # , fuzzy -# -# +# +# msgid "" msgstr "" "Project-Id-Version: clamav 0.87-1\n" -"Report-Msgid-Bugs-To: sgran@debian.org\n" -"POT-Creation-Date: 2008-02-12 17:20+0000\n" +"Report-Msgid-Bugs-To: Source: clamav@packages.debian.org\n" +"POT-Creation-Date: 2008-04-17 23:46-0400\n" "PO-Revision-Date: 2005-10-12 21:14+0200\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -24,59 +24,46 @@ #. Type: select #. Choices -#. flag:translate!:2,3 -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "daemon" msgstr "" #. Type: select #. Choices -#: ../clamav-freshclam.templates:5 -msgid "ifup.d" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 -msgid "cron" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "manual" msgstr "" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Virus database update method:" msgstr "Metod för uppdatering av virusdatabasen:" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Please choose the method for virus database updates." msgstr "Välj en metod för uppdatering av virusdatabasen." -# | msgid "" -# | " daemon : freshclam is running as a daemon all the time. You should " -# | "choose\n" -# | " this option if you have a permanent network connection.\n" -# | " ifup.d : freshclam will be running as a daemon as long as your Internet\n" -# | " connection is up. Choose this one if you have a dialup " -# | "Internet\n" -# | " connection and don't want freshclam to initiate new " -# | "connections.\n" -# | " cron : freshclam is started from cron. Choose if you want full " -# | "control\n" -# | " of when the database is updated.\n" -# | " manual : No automatic invocation of freshclam. This is not recommended,\n" -# | " as clamav's database is constantly updated." #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 #, fuzzy +#| msgid "" +#| " daemon : freshclam is running as a daemon all the time. You should " +#| "choose\n" +#| " this option if you have a permanent network connection.\n" +#| " ifup.d : freshclam will be running as a daemon as long as your Internet\n" +#| " connection is up. Choose this one if you have a dialup " +#| "Internet\n" +#| " connection and don't want freshclam to initiate new " +#| "connections.\n" +#| " cron : freshclam is started from cron. Choose if you want full " +#| "control\n" +#| " of when the database is updated.\n" +#| " manual : No automatic invocation of freshclam. This is not recommended,\n" +#| " as clamav's database is constantly updated." msgid "" " daemon: freshclam is running as a daemon all the time. You should choose\n" " this option if you have a permanent network connection;\n" @@ -103,26 +90,26 @@ #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Local database mirror site:" msgstr "Lokal databas spegelsajt:" #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Please select the closest local mirror site." msgstr "Välj den närmaste lokala spegelsajten." -# | msgid "" -# | "Freshclam updates its database from a world wide network of mirror " -# | "sites. Please select the mirror closest to you. If you leave it at the " -# | "default setting, an attempt will be made to provide you with a nearby " -# | "mirror, but this attempt may not always provide you with the closest " -# | "mirror site." #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 #, fuzzy +#| msgid "" +#| "Freshclam updates its database from a world wide network of mirror " +#| "sites. Please select the mirror closest to you. If you leave it at the " +#| "default setting, an attempt will be made to provide you with a nearby " +#| "mirror, but this attempt may not always provide you with the closest " +#| "mirror site." msgid "" "Freshclam updates its database from a world wide network of mirror sites. " "Please select the closest mirror. If you leave the default setting, an " @@ -135,17 +122,17 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "HTTP proxy information (leave blank for none):" msgstr "HTTP-proxy information (lämna blank om du inte har en):" -# | msgid "" -# | "If you need to use a HTTP proxy to access the outside world, enter the " -# | "proxy information here. Otherwise, leave this blank." #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 #, fuzzy +#| msgid "" +#| "If you need to use a HTTP proxy to access the outside world, enter the " +#| "proxy information here. Otherwise, leave this blank." msgid "" "If you need to use an HTTP proxy to access the outside world, enter the " "proxy information here. Otherwise, leave this blank." @@ -155,19 +142,19 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "Please use URL syntax (\"http://host[:port]\") here." msgstr "Använd URL-syntax (\"http://värd[:port]\") här." #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "Proxy user information (leave blank for none):" msgstr "Användarinformation för proxy (lämna blank om du inte har någon):" #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "" "If you need to supply a username and password to the proxy, enter it here. " "Otherwise, leave this blank." @@ -175,12 +162,12 @@ "Om du behöver skicka med ett användarnamn och lösenord till proxyn, ange då " "det här. Om inte, lämna fältet blankt." -# | msgid "" -# | "When entering user information, use the standard form of \"user:pass\"" #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 #, fuzzy +#| msgid "" +#| "When entering user information, use the standard form of \"user:pass\"" msgid "When entering user information, use the standard form of \"user:pass\"." msgstr "" "När du anger användarinformation, använd standardformatet \"användare:" @@ -188,36 +175,36 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:52 +#: ../clamav-freshclam.templates:5001 msgid "Number of freshclam updates per day:" msgstr "Antal freshclam uppdateringar per dag:" -# | msgid "Name of the network interface connected to the Internet:" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 #, fuzzy +#| msgid "Name of the network interface connected to the Internet:" msgid "Network interface connected to the Internet:" msgstr "Namn på nätverkskortet som kopplar upp till Internet:" -# | msgid "Name of the network interface connected to the Internet:" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 #, fuzzy +#| msgid "Name of the network interface connected to the Internet:" msgid "" "Please enter the name of the network interface connected to the Internet. " "Example: eth0." msgstr "Namn på nätverkskortet som kopplar upp till Internet:" -# | msgid "" -# | "If the daemon runs when the network is down the log file is filled with a " -# | "lot of entries like 'ERROR: Connection with database.clamav.net failed.', " -# | "making it easy to miss when freshclam really can't update the database." #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 #, fuzzy +#| msgid "" +#| "If the daemon runs when the network is down the log file is filled with a " +#| "lot of entries like 'ERROR: Connection with database.clamav.net failed.', " +#| "making it easy to miss when freshclam really can't update the database." msgid "" "If the daemon runs when the network is down, the log file will be filled " "with entries like 'ERROR: Connection with database.clamav.net failed.', " @@ -229,7 +216,7 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "You can leave this field blank and the daemon will be started from the " "initialization scripts instead. You should then make sure the computer is " @@ -238,13 +225,13 @@ #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "Should clamd be notified after updates?" msgstr "Ska clamd bli informerad efter uppdateringar?" #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "" "Please confirm whether clamd should be notified to reload the database after " "successful updates." @@ -252,16 +239,16 @@ "Vänligen bekräfta om clamd ska informeras och ladda om databasen efter " "lyckade uppdateringar." -# | msgid "" -# | "If you do not choose this option, clamd's database reloads will be " -# | "notably delayed (it performs this check every 6 hours by default), posing " -# | "the risk that a new virus may slip through although your database is up " -# | "to date. Do not use this if you do not use clamd, as it will produce " -# | "errors." #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 #, fuzzy +#| msgid "" +#| "If you do not choose this option, clamd's database reloads will be " +#| "notably delayed (it performs this check every 6 hours by default), posing " +#| "the risk that a new virus may slip through although your database is up " +#| "to date. Do not use this if you do not use clamd, as it will produce " +#| "errors." msgid "" "If you do not choose this option, clamd's database reloads will be notably " "delayed (it performs this check every 6 hours by default), posing the risk " @@ -274,31 +261,31 @@ "Använd inte detta om du inte använder clamd eftersom den kommer att " "producera felmeddelanden." -# | msgid "Do you want to handle the configuration file with debconf?" #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 #, fuzzy +#| msgid "Do you want to handle the configuration file with debconf?" msgid "Handle the configuration file automatically?" msgstr "Vill du hantera konfigurationsfilen med debconf?" -# | msgid "There are quite a few options to be configured for clamav-base." #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 #, fuzzy +#| msgid "There are quite a few options to be configured for clamav-base." msgid "Some options must be configured for clamav-base." msgstr "Det är ett antal inställningar som ska konfigureras för clamav-base." -# | msgid "" -# | "The ClamAV suite won't work if it isn't configured. If you don't choose " -# | "debconf you'll have to configure /etc/clamav/clamd.conf manually or run " -# | "'dpkg-reconfigure clamav-base' later. Whether you choose debconf or not, " -# | "manual changes in /etc/clamav/clamd.conf will be respected." #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 #, fuzzy +#| msgid "" +#| "The ClamAV suite won't work if it isn't configured. If you don't choose " +#| "debconf you'll have to configure /etc/clamav/clamd.conf manually or run " +#| "'dpkg-reconfigure clamav-base' later. Whether you choose debconf or not, " +#| "manual changes in /etc/clamav/clamd.conf will be respected." msgid "" "The ClamAV suite won't work if it isn't configured. If you do not configure " "it automatically, you'll have to configure /etc/clamav/clamd.conf manually " @@ -312,24 +299,24 @@ #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Socket type:" msgstr "Socket-typ:" #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Please choose the type of socket clamd will be listening on." msgstr "Välj den typ av socket som clamd ska lyssna på." -# | msgid "" -# | "If you choose TCP clamd can be accessed remotely. This choice isn't " -# | "recommended since ClamAV is a very young project. If you choose local " -# | "UNIX sockets, clamd can be accessed through a file." #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 #, fuzzy +#| msgid "" +#| "If you choose TCP clamd can be accessed remotely. This choice isn't " +#| "recommended since ClamAV is a very young project. If you choose local " +#| "UNIX sockets, clamd can be accessed through a file." msgid "" "If you choose TCP, clamd can be accessed remotely. If you choose local UNIX " "sockets, clamd can be accessed through a file. Local UNIX sockets are " @@ -339,42 +326,42 @@ "rekommenderat eftersom ClamAV är ett ungt projekt. Om du väljer lokal UNIX-" "socket kan clamd ges tillgång till via en fil." -# | msgid "Local (Unix) socket clamd will listen on:" #. Type: string #. Description -#: ../clamav-base.templates:28 +#: ../clamav-base.templates:3001 #, fuzzy +#| msgid "Local (Unix) socket clamd will listen on:" msgid "Local (UNIX) socket clamd will listen on:" msgstr "Lokal (Unix) socket som clamd ska lyssna på:" -# | msgid "Gracefully handle left-over Unix socket files?" #. Type: boolean #. Description -#: ../clamav-base.templates:33 +#: ../clamav-base.templates:4001 #, fuzzy +#| msgid "Gracefully handle left-over Unix socket files?" msgid "Gracefully handle left-over UNIX socket files?" msgstr "Hantera överblivna Unix socketfiler snällt?" #. Type: string #. Description -#: ../clamav-base.templates:38 +#: ../clamav-base.templates:5001 msgid "TCP port clamd will listen on:" msgstr "TCP-port som clamd ska lyssna på:" #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 msgid "IP address clamd will listen on:" msgstr "IP-address som clamd ska lyssna på:" -# | msgid "" -# | "Enter \"any\" to listen on every IP address configured. If you instead " -# | "want to listen on a single address or hostname, enter that address (e.g. " -# | "\"127.0.0.1\") or hostname." #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 #, fuzzy +#| msgid "" +#| "Enter \"any\" to listen on every IP address configured. If you instead " +#| "want to listen on a single address or hostname, enter that address (e.g. " +#| "\"127.0.0.1\") or hostname." msgid "" "Enter \"any\" to listen on every IP address configured. If you want to " "listen on a single address or host name, enter it here." @@ -385,32 +372,32 @@ #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "Mandatory numeric value" msgstr "" #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "This question requires a numeric answer." msgstr "" #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 msgid "Do you want to enable mail scanning?" msgstr "Vill du aktivera skanning av e-post?" -# | msgid "" -# | "This option enables scanning mail contents for viruses. Although this is " -# | "the least stable part of libclamav, you need this option enabled if you " -# | "want to use clamav-milter. It is recommended that you use a separate " -# | "unpacker to extract any MIME parts of email messages if you want to scan " -# | "email." #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 #, fuzzy +#| msgid "" +#| "This option enables scanning mail contents for viruses. Although this is " +#| "the least stable part of libclamav, you need this option enabled if you " +#| "want to use clamav-milter. It is recommended that you use a separate " +#| "unpacker to extract any MIME parts of email messages if you want to scan " +#| "email." msgid "" "This option enables scanning mail contents for viruses. You need this option " "enabled if you want to use clamav-milter. It is recommended that you use a " @@ -425,17 +412,17 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "Do you want to enable archive scanning?" msgstr "Vill du aktivera skanning av arkiv?" -# | msgid "" -# | "If archive scanning is enabled, the daemon will extract archives such as " -# | "bz2, tar.gz, deb and many more to check their contents for viruses." #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 #, fuzzy +#| msgid "" +#| "If archive scanning is enabled, the daemon will extract archives such as " +#| "bz2, tar.gz, deb and many more to check their contents for viruses." msgid "" "If archive scanning is enabled, the daemon will extract archives such as " "bz2, tar.gz, deb and many more, to check their contents for viruses." @@ -443,13 +430,13 @@ "Om arkivskanning är aktiverad kommer daemonen att packa upp arkiv såsom bz2, " "tar.gz, deb och många fler för att kontrollera deras innehåll efter virus." -# | msgid "" -# | "For more information about what archives are supported see /usr/share/doc/" -# | "clamav-docs/clamdoc.pdf or the manpage clamscan(5)." #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 #, fuzzy +#| msgid "" +#| "For more information about what archives are supported see /usr/share/doc/" +#| "clamav-docs/clamdoc.pdf or the manpage clamscan(5)." msgid "" "For more information about what archives are supported, see /usr/share/doc/" "clamav-docs/clamdoc.pdf or the manpage clamscan(5)." @@ -459,18 +446,18 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 msgid "Do you want to enable RAR archive scanning?" msgstr "Vill du aktivera skanning av RAR-arkiv?" -# | msgid "" -# | "This enables the builtin RAR archiver. Use with caution, as the RAR code " -# | "may have memory leaks. Clamscan can also use external RAR programs, such " -# | "as unrar, although clamd does not." #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 #, fuzzy +#| msgid "" +#| "This enables the builtin RAR archiver. Use with caution, as the RAR code " +#| "may have memory leaks. Clamscan can also use external RAR programs, such " +#| "as unrar, although clamd does not." msgid "" "This enables the builtin RAR archiver. Use with caution, as the RAR code may " "have memory leaks. Clamscan can also use external RAR programs, such as " @@ -482,17 +469,17 @@ #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 msgid "Maximum stream length (unit Mb) allowed:" msgstr "Max strömlängd (i Mb) tillåtet:" -# | msgid "" -# | "If you want you can set a limit on the stream length that can be scanned. " -# | "The value 0 disables this limit." #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 #, fuzzy +#| msgid "" +#| "If you want you can set a limit on the stream length that can be scanned. " +#| "The value 0 disables this limit." msgid "You can set a limit on the stream length that can be scanned." msgstr "" "Om du vill kan du sätta en begränsning på strömlängden som kan skannas. " @@ -500,17 +487,35 @@ #. Type: string #. Description -#: ../clamav-base.templates:91 +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#: ../clamav-base.templates:11001 ../clamav-base.templates:12001 +#: ../clamav-base.templates:13001 ../clamav-base.templates:15001 +#: ../clamav-base.templates:16001 +#, fuzzy +#| msgid "The value 0 disables the size limit." +msgid "Entering '0' will disable this limit." +msgstr "Värdet 0 stänger av storleksbegränsningen." + +#. Type: string +#. Description +#: ../clamav-base.templates:12001 msgid "Limit on the Archive recursion:" msgstr "Begränsning för arkiv-rekursion:" -# | msgid "" -# | "This setting places a limit on recursion within archives, for example, a " -# | "tar file that is also gzipped. The value 0 disables the recursion limit." #. Type: string #. Description -#: ../clamav-base.templates:91 +#: ../clamav-base.templates:12001 #, fuzzy +#| msgid "" +#| "This setting places a limit on recursion within archives, for example, a " +#| "tar file that is also gzipped. The value 0 disables the recursion limit." msgid "" "This setting places a limit on recursion within archives, for example, a tar " "file that is also gzipped." @@ -520,19 +525,19 @@ #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 msgid "Limit on Archive compression:" msgstr "Begränsa komprimering av arkiv:" -# | msgid "" -# | "This setting places a limit on compression within archives, to guard " -# | "against archive bombs (small files that expand to massive ones, a form of " -# | "Denial of Service Attack). However, this limit may be too low for some " -# | "settings. The value 0 disables this limit." #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 #, fuzzy +#| msgid "" +#| "This setting places a limit on compression within archives, to guard " +#| "against archive bombs (small files that expand to massive ones, a form of " +#| "Denial of Service Attack). However, this limit may be too low for some " +#| "settings. The value 0 disables this limit." msgid "" "This setting places a limit on compression within archives, to guard against " "archive bombs (small files that expand to massive ones, a form of Denial of " @@ -545,91 +550,83 @@ #. Type: string #. Description -#: ../clamav-base.templates:111 +#: ../clamav-base.templates:14001 msgid "Limit for the maximum number of files in an archive:" msgstr "Begränsa max antal filer i ett arkiv:" #. Type: string #. Description -#: ../clamav-base.templates:116 +#: ../clamav-base.templates:15001 msgid "Largest file size in Mb you will scan inside archives:" msgstr "Största filstorlek i Mb som du vill skanna inne i arkiv:" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 msgid "Maximum directory depth that will be allowed:" msgstr "Max mappdjup som ska tillåtas:" -# | msgid "Do you want the daemon to follow directory symlinks?" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 #, fuzzy +#| msgid "Do you want the daemon to follow directory symlinks?" msgid "" "This value must be set if you want to allow the daemon to follow directory " "symlinks." msgstr "Vill du att daemonen ska följa symboliska länkar på mappar?" -# | msgid "The value 0 disables the size limit." -#. Type: string -#. Description -#: ../clamav-base.templates:122 -#, fuzzy -msgid "Entering '0' will disable this limit." -msgstr "Värdet 0 stänger av storleksbegränsningen." - #. Type: boolean #. Description -#: ../clamav-base.templates:131 +#: ../clamav-base.templates:17001 msgid "Do you want the daemon to follow directory symlinks?" msgstr "Vill du att daemonen ska följa symboliska länkar på mappar?" #. Type: boolean #. Description -#: ../clamav-base.templates:136 +#: ../clamav-base.templates:18001 msgid "Do you want the daemon to follow regular file symlinks?" msgstr "Vill du att daemonen ska följa symboliska länkar för filer?" #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 msgid "Timeout for stopping the thread-scanner (seconds):" msgstr "Timeout för att stoppa tråd-skannern (i sekunder):" -# | msgid "The value 0 disables the timeout." #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 #, fuzzy +#| msgid "The value 0 disables the timeout." msgid "Entering '0' will disable the timeout." msgstr "Värdet 0 stänger av denna timeout." #. Type: string #. Description -#: ../clamav-base.templates:147 +#: ../clamav-base.templates:20001 msgid "Number of threads for the daemon:" msgstr "Antal trådar för daemonen:" #. Type: string #. Description -#: ../clamav-base.templates:152 +#: ../clamav-base.templates:21001 msgid "Number of pending connections allowed:" msgstr "Antal väntande anslutningar tillåtna:" #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 msgid "Do you want to use the system logger?" msgstr "Vill du använda systemloggaren?" -# | msgid "" -# | "It is possible to log daemon activity to the system logger. This can be " -# | "done independently of whether you want to log activity to a special file." #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 #, fuzzy +#| msgid "" +#| "It is possible to log daemon activity to the system logger. This can be " +#| "done independently of whether you want to log activity to a special file." msgid "" "It is possible to log the daemon activity to the system logger. This can be " "done independently of whether you want to log activity to a special file." @@ -639,30 +636,30 @@ #. Type: string #. Description -#: ../clamav-base.templates:164 +#: ../clamav-base.templates:23001 msgid "Log file for clamav-daemon (enter none to disable):" msgstr "Loggfil för clamav-daemon (ange 'none' för att stänga av):" #. Type: boolean #. Description -#: ../clamav-base.templates:169 +#: ../clamav-base.templates:24001 msgid "Do you want to log time information with each message?" msgstr "Vill du logga tidsinformation med varje meddelande?" #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 msgid "Delay in seconds between daemon self checks:" msgstr "Fördröjning i sekunder mellan daemonens självkontroller:" -# | msgid "" -# | "During the SelfCheck the daemon checks if it needs to reload the virus " -# | "database. It also tries to repair problems caused by bugs in the daemon, " -# | "i.e in some cases it's able to repair broken data structures." #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 #, fuzzy +#| msgid "" +#| "During the SelfCheck the daemon checks if it needs to reload the virus " +#| "database. It also tries to repair problems caused by bugs in the daemon, " +#| "i.e in some cases it's able to repair broken data structures." msgid "" "During the SelfCheck the daemon checks if it needs to reload the virus " "database. It also tries to repair problems caused by bugs in the daemon, " @@ -672,23 +669,23 @@ "virusdatabasen. Den försöker och reparera problem som skapats av buggar i " "daemonen, exempelvis i några fall kan den laga brutna datastrukturer." -# | msgid "What user do you want to run clamav-daemon as:" #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 #, fuzzy +#| msgid "What user do you want to run clamav-daemon as:" msgid "User to run clamav-daemon as:" msgstr "Vilken användare vill du ska köra clamav-daemonen som?" -# | msgid "" -# | "It is recommended to run the ClamAV programs as a non-priviledged user. " -# | "This will work with most MTA's with a little tweaking, but if you want to " -# | "use clamd for filesystem scans, running as root is probably unavoidable. " -# | "Please see README.Debian in the clamav-base package for details." #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 #, fuzzy +#| msgid "" +#| "It is recommended to run the ClamAV programs as a non-priviledged user. " +#| "This will work with most MTA's with a little tweaking, but if you want to " +#| "use clamd for filesystem scans, running as root is probably unavoidable. " +#| "Please see README.Debian in the clamav-base package for details." msgid "" "It is recommended to run the ClamAV programs as a non-privileged user. This " "will work with most MTAs with a little tweaking, but if you want to use " @@ -700,30 +697,30 @@ "men om du vill använda clamd för att skanna filsystem måste du tyvärr köra " "som root. Se README.Debian i paketet clamav-base för detaljer." -# | msgid "Groups for clamav-daemon (space-seperated):" #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 #, fuzzy +#| msgid "Groups for clamav-daemon (space-seperated):" msgid "Groups for clamav-daemon (space-separated):" msgstr "Grupper för clamav-daemon (separera med mellanslag):" #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "Please enter any extra groups for clamd." msgstr "Ange de extra grupper som clamd ska ingå i." -# | msgid "" -# | "Clamd runs as a non-priviledged user by default. If you need clamd to be " -# | "able to access files owned by another user (e.g., in combination with an " -# | "MTA), then you will need to add clamd to the group for that piece of " -# | "software. Please see README.Debian in the clamav-base package for " -# | "details." #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 #, fuzzy +#| msgid "" +#| "Clamd runs as a non-priviledged user by default. If you need clamd to be " +#| "able to access files owned by another user (e.g., in combination with an " +#| "MTA), then you will need to add clamd to the group for that piece of " +#| "software. Please see README.Debian in the clamav-base package for " +#| "details." msgid "" "By default, clamd runs as a non-privileged user. If you need clamd to be " "able to access files owned by another user (e.g., in combination with an " diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/po/templates.pot /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/po/templates.pot --- clamav-0.92~dfsg/debian/po/templates.pot 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/po/templates.pot 2008-04-18 08:49:42.000000000 -0400 @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: sgran@debian.org\n" -"POT-Creation-Date: 2008-02-12 17:20+0000\n" +"Report-Msgid-Bugs-To: Source: clamav@packages.debian.org\n" +"POT-Creation-Date: 2008-04-17 23:46-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,44 +18,31 @@ #. Type: select #. Choices -#. flag:translate!:2,3 -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "daemon" msgstr "" #. Type: select #. Choices -#: ../clamav-freshclam.templates:5 -msgid "ifup.d" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 -msgid "cron" -msgstr "" - -#. Type: select -#. Choices -#: ../clamav-freshclam.templates:5 +#: ../clamav-freshclam.templates:1001 msgid "manual" msgstr "" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Virus database update method:" msgstr "" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "Please choose the method for virus database updates." msgstr "" #. Type: select #. Description -#: ../clamav-freshclam.templates:7 +#: ../clamav-freshclam.templates:1002 msgid "" " daemon: freshclam is running as a daemon all the time. You should choose\n" " this option if you have a permanent network connection;\n" @@ -71,19 +58,19 @@ #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Local database mirror site:" msgstr "" #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "Please select the closest local mirror site." msgstr "" #. Type: select #. Description -#: ../clamav-freshclam.templates:24 +#: ../clamav-freshclam.templates:2001 msgid "" "Freshclam updates its database from a world wide network of mirror sites. " "Please select the closest mirror. If you leave the default setting, an " @@ -92,13 +79,13 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "HTTP proxy information (leave blank for none):" msgstr "" #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "" "If you need to use an HTTP proxy to access the outside world, enter the " "proxy information here. Otherwise, leave this blank." @@ -106,19 +93,19 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:34 +#: ../clamav-freshclam.templates:3001 msgid "Please use URL syntax (\"http://host[:port]\") here." msgstr "" #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "Proxy user information (leave blank for none):" msgstr "" #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "" "If you need to supply a username and password to the proxy, enter it here. " "Otherwise, leave this blank." @@ -126,25 +113,25 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:42 +#: ../clamav-freshclam.templates:4001 msgid "When entering user information, use the standard form of \"user:pass\"." msgstr "" #. Type: string #. Description -#: ../clamav-freshclam.templates:52 +#: ../clamav-freshclam.templates:5001 msgid "Number of freshclam updates per day:" msgstr "" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "Network interface connected to the Internet:" msgstr "" #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "Please enter the name of the network interface connected to the Internet. " "Example: eth0." @@ -152,7 +139,7 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "If the daemon runs when the network is down, the log file will be filled " "with entries like 'ERROR: Connection with database.clamav.net failed.', " @@ -161,7 +148,7 @@ #. Type: string #. Description -#: ../clamav-freshclam.templates:56 +#: ../clamav-freshclam.templates:6001 msgid "" "You can leave this field blank and the daemon will be started from the " "initialization scripts instead. You should then make sure the computer is " @@ -170,13 +157,13 @@ #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "Should clamd be notified after updates?" msgstr "" #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "" "Please confirm whether clamd should be notified to reload the database after " "successful updates." @@ -184,7 +171,7 @@ #. Type: boolean #. Description -#: ../clamav-freshclam.templates:71 +#: ../clamav-freshclam.templates:7001 msgid "" "If you do not choose this option, clamd's database reloads will be notably " "delayed (it performs this check every 6 hours by default), posing the risk " @@ -194,19 +181,19 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "Handle the configuration file automatically?" msgstr "" #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "Some options must be configured for clamav-base." msgstr "" #. Type: boolean #. Description -#: ../clamav-base.templates:5 +#: ../clamav-base.templates:1001 msgid "" "The ClamAV suite won't work if it isn't configured. If you do not configure " "it automatically, you'll have to configure /etc/clamav/clamd.conf manually " @@ -216,19 +203,19 @@ #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Socket type:" msgstr "" #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "Please choose the type of socket clamd will be listening on." msgstr "" #. Type: select #. Description -#: ../clamav-base.templates:18 +#: ../clamav-base.templates:2001 msgid "" "If you choose TCP, clamd can be accessed remotely. If you choose local UNIX " "sockets, clamd can be accessed through a file. Local UNIX sockets are " @@ -237,31 +224,31 @@ #. Type: string #. Description -#: ../clamav-base.templates:28 +#: ../clamav-base.templates:3001 msgid "Local (UNIX) socket clamd will listen on:" msgstr "" #. Type: boolean #. Description -#: ../clamav-base.templates:33 +#: ../clamav-base.templates:4001 msgid "Gracefully handle left-over UNIX socket files?" msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:38 +#: ../clamav-base.templates:5001 msgid "TCP port clamd will listen on:" msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 msgid "IP address clamd will listen on:" msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:43 +#: ../clamav-base.templates:6001 msgid "" "Enter \"any\" to listen on every IP address configured. If you want to " "listen on a single address or host name, enter it here." @@ -269,25 +256,25 @@ #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "Mandatory numeric value" msgstr "" #. Type: error #. Description -#: ../clamav-base.templates:49 +#: ../clamav-base.templates:7001 msgid "This question requires a numeric answer." msgstr "" #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 msgid "Do you want to enable mail scanning?" msgstr "" #. Type: boolean #. Description -#: ../clamav-base.templates:55 +#: ../clamav-base.templates:8001 msgid "" "This option enables scanning mail contents for viruses. You need this option " "enabled if you want to use clamav-milter. It is recommended that you use a " @@ -297,13 +284,13 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "Do you want to enable archive scanning?" msgstr "" #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "" "If archive scanning is enabled, the daemon will extract archives such as " "bz2, tar.gz, deb and many more, to check their contents for viruses." @@ -311,7 +298,7 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:65 +#: ../clamav-base.templates:9001 msgid "" "For more information about what archives are supported, see /usr/share/doc/" "clamav-docs/clamdoc.pdf or the manpage clamscan(5)." @@ -319,13 +306,13 @@ #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 msgid "Do you want to enable RAR archive scanning?" msgstr "" #. Type: boolean #. Description -#: ../clamav-base.templates:75 +#: ../clamav-base.templates:10001 msgid "" "This enables the builtin RAR archiver. Use with caution, as the RAR code may " "have memory leaks. Clamscan can also use external RAR programs, such as " @@ -334,25 +321,41 @@ #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 msgid "Maximum stream length (unit Mb) allowed:" msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:83 +#: ../clamav-base.templates:11001 msgid "You can set a limit on the stream length that can be scanned." msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:91 +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: string +#. Description +#: ../clamav-base.templates:11001 ../clamav-base.templates:12001 +#: ../clamav-base.templates:13001 ../clamav-base.templates:15001 +#: ../clamav-base.templates:16001 +msgid "Entering '0' will disable this limit." +msgstr "" + +#. Type: string +#. Description +#: ../clamav-base.templates:12001 msgid "Limit on the Archive recursion:" msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:91 +#: ../clamav-base.templates:12001 msgid "" "This setting places a limit on recursion within archives, for example, a tar " "file that is also gzipped." @@ -360,13 +363,13 @@ #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 msgid "Limit on Archive compression:" msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:100 +#: ../clamav-base.templates:13001 msgid "" "This setting places a limit on compression within archives, to guard against " "archive bombs (small files that expand to massive ones, a form of Denial of " @@ -375,81 +378,75 @@ #. Type: string #. Description -#: ../clamav-base.templates:111 +#: ../clamav-base.templates:14001 msgid "Limit for the maximum number of files in an archive:" msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:116 +#: ../clamav-base.templates:15001 msgid "Largest file size in Mb you will scan inside archives:" msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 msgid "Maximum directory depth that will be allowed:" msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:122 +#: ../clamav-base.templates:16001 msgid "" "This value must be set if you want to allow the daemon to follow directory " "symlinks." msgstr "" -#. Type: string -#. Description -#: ../clamav-base.templates:122 -msgid "Entering '0' will disable this limit." -msgstr "" - #. Type: boolean #. Description -#: ../clamav-base.templates:131 +#: ../clamav-base.templates:17001 msgid "Do you want the daemon to follow directory symlinks?" msgstr "" #. Type: boolean #. Description -#: ../clamav-base.templates:136 +#: ../clamav-base.templates:18001 msgid "Do you want the daemon to follow regular file symlinks?" msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 msgid "Timeout for stopping the thread-scanner (seconds):" msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:141 +#: ../clamav-base.templates:19001 msgid "Entering '0' will disable the timeout." msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:147 +#: ../clamav-base.templates:20001 msgid "Number of threads for the daemon:" msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:152 +#: ../clamav-base.templates:21001 msgid "Number of pending connections allowed:" msgstr "" #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 msgid "Do you want to use the system logger?" msgstr "" #. Type: boolean #. Description -#: ../clamav-base.templates:157 +#: ../clamav-base.templates:22001 msgid "" "It is possible to log the daemon activity to the system logger. This can be " "done independently of whether you want to log activity to a special file." @@ -457,25 +454,25 @@ #. Type: string #. Description -#: ../clamav-base.templates:164 +#: ../clamav-base.templates:23001 msgid "Log file for clamav-daemon (enter none to disable):" msgstr "" #. Type: boolean #. Description -#: ../clamav-base.templates:169 +#: ../clamav-base.templates:24001 msgid "Do you want to log time information with each message?" msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 msgid "Delay in seconds between daemon self checks:" msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:174 +#: ../clamav-base.templates:25001 msgid "" "During the SelfCheck the daemon checks if it needs to reload the virus " "database. It also tries to repair problems caused by bugs in the daemon, " @@ -484,13 +481,13 @@ #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 msgid "User to run clamav-daemon as:" msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:182 +#: ../clamav-base.templates:26001 msgid "" "It is recommended to run the ClamAV programs as a non-privileged user. This " "will work with most MTAs with a little tweaking, but if you want to use " @@ -500,19 +497,19 @@ #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "Groups for clamav-daemon (space-separated):" msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "Please enter any extra groups for clamd." msgstr "" #. Type: string #. Description -#: ../clamav-base.templates:190 +#: ../clamav-base.templates:27001 msgid "" "By default, clamd runs as a non-privileged user. If you need clamd to be " "able to access files owned by another user (e.g., in combination with an " diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/debian/po/vi.po /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/debian/po/vi.po --- clamav-0.92~dfsg/debian/po/vi.po 2008-04-18 08:49:41.000000000 -0400 +++ clamav-0.92.1~dfsg2/debian/po/vi.po 2008-04-18 08:49:42.000000000 -0400 @@ -1,12 +1,12 @@ # Vietnamese translation for ClamAV. # Copyright © 2007 Free Software Foundation, Inc. # Clytie Siddall , 2005-2007. -# +# msgid "" msgstr "" "Project-Id-Version: clamav 0.91.2-4\n" -"Report-Msgid-Bugs-To: sgran@debian.org\n" -"POT-Creation-Date: 2008-01-21 17:53-0800\n" +"Report-Msgid-Bugs-To: Source: clamav@packages.debian.org\n" +"POT-Creation-Date: 2008-04-17 23:46-0400\n" "PO-Revision-Date: 2007-10-16 22:14+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -235,10 +235,10 @@ "etc/clamav/clamd.conf will be respected." msgstr "" "ChÆ°a cấu hình thì phần má»m ClamAV không hoạt Ä‘á»™ng được. Không cấu hình tá»± " -"Ä‘á»™ng thì bạn cần phải tá»± cấu hình « /etc/clamav/clamd.conf », hoặc chạy lệnh " -"« dpkg-reconfigure clamav-base » vá» sau. Trong má»i trÆ°á»ng hợp Ä‘á»u, phần má»m " -"sẽ thá»±c hiện má»—i thay đổi tá»± làm trong tập tin cấu hình « /etc/clamav/clamd." -"conf »." +"Ä‘á»™ng thì bạn cần phải tá»± cấu hình « /etc/clamav/clamd.conf », hoặc chạy lệnh « " +"dpkg-reconfigure clamav-base » vá» sau. Trong má»i trÆ°á»ng hợp Ä‘á»u, phần má»m sẽ " +"thá»±c hiện má»—i thay đổi tá»± làm trong tập tin cấu hình « /etc/clamav/clamd.conf " +"»." #. Type: select #. Description @@ -295,8 +295,8 @@ "Enter \"any\" to listen on every IP address configured. If you want to " "listen on a single address or host name, enter it here." msgstr "" -"Gõ « any » (bất kỳ) để lắng nghe trên má»i địa chỉ IP được cấu hình. Muốn " -"lắng nghe trên má»™t địa chỉ hay tên máy riêng thì gõ nó vào đây." +"Gõ « any » (bất kỳ) để lắng nghe trên má»i địa chỉ IP được cấu hình. Muốn lắng " +"nghe trên má»™t địa chỉ hay tên máy riêng thì gõ nó vào đây." #. Type: error #. Description @@ -353,8 +353,7 @@ "clamav-docs/clamdoc.pdf or the manpage clamscan(5)." msgstr "" "Äể tìm thêm thông tin vá» những kho nào được há»— trợ, xem tập tin « /usr/share/" -"doc/clamav-docs/clamdoc.pdf », hoặc Ä‘á»c trang hÆ°á»›ng dẫn (man) « clamscan(5) " -"»." +"doc/clamav-docs/clamdoc.pdf », hoặc Ä‘á»c trang hÆ°á»›ng dẫn (man) « clamscan(5) »." #. Type: boolean #. Description @@ -659,8 +658,8 @@ #~ "không có quyá»n truy cập đặc biệt. Cấu hình trÆ°á»›c nhá» má»™t ổ cắm hay PID " #~ "trong « /var/run » thì trình clam sẽ không khởi chạy lại sau lần nâng cấp " #~ "này. Hãy chạy lệnh cấu hình lại « dpkg-reconfigure clamav-base », và khi " -#~ "được nhắc vá»›i ổ cắm, thay đổi vị trí của nó thành « /var/run/clamav/ », " -#~ "và cập nhật cấu hình của phần má»m nào cÅ©ng sá»­ dụng ổ cắm này (v.d. Exim, " +#~ "được nhắc vá»›i ổ cắm, thay đổi vị trí của nó thành « /var/run/clamav/ », và " +#~ "cập nhật cấu hình của phần má»m nào cÅ©ng sá»­ dụng ổ cắm này (v.d. Exim, " #~ "AMaVis)." #~ msgid "daemon, ifup.d, cron, manual" Binary files /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/clamdoc.pdf and /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/clamdoc.pdf differ diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/clamdoc.tex /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/clamdoc.tex --- clamav-0.92~dfsg/docs/clamdoc.tex 2007-12-12 17:30:22.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/clamdoc.tex 2008-01-28 16:42:58.000000000 -0500 @@ -1,5 +1,6 @@ % Clam AntiVirus: User Manual % +% Copyright (C) 2008 Sourcefire, Inc. % Copyright (C) 2002 - 2007 Tomasz Kojm % Version 0.2x corrected by Dennis Leeuw % Version 0.80 corrected by Tomasz Papszun @@ -70,7 +71,7 @@ \vspace{3cm} \begin{flushright} \rule[-1ex]{8cm}{3pt}\\ - \huge Clam AntiVirus 0.92\\ + \huge Clam AntiVirus 0.92.1\\ \huge \emph{User Manual}\\ \end{flushright} @@ -81,7 +82,9 @@ \noindent \begin{boxedminipage}[b]{\textwidth} - ClamAV User Manual, \copyright \ 2002 - 2007 Tomasz Kojm\\ + ClamAV User Manual, + \copyright \ 2007 - 2008 Sourcefire, Inc. + \copyright \ 2002 - 2007 Tomasz Kojm\\ This document is distributed under the terms of the GNU General Public License v2.\\ diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/clamdoc.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/clamdoc.html --- clamav-0.92~dfsg/docs/html/clamdoc.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/clamdoc.html 2008-01-28 16:45:35.000000000 -0500 @@ -59,7 +59,7 @@

-
Clam AntiVirus 0.92 +
Clam AntiVirus 0.92.1
User Manual
@@ -206,7 +206,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
Binary files /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/img3.png and /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/img3.png differ Binary files /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/img4.png and /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/img4.png differ diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/index.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/index.html --- clamav-0.92~dfsg/docs/html/index.html 2007-12-12 17:32:30.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/index.html 2008-01-28 16:45:35.000000000 -0500 @@ -59,7 +59,7 @@

-
Clam AntiVirus 0.92 +
Clam AntiVirus 0.92.1
User Manual
@@ -206,7 +206,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node10.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node10.html --- clamav-0.92~dfsg/docs/html/node10.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node10.html 2008-01-28 16:45:35.000000000 -0500 @@ -90,7 +90,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node11.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node11.html --- clamav-0.92~dfsg/docs/html/node11.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node11.html 2008-01-28 16:45:35.000000000 -0500 @@ -75,7 +75,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node12.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node12.html --- clamav-0.92~dfsg/docs/html/node12.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node12.html 2008-01-28 16:45:35.000000000 -0500 @@ -69,7 +69,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node13.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node13.html --- clamav-0.92~dfsg/docs/html/node13.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node13.html 2008-01-28 16:45:35.000000000 -0500 @@ -75,7 +75,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node14.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node14.html --- clamav-0.92~dfsg/docs/html/node14.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node14.html 2008-01-28 16:45:35.000000000 -0500 @@ -64,7 +64,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node15.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node15.html --- clamav-0.92~dfsg/docs/html/node15.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node15.html 2008-01-28 16:45:35.000000000 -0500 @@ -82,7 +82,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node16.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node16.html --- clamav-0.92~dfsg/docs/html/node16.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node16.html 2008-01-28 16:45:35.000000000 -0500 @@ -79,7 +79,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node17.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node17.html --- clamav-0.92~dfsg/docs/html/node17.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node17.html 2008-01-28 16:45:35.000000000 -0500 @@ -90,7 +90,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node18.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node18.html --- clamav-0.92~dfsg/docs/html/node18.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node18.html 2008-01-28 16:45:35.000000000 -0500 @@ -81,7 +81,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node19.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node19.html --- clamav-0.92~dfsg/docs/html/node19.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node19.html 2008-01-28 16:45:35.000000000 -0500 @@ -75,7 +75,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node1.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node1.html --- clamav-0.92~dfsg/docs/html/node1.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node1.html 2008-01-28 16:45:35.000000000 -0500 @@ -146,10 +146,11 @@
\begin{boxedminipage}[b]{\textwidth}
-ClamAV User Manual, \copyright \ 2002 - 20...
+ClamAV User Manual,
+\copyright \ 2007 - 2...
 ... Franklin Street, Fifth Floor, Boston,
 MA 02110-1301, USA.
 \end{boxedminipage} @@ -174,7 +175,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node20.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node20.html --- clamav-0.92~dfsg/docs/html/node20.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node20.html 2008-01-28 16:45:35.000000000 -0500 @@ -138,7 +138,7 @@
Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node21.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node21.html --- clamav-0.92~dfsg/docs/html/node21.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node21.html 2008-01-28 16:45:35.000000000 -0500 @@ -77,7 +77,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node22.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node22.html --- clamav-0.92~dfsg/docs/html/node22.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node22.html 2008-01-28 16:45:35.000000000 -0500 @@ -80,7 +80,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node23.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node23.html --- clamav-0.92~dfsg/docs/html/node23.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node23.html 2008-01-28 16:45:35.000000000 -0500 @@ -159,7 +159,7 @@
Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node24.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node24.html --- clamav-0.92~dfsg/docs/html/node24.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node24.html 2008-01-28 16:45:35.000000000 -0500 @@ -76,7 +76,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node25.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node25.html --- clamav-0.92~dfsg/docs/html/node25.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node25.html 2008-01-28 16:45:35.000000000 -0500 @@ -92,7 +92,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node26.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node26.html --- clamav-0.92~dfsg/docs/html/node26.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node26.html 2008-01-28 16:45:35.000000000 -0500 @@ -70,7 +70,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node27.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node27.html --- clamav-0.92~dfsg/docs/html/node27.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node27.html 2008-01-28 16:45:36.000000000 -0500 @@ -94,7 +94,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node28.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node28.html --- clamav-0.92~dfsg/docs/html/node28.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node28.html 2008-01-28 16:45:36.000000000 -0500 @@ -83,7 +83,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node29.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node29.html --- clamav-0.92~dfsg/docs/html/node29.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node29.html 2008-01-28 16:45:36.000000000 -0500 @@ -121,7 +121,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node2.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node2.html --- clamav-0.92~dfsg/docs/html/node2.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node2.html 2008-01-28 16:45:35.000000000 -0500 @@ -79,7 +79,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node30.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node30.html --- clamav-0.92~dfsg/docs/html/node30.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node30.html 2008-01-28 16:45:36.000000000 -0500 @@ -65,7 +65,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node31.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node31.html --- clamav-0.92~dfsg/docs/html/node31.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node31.html 2008-01-28 16:45:36.000000000 -0500 @@ -77,7 +77,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node32.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node32.html --- clamav-0.92~dfsg/docs/html/node32.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node32.html 2008-01-28 16:45:36.000000000 -0500 @@ -85,7 +85,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node33.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node33.html --- clamav-0.92~dfsg/docs/html/node33.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node33.html 2008-01-28 16:45:36.000000000 -0500 @@ -62,7 +62,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node34.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node34.html --- clamav-0.92~dfsg/docs/html/node34.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node34.html 2008-01-28 16:45:36.000000000 -0500 @@ -88,7 +88,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node35.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node35.html --- clamav-0.92~dfsg/docs/html/node35.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node35.html 2008-01-28 16:45:36.000000000 -0500 @@ -73,7 +73,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node36.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node36.html --- clamav-0.92~dfsg/docs/html/node36.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node36.html 2008-01-28 16:45:36.000000000 -0500 @@ -75,7 +75,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node37.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node37.html --- clamav-0.92~dfsg/docs/html/node37.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node37.html 2008-01-28 16:45:36.000000000 -0500 @@ -75,7 +75,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node38.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node38.html --- clamav-0.92~dfsg/docs/html/node38.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node38.html 2008-01-28 16:45:36.000000000 -0500 @@ -64,7 +64,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node39.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node39.html --- clamav-0.92~dfsg/docs/html/node39.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node39.html 2008-01-28 16:45:36.000000000 -0500 @@ -102,7 +102,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node3.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node3.html --- clamav-0.92~dfsg/docs/html/node3.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node3.html 2008-01-28 16:45:35.000000000 -0500 @@ -176,7 +176,7 @@
Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node40.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node40.html --- clamav-0.92~dfsg/docs/html/node40.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node40.html 2008-01-28 16:45:36.000000000 -0500 @@ -68,7 +68,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node41.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node41.html --- clamav-0.92~dfsg/docs/html/node41.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node41.html 2008-01-28 16:45:36.000000000 -0500 @@ -74,7 +74,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node42.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node42.html --- clamav-0.92~dfsg/docs/html/node42.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node42.html 2008-01-28 16:45:36.000000000 -0500 @@ -101,7 +101,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node43.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node43.html --- clamav-0.92~dfsg/docs/html/node43.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node43.html 2008-01-28 16:45:36.000000000 -0500 @@ -226,7 +226,7 @@
Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node44.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node44.html --- clamav-0.92~dfsg/docs/html/node44.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node44.html 2008-01-28 16:45:36.000000000 -0500 @@ -62,7 +62,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node45.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node45.html --- clamav-0.92~dfsg/docs/html/node45.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node45.html 2008-01-28 16:45:36.000000000 -0500 @@ -67,7 +67,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node46.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node46.html --- clamav-0.92~dfsg/docs/html/node46.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node46.html 2008-01-28 16:45:36.000000000 -0500 @@ -65,7 +65,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node47.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node47.html --- clamav-0.92~dfsg/docs/html/node47.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node47.html 2008-01-28 16:45:36.000000000 -0500 @@ -81,7 +81,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node48.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node48.html --- clamav-0.92~dfsg/docs/html/node48.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node48.html 2008-01-28 16:45:36.000000000 -0500 @@ -612,7 +612,7 @@
Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node49.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node49.html --- clamav-0.92~dfsg/docs/html/node49.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node49.html 2008-01-28 16:45:36.000000000 -0500 @@ -458,7 +458,7 @@
Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node4.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node4.html --- clamav-0.92~dfsg/docs/html/node4.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node4.html 2008-01-28 16:45:35.000000000 -0500 @@ -86,7 +86,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node50.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node50.html --- clamav-0.92~dfsg/docs/html/node50.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node50.html 2008-01-28 16:45:36.000000000 -0500 @@ -63,7 +63,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node51.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node51.html --- clamav-0.92~dfsg/docs/html/node51.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node51.html 2008-01-28 16:45:36.000000000 -0500 @@ -62,7 +62,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node52.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node52.html --- clamav-0.92~dfsg/docs/html/node52.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node52.html 2008-01-28 16:45:36.000000000 -0500 @@ -134,7 +134,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node53.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node53.html --- clamav-0.92~dfsg/docs/html/node53.html 2007-12-12 17:31:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node53.html 2008-01-28 16:45:36.000000000 -0500 @@ -64,11 +64,11 @@ The command line arguments were:
latex2html -local_icons clamdoc.tex

-The translation was initiated by Tomasz Kojm on 2007-12-12 +The translation was initiated by Tomasz Kojm on 2008-01-28


Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node5.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node5.html --- clamav-0.92~dfsg/docs/html/node5.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node5.html 2008-01-28 16:45:35.000000000 -0500 @@ -65,7 +65,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node6.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node6.html --- clamav-0.92~dfsg/docs/html/node6.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node6.html 2008-01-28 16:45:35.000000000 -0500 @@ -71,7 +71,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node7.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node7.html --- clamav-0.92~dfsg/docs/html/node7.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node7.html 2008-01-28 16:45:35.000000000 -0500 @@ -80,7 +80,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node8.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node8.html --- clamav-0.92~dfsg/docs/html/node8.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node8.html 2008-01-28 16:45:35.000000000 -0500 @@ -61,7 +61,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/html/node9.html /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/html/node9.html --- clamav-0.92~dfsg/docs/html/node9.html 2007-12-12 17:31:47.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/html/node9.html 2008-01-28 16:45:35.000000000 -0500 @@ -77,7 +77,7 @@

Tomasz Kojm -2007-12-12 +2008-01-28
diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/Makefile.am /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/Makefile.am --- clamav-0.92~dfsg/docs/Makefile.am 2007-12-06 07:58:57.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/Makefile.am 2008-01-28 14:38:47.000000000 -0500 @@ -16,5 +16,5 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, # MA 02110-1301, USA. -EXTRA_DIST = html man/*.in clamdoc.pdf clamdoc.tex clamav-mirror-howto.pdf clamav-mirror-howto.tex signatures.pdf signatures.tex clam.eps +EXTRA_DIST = html man/*.in clamdoc.pdf clamdoc.tex clamav-mirror-howto.pdf clamav-mirror-howto.tex signatures.pdf signatures.tex clam.eps phishsigs_howto.pdf phishsigs_howto.tex man_MANS = man/clamscan.1 man/freshclam.1 man/sigtool.1 man/clamd.8 man/clamd.conf.5 man/clamdscan.1 man/clamav-milter.8 man/freshclam.conf.5 man/clamconf.1 diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/Makefile.in /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/Makefile.in --- clamav-0.92~dfsg/docs/Makefile.in 2007-12-12 18:06:48.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/Makefile.in 2008-01-28 16:38:47.000000000 -0500 @@ -194,7 +194,7 @@ target_vendor = @target_vendor@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -EXTRA_DIST = html man/*.in clamdoc.pdf clamdoc.tex clamav-mirror-howto.pdf clamav-mirror-howto.tex signatures.pdf signatures.tex clam.eps +EXTRA_DIST = html man/*.in clamdoc.pdf clamdoc.tex clamav-mirror-howto.pdf clamav-mirror-howto.tex signatures.pdf signatures.tex clam.eps phishsigs_howto.pdf phishsigs_howto.tex man_MANS = man/clamscan.1 man/freshclam.1 man/sigtool.1 man/clamd.8 man/clamd.conf.5 man/clamdscan.1 man/clamav-milter.8 man/freshclam.conf.5 man/clamconf.1 all: all-am Binary files /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/phishsigs_howto.pdf and /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/phishsigs_howto.pdf differ diff -Nru /tmp/60cupQ0aKb/clamav-0.92~dfsg/docs/phishsigs_howto.tex /tmp/KNyo0Blvp6/clamav-0.92.1~dfsg2/docs/phishsigs_howto.tex --- clamav-0.92~dfsg/docs/phishsigs_howto.tex 1969-12-31 19:00:00.000000000 -0500 +++ clamav-0.92.1~dfsg2/docs/phishsigs_howto.tex 2008-01-31 16:30:59.000000000 -0500 @@ -0,0 +1,594 @@ +%% LyX 1.5.3 created this file. For more info, see http://www.lyx.org/. +%% Do not edit unless you really know what you are doing. +\documentclass[a4paper,english,10pt]{article} +\usepackage{amssymb} +\usepackage{pslatex} +\usepackage[T1]{fontenc} +\usepackage[dvips]{graphicx} +\usepackage{url} +\usepackage{fancyhdr} +\usepackage{varioref} +\usepackage{prettyref} +\date{} + +\begin{document} + +\title{{\huge Phishing signatures creation HOWTO}} +\author{T\"or\"ok Edwin} +\maketitle + +%TODO: define a LaTeX command, instead of using \textsc{RealURL} each time + +\section{Database file format} + +\subsection{PDB format} +This file contains urls/hosts that are target of phishing attempts. +It contains lines in the following format: +\begin{verbatim} +R[Filter]:RealURL:DisplayedURL[:FuncLevelSpec] +H[Filter]:DisplayedHostname[:FuncLevelSpec] +\end{verbatim} + +\begin{description} + \item [{R}] regular expression, for the concatenated URL + \item [{H}] matches the \verb+DisplayedHostname+ as a simple pattern (literally, no regular expression) + \begin{itemize} + \item the pattern can match either the full hostname + \item or a subdomain of the specified hostname + \item to avoid false matches in case of subdomain matches, the engine checks that there is a dot(\verb+.+) or a space(\verb+ +) before the matched portion + \end{itemize} + \item [{Filter}] an (optional) 3-digit hexadecimal number representing flags that should be filtered. + \begin{itemize} + \item flag filtering only makes sense in .pdb files. (however clamav won't complain if you put flags in .wdb files, it will just skip them) + \item for details on how to construct a flag number see section \prettyref{sec:Flags} + \end{itemize} + + \item [{\textsc{RealURL}}] is the URL the user is sent to, example: \emph{href} attribute of an html anchor (\emph{ tag}) + \item [{\textsc{DisplayedURL}}] is the URL description displayed to the user, where its \emph{claimed} they are sent, example: contents of an html anchor (\emph{ tag}) + \item [{DisplayedHostname}] is the hostname portion of the \textsc{DisplayedURL} + \item [{FuncLevelSpec}] an (optional) functionality level, 2 formats are possible: + \begin{itemize} + \item \verb+minlevel+ all engines having functionality level >= \verb+minlevel+ will load this line + \item \verb+minlevel-maxlevel+ engines with functionality level $>= $ \verb+minlevel+, and $< $ \verb+maxlevel+ will load this line + \end{itemize} +\end{description} + +\subsection{WDB format} +This file contains whitelisted url pairs +It contains lines in the following format: +\begin{verbatim} +X:RealURL:DisplayedURL[:FuncLevelSpec] +M:RealHostname:DisplayedHostname[:FuncLevelSpec] +\end{verbatim} + +\begin{description} + \item [{X}] regular expression, for the \emph{entire URL}, not just the hostname + \begin{itemize} + \item The regular expression is by default anchored to start-of-line and end-of-line, as if you have used \verb+^RegularExpression$+ + \item A trailing \verb+/+ is automatically added both to the regex, and the input string to avoid false matches + \item The regular expression matches the \emph{concatenation} of the \textsc{RealURL}, a colon(\verb+:+), and the \textsc{DisplayedURL} as a single string. It doesn't separately match \textsc{RealURL} and \textsc{DisplayedURL}! + \end{itemize} + \item [{M}] matches hostname, or subdomain of it, see notes for {H} above +\end{description} + +\subsection{Hints} + +\begin{itemize} + \item empty lines are ignored + \item the colons are mandatory + \item Don't leave extra spaces on the end of a line! + \item if any of the lines don't conform to this format, clamav will abort with a Malformed Database Error + \item see section \vref{sub:Extraction-of-realURL,} for more details on \textsc{realURL/displayedURL} +\end{itemize} + + +\subsection{Examples of PDB signatures} +To check for phishing mails that target amazon.com, or subdomains of amazon.com: +\begin{verbatim} +H:amazon.com +\end{verbatim} + +To do the same, but for amazon.co.uk: +\begin{verbatim} +H:amazon.co.uk +\end{verbatim} + +To limit the signatures to certain engine versions: +\begin{verbatim} +H:amazon.co.uk:20-30 +H:amazon.co.uk:20- +H:amazon.co.uk:0-20 +\end{verbatim} +First line: engine versions 20, 21, ..., 29 can load it + +Second line: engine versions >= 20 can load it + +Third line: engine versions < 20 can load it + +In a real situation, you'd probably use the second form. A situation like that would be if you are using a feature of the signatures +not available in earlier versions, or if earlier versions have bugs with your signature. Its neither case here, the above examples +are for illustrative purposes only. + +\subsection{Examples of WDB signatures} +To allow amazon's country specific domains and amazon.com, to mix domain names in \textsc{DisplayedURL}, and \textsc{RealURL}: +\begin{verbatim} +X:.+\.amazon\.(at|ca|co\.uk|co\.jp|de|fr)([/?].*)?:.+\.amazon\.com([/?].*)?:17- +\end{verbatim} +Explanation of this signature: +\begin{description} + \item [{X:}] this is a regular expression + \item [{:17-}] load signature only for engines with functionality level >= 17 (recommended for type X) +\end{description} + +The regular expression is the following (X:, :17- stripped, and a / appended) +\begin{verbatim} +.+\.amazon\.(at|ca|co\.uk|co\.jp|de|fr)([/?].*)?:.+\.amazon\.com([/?].*)?/ +\end{verbatim} + +Explanation of this regular expression (note that it is a single regular expression, and not 2 regular +expressions splitted at the {:}). +\begin{itemize} + \item \verb;.+; any subdomain of + \item \verb;\.amazon\.; domain we are whitelisting (\textsc{RealURL} part) + \item \verb;(at|ca|co\.uk|co\.jp|de|fr); country-domains: at, ca, co.uk, co.jp, de, fr + \item \verb;([/?].*)?; recomended way to end real url part of whitelist, this protects against embedded URLs (evilurl.example.com/amazon.co.uk/) + \item \verb;:; \textsc{RealURL} and \textsc{DisplayedURL} are concatenated via a {:}, so match a literal {:} here + \item \verb;.+; any subdomain of + \item \verb;\.amazon\.com; whitelisted DisplayedURL + \item \verb;([/?].*)?; recommended way to end displayed url part, to protect against embedded URLs + \item \verb;/; automatically added to further protect against embedded URLs +\end{itemize} + +When you whitelist an entry make sure you check that both domains are owned by the same entity. +What this whitelist entry allows is: +Links claiming to point to amazon.com (\textsc{DisplayedURL}), but really go to country-specific domain of amazon (\textsc{RealURL}). + +\subsection{Example for how the URL extractor works} +Consider the following HTML file: +\begin{verbatim} + + + 1.displayedurl.example.com + + + 2 di

splayedurl.example.com + + + 3.nested.example.com + + 4.displayedurl.example.com + + +

+ sometext + + + 5.form.nested.link-displayedurl.example.com + + + + 6.displ + + ayedurl.example.com + + +