diff options
author | Andrew Lewis <nerf@judo.za.org> | 2023-10-26 08:40:00 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2023-10-26 08:40:00 +0200 |
commit | 15e3f277fad7c692b641423b38d6b508b764a3f8 (patch) | |
tree | 291058752740266e5ee6077a9ff476a396402b10 /test | |
parent | 5ef8dfff5dcff5e8922e5a2c8e41d7e381dbcd37 (diff) | |
download | rspamd-15e3f277fad7c692b641423b38d6b508b764a3f8.tar.gz rspamd-15e3f277fad7c692b641423b38d6b508b764a3f8.zip |
[Minor] Reiterate on the previous changes
- Demote message to info level
- Name it returncodes_matcher for better specificity
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/configs/merged-override.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/configs/merged-override.conf b/test/functional/configs/merged-override.conf index 752711369..c94d8df00 100644 --- a/test/functional/configs/merged-override.conf +++ b/test/functional/configs/merged-override.conf @@ -269,7 +269,7 @@ rbl { from = 'FAKE_RBL', } unknown = true; - matcher = "regexp"; + returncodes_matcher = "regexp"; returncodes = { "CODE_2" = '^127\.0\.0\.2$'; "CODE_3" = '^127\.0\.0\.3$'; @@ -284,7 +284,7 @@ rbl { rbl = "fake.wl"; symbol = "FAKE_WL_RBL_UNKNOWN"; unknown = true; - #matcher = "luapattern"; + #returncodes_matcher = "luapattern"; returncodes = { "FAKE_WL_RBL_CODE_2" = "127%.0%.0%.2"; "FAKE_WL_RBL_CODE_3" = "127%.0%.0%.3"; @@ -296,7 +296,7 @@ rbl { ignore_defaults = true; emails = true; emails_domainonly = true - matcher = "radix"; + returncodes_matcher = "radix"; returncodes = { RSPAMD_EMAILBL = "127.0.0.2/32"; } @@ -314,7 +314,7 @@ rbl { checks = ["numeric_urls"]; content_urls = true; rbl = "test9.uribl"; - matcher = "glob"; + returncodes_matcher = "glob"; returncodes = { URIBL_NUMERIC_CONTENT = "*.*.*.*"; } |