diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-10-09 01:18:26 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-10-09 01:18:26 +0100 |
commit | 6331298e31d6dd680223608b675a7a6dcad576e9 (patch) | |
tree | 70b46898edeeef19652df4b1af53a3d0409ab1d9 /doc | |
parent | 9cd981c8a6492779c2f7f70368afdd33432d53db (diff) | |
download | rspamd-6331298e31d6dd680223608b675a7a6dcad576e9.tar.gz rspamd-6331298e31d6dd680223608b675a7a6dcad576e9.zip |
Use math environment for formula.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/markdown/configuration/metrics.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/markdown/configuration/metrics.md b/doc/markdown/configuration/metrics.md index 501f5a848..8cfc5a50f 100644 --- a/doc/markdown/configuration/metrics.md +++ b/doc/markdown/configuration/metrics.md @@ -58,8 +58,12 @@ It is also possible to define some generic attributes for the metric: * `grow_factor` - the multiplicator applied for the subsequent symbols inserting by the follwing rule: - score = score + grow_factor * symbol_weight - grow_factor = grow_factor * grow_factor +$$ +\begin{align*} + score = score + grow\_factor * symbol\_weight + grow\_factor = grow\_factor * grow\_factor +\end{align*} +$$ by default this value is `1.0` meaning that no weight growing is defined. By increasing this value you increase the efficient score of messages with multiple `spam` rules matched. This value |