diff options
author | Andrew Lewis <nerf@judo.za.org> | 2015-02-06 15:39:45 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2015-02-06 15:39:45 +0200 |
commit | 8663bd63f49c04d122a06fbcbf5addbd5bdf155e (patch) | |
tree | 686d1eecc9ba562702680bb9ae94d81a45cba993 /doc | |
parent | 1e08514471896e3b3069cdc25f457036d257cc68 (diff) | |
download | rspamd-8663bd63f49c04d122a06fbcbf5addbd5bdf155e.tar.gz rspamd-8663bd63f49c04d122a06fbcbf5addbd5bdf155e.zip |
Allow applying settings to authenticated users
Diffstat (limited to 'doc')
-rw-r--r-- | doc/markdown/configuration/settings.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/markdown/configuration/settings.md b/doc/markdown/configuration/settings.md index 4162e6843..a7b85a11c 100644 --- a/doc/markdown/configuration/settings.md +++ b/doc/markdown/configuration/settings.md @@ -49,6 +49,7 @@ settings { rcpt = "admin"; rcpt = "/user.*/"; ip = "172.16.0.0/16"; + user = "@example.net"; apply "default" { symbol1 = 10.0; symbol2 = 0.0; @@ -74,6 +75,7 @@ So each setting has the following attributes: + `from` - match SMTP from + `rcpt` - match RCPT + `ip` - match source IP address + + `user` - matches authenticated user ID of message sender if any - `apply` - list of applied rules, identified by metric name (e.g. `default`) + `symbol` - modify weight of a symbol + `actions` - section of modified actions |