]> source.dussan.org Git - rspamd.git/commitdiff
Add some documentation.
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Sat, 9 May 2015 21:04:20 +0000 (22:04 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Sat, 9 May 2015 21:04:20 +0000 (22:04 +0100)
doc/markdown/configuration/composites.md
doc/markdown/modules/maillist.md

index 3aa63c072ca85f0b08f63ac81129f763187cc24f..09815df25349c29cf779d2f08df1025ba585fec1 100644 (file)
@@ -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
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..7563eae243571190c26486e50c3f17b7e4901708 100644 (file)
@@ -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