summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorAndrew Lewis <nerf@judo.za.org>2015-07-15 13:17:56 +0200
committerAndrew Lewis <nerf@judo.za.org>2015-07-15 13:17:56 +0200
commitd287dea792933b74e0ddc2cc69874833d49da455 (patch)
treec9c0a950c778a2fb13af620328c6c51ca7cde478 /doc
parentc9ed268e926a7d88aa3a7713909ece88e3137d38 (diff)
downloadrspamd-d287dea792933b74e0ddc2cc69874833d49da455.tar.gz
rspamd-d287dea792933b74e0ddc2cc69874833d49da455.zip
Doc fix: phishing strict_domains syntax (reported by @Fullmetal8ender)
Diffstat (limited to 'doc')
-rw-r--r--doc/markdown/modules/phishing.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/markdown/modules/phishing.md b/doc/markdown/modules/phishing.md
index 3466ae336..bca4211af 100644
--- a/doc/markdown/modules/phishing.md
+++ b/doc/markdown/modules/phishing.md
@@ -37,12 +37,12 @@ phishing {
# For certain domains from the specified strict maps
# use another symbol for phishing plugin
strict_domains = [
- "PAYPAL_PHISHING:${CONFDIR}/paypal.map",
- "REDIRECTOR_FALSE:${CONFDIR}/redirectors.map"
+ "${CONFDIR}/paypal.map:PAYPAL_PHISHING",
+ "${CONFDIR}/redirectors.map:REDIRECTOR_FALSE"
];
}
~~~
If `domains` is unspecified then rspamd checks all domains for phishing. `strict_domains`
allows fine-grained control to avoid false positives and enforce some really bad phishing
-mails, such as bank phishing or other payments system phishing. \ No newline at end of file
+mails, such as bank phishing or other payments system phishing.