Browse code

make ARJ experimental

git-svn: trunk@3285

Tomasz Kojm authored on 2007/10/09 06:34:17
Showing 4 changed files
... ...
@@ -1,3 +1,7 @@
1
+Mon Oct  8 22:32:33 CEST 2007 (tk)
2
+----------------------------------
3
+  * libclamav/dconf.c: make ARJ experimental
4
+
1 5
 Mon Oct  8 20:36:58 CEST 2007 (tk)
2 6
 ----------------------------------
3 7
   * libclamav/others.c: bump f-level
... ...
@@ -1,12 +1,12 @@
1 1
 0.92rc1
2 2
 -------
3 3
 
4
-This release provides various bugfixes, optimisations and improvements to the
5
-scanning engine. The new features include support for ARJ and SFX-ARJ archives,
6
-basic SPF parser in clamav-milter (to reduce phishing false-positives),
7
-faster scanning and others (see ChangeLog). To get a consistent behaviour of
8
-the anti-phishing module on all platforms, libclamav now includes the regex
9
-library from OpenBSD.
4
+This release provides various bugfixes, optimisations and improvements
5
+to the scanning engine. The new features include support for ARJ and
6
+SFX-ARJ archives (experimental), basic SPF parser in clamav-milter (to
7
+reduce phishing false-positives), faster scanning and others (see ChangeLog).
8
+To get a consistent behaviour of the anti-phishing module on all platforms,
9
+libclamav now includes the regex library from OpenBSD.
10 10
 
11 11
 --
12 12
 The ClamAV team (http://www.clamav.net/team)
... ...
@@ -5,12 +5,12 @@ here may not be available in binary packages.
5 5
 0.92rc1
6 6
 -------
7 7
 
8
-This release provides various bugfixes, optimisations and improvements to the
9
-scanning engine. The new features include support for ARJ and SFX-ARJ archives,
10
-basic SPF parser in clamav-milter (to reduce phishing false-positives),
11
-faster scanning and others (see ChangeLog). To get a consistent behaviour of
12
-the anti-phishing module on all platforms, libclamav now includes the regex
13
-library from OpenBSD.
8
+This release provides various bugfixes, optimisations and improvements
9
+to the scanning engine. The new features include support for ARJ and
10
+SFX-ARJ archives (experimental), basic SPF parser in clamav-milter (to
11
+reduce phishing false-positives), faster scanning and others (see ChangeLog).
12
+To get a consistent behaviour of the anti-phishing module on all platforms,
13
+libclamav now includes the regex library from OpenBSD.
14 14
 
15 15
 --
16 16
 The ClamAV team (http://www.clamav.net/team)
... ...
@@ -71,7 +71,7 @@ static struct dconf_module modules[] = {
71 71
     { "ARCHIVE",    "ZIP",	    ARCH_CONF_ZIP,	    1 },
72 72
     { "ARCHIVE",    "GZIP",	    ARCH_CONF_GZ,	    1 },
73 73
     { "ARCHIVE",    "BZIP",	    ARCH_CONF_BZ,	    1 },
74
-    { "ARCHIVE",    "ARJ",          ARCH_CONF_ARJ,          1 },
74
+    { "ARCHIVE",    "ARJ",          ARCH_CONF_ARJ,          DCONF_ENABLE_EXPERIMENTAL }, /* exp */
75 75
     { "ARCHIVE",    "SZDD",	    ARCH_CONF_SZDD,	    1 },
76 76
     { "ARCHIVE",    "CAB",	    ARCH_CONF_CAB,	    1 },
77 77
     { "ARCHIVE",    "CHM",	    ARCH_CONF_CHM,	    1 },