diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-05-09 22:04:20 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-05-09 22:04:20 +0100 |
commit | 5dbca76a7579955f52b89a2fa81dd2d2c9246c3d (patch) | |
tree | 08fd6ee957524370e09ace322eceba0abc1bddf4 /doc | |
parent | 951f9649019ffece6c3b200e51089f41f93e65f2 (diff) | |
download | rspamd-5dbca76a7579955f52b89a2fa81dd2d2c9246c3d.tar.gz rspamd-5dbca76a7579955f52b89a2fa81dd2d2c9246c3d.zip |
Add some documentation.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/markdown/configuration/composites.md | 11 | ||||
-rw-r--r-- | doc/markdown/modules/maillist.md | 15 |
2 files changed, 26 insertions, 0 deletions
diff --git a/doc/markdown/configuration/composites.md b/doc/markdown/configuration/composites.md index 3aa63c072..09815df25 100644 --- a/doc/markdown/configuration/composites.md +++ b/doc/markdown/configuration/composites.md @@ -61,3 +61,14 @@ For example, you have symbol `A` and `B` with weights `W_a` and `W_b` and a comp * If `C` is `-A & B`, then rule `A` is preserved, but the symbol `C` is inserted. The weight of `A` is preserved as well, so the total weight of `-A & B` will be `W_a + W_c`. * If `C` is `~A & B`, then rule `A` is *removed* but its weight is *preserved*, leading to a single symbol `C` with weight `W_a + W_c` +## Composites with symbol groups + +It is also possible to include the whole group of symbols to a composite rule. This +efficiently means **any** symbol of the specified group: + +~~~nginx +composite { + name = "TEST2"; + expression = "SYMBOL2 && !g:mua"; +} +~~~
\ No newline at end of file diff --git a/doc/markdown/modules/maillist.md b/doc/markdown/modules/maillist.md index e69de29bb..7563eae24 100644 --- a/doc/markdown/modules/maillist.md +++ b/doc/markdown/modules/maillist.md @@ -0,0 +1,15 @@ +# Mail list module + +Mailing list module is a simple module that performs checks whether a message is +sent over some popular mailing lists software. This module is designed to negate +some rules as they are likely to be touched unnecessarily if a message comes from +some list. + +Here is a list of currently supported mailing lists programs: + +- Ezmlm +- Mailman +- Google groups +- Majordomo +- Communigate PRO mailing lists +- subscribe.ru mailing list
\ No newline at end of file |