]> source.dussan.org Git - rspamd.git/commitdiff
[Doc] Add chartable documentation
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 17 Mar 2016 16:36:05 +0000 (16:36 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 17 Mar 2016 16:36:05 +0000 (16:36 +0000)
doc/markdown/modules/chartable.md

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..f5aa553229ef43a6c596ea01345fa1d4a3089c28 100644 (file)
@@ -0,0 +1,10 @@
+# Chartable module
+
+This module allows to find number of characters from the different [unicode scripts](http://www.unicode.org/reports/tr24/). Finally, it evaluates number of scrips changes, e.g. 'a網絡a' is treated as 2 script changes - from latin to chineese and from chineese back to latin, divided by total number of unicode characters. If the product of this division is higher than threshold then a symbol is inserted. By default threshold is `0.1` meaning that script changes occurrs approximantely for 10% of characters.
+
+~~~nginx
+chartable {
+  symbol = "R_CHARSET_MIXED";
+  threshold = 0.1;
+}
+~~~
\ No newline at end of file