Browse code

rename options

git-svn: trunk@2380

Tomasz Kojm authored on 2006/10/15 09:00:32
Showing 5 changed files
... ...
@@ -1,3 +1,8 @@
1
+Sun Oct 15 01:56:34 CEST 2006 (tk)
2
+----------------------------------
3
+  * clamd: s/PhishingScanAllDomains/PhishingStrictURLCheck
4
+  * clamscan: s/--phish-scan-alldomains/--phishing-strict-url-check
5
+
1 6
 Sun Oct 15 01:49:55 CEST 2006 (tk)
2 7
 ----------------------------------
3 8
   * libclamav: anti-phish code cleanup (Edwin)
... ...
@@ -254,7 +254,7 @@ void help(void)
254 254
     mprintf("    --no-phishing                        Disable phishing detection\n");
255 255
 #ifdef CL_EXPERIMENTAL
256 256
     mprintf("    --no-phishing-scan-urls              Disable url-based phishing detection\n");
257
-    mprintf("    --phish-scan-alldomains              Enable phishing detection for all domains (might lead to false positives!)\n");
257
+    mprintf("    --phishing-strict-url-check          Enable phishing detection for all domains (might lead to false positives!)\n");
258 258
 #endif
259 259
     mprintf("    --no-algorithmic                     Disable algorithmic detection\n");
260 260
     mprintf("    --no-pe                              Disable PE analysis\n");
... ...
@@ -78,7 +78,7 @@ static struct option clamscan_longopt[] = {
78 78
     {"no-phishing", 0, 0, 0},
79 79
 #ifdef CL_EXPERIMENTAL
80 80
     {"no-phishing-scan-urls",0,0,0},
81
-    {"phish-scan-alldomains",0,0,0},
81
+    {"phishing-strict-url-check",0,0,0},
82 82
 #endif
83 83
     {"no-algorithmic", 0, 0, 0},
84 84
     {"unzip", 2, 0, 0},
... ...
@@ -212,11 +212,11 @@ LocalSocket /tmp/clamd
212 212
 # Default: yes
213 213
 #DetectPhishing yes
214 214
 
215
-# Use phishing detection for all domains (not just those listed in database).
215
+# Use phishing detection for all domains (not just those listed in the .pdb database).
216 216
 # It is not recommended to turn this option on, it is mean for internal use.
217 217
 # (available in experimental builds only)
218 218
 # Default: no
219
-#PhishingScanAllDomains no
219
+#PhishingStrictURLCheck no
220 220
 
221 221
 # Scan urls found in mails for phishing attempts.
222 222
 # (available in experimental builds only) 
... ...
@@ -50,7 +50,7 @@ struct cfgoption cfg_options[] = {
50 50
     {"DetectPhishing", OPT_BOOL, 1, NULL, 0, OPT_CLAMD},
51 51
 #ifdef CL_EXPERIMENTAL
52 52
     {"PhishingScanURLs",OPT_BOOL, 1, NULL, 0, OPT_CLAMD},
53
-    {"PhishingScanAllDomains", OPT_BOOL, 0, NULL, 0, OPT_CLAMD},
53
+    {"PhishingStrictURLCheck", OPT_BOOL, 0, NULL, 0, OPT_CLAMD},
54 54
 #endif
55 55
     {"AlgorithmicDetection", OPT_BOOL, 1, NULL, 0, OPT_CLAMD},
56 56
     {"ScanHTML", OPT_BOOL, 1, NULL, 0, OPT_CLAMD},