aboutsummaryrefslogtreecommitdiffstats
path: root/test/functional/configs
diff options
context:
space:
mode:
authorAndrew Lewis <nerf@judo.za.org>2023-09-19 15:45:10 +0200
committerAndrew Lewis <nerf@judo.za.org>2023-09-19 15:45:10 +0200
commit38cf55d84f0080c8c91fc1758081c216defc8beb (patch)
treecf8e8f5517e0a0958d2c606e15eb30c066d69087 /test/functional/configs
parente879458ea89ce76226c12078d05632f67bc657fe (diff)
downloadrspamd-38cf55d84f0080c8c91fc1758081c216defc8beb.tar.gz
rspamd-38cf55d84f0080c8c91fc1758081c216defc8beb.zip
[Minor] Revisit numeric_urls
Diffstat (limited to 'test/functional/configs')
-rw-r--r--test/functional/configs/merged-local.conf15
-rw-r--r--test/functional/configs/merged-override.conf16
2 files changed, 31 insertions, 0 deletions
diff --git a/test/functional/configs/merged-local.conf b/test/functional/configs/merged-local.conf
index 82d609730..0708e3c0b 100644
--- a/test/functional/configs/merged-local.conf
+++ b/test/functional/configs/merged-local.conf
@@ -881,6 +881,21 @@ options = {
replies = ["127.0.0.2"];
},
{
+ name = "judo.za.org.test9.uribl";
+ type = a;
+ replies = ["127.0.0.2"];
+ },
+ {
+ name = "12.11.10.9.test9.uribl";
+ type = a;
+ replies = ["127.0.0.2"];
+ },
+ {
+ name = "8.7.6.5.test9.uribl";
+ type = a;
+ replies = ["127.0.0.2"];
+ },
+ {
name = "8.8.8.8.test9.uribl";
type = a;
replies = ["127.0.0.2"];
diff --git a/test/functional/configs/merged-override.conf b/test/functional/configs/merged-override.conf
index 04b879db6..28d554b83 100644
--- a/test/functional/configs/merged-override.conf
+++ b/test/functional/configs/merged-override.conf
@@ -302,6 +302,22 @@ rbl {
checks = ["numeric_urls"];
rbl = "test9.uribl";
}
+ URIBL_NUMERIC_IMAGES {
+ checks = ["numeric_urls"];
+ images = true;
+ rbl = "test9.uribl";
+ }
+ URIBL_NUMERIC_CONTENT {
+ checks = ["numeric_urls"];
+ content_urls = true;
+ rbl = "test9.uribl";
+ }
+ URIBL_NUMERIC_EVERYTHING {
+ checks = ["numeric_urls"];
+ images = true;
+ content_urls = true;
+ rbl = "test9.uribl";
+ }
URIBL_NOCONTENT {
rbl = "test9.uribl";
ignore_defaults = true;