]> git.ipfire.org Git - thirdparty/rspamd.git/commitdiff
Add 'content_urls' check to multiple RBL configurations
authorDmitriy Alekseev <1865999+dragoangel@users.noreply.github.com>
Thu, 6 Nov 2025 16:15:11 +0000 (17:15 +0100)
committerGitHub <noreply@github.com>
Thu, 6 Nov 2025 16:15:11 +0000 (17:15 +0100)
conf/modules.d/rbl.conf

index cf8e189e1e6dbf18a6f220b0e8fd45bd116fe404..2933f7fc1dcf2062cc4253cc8ba6229d372620d8 100644 (file)
@@ -251,7 +251,7 @@ rbl {
 
     SURBL_MULTI {
       rbl = "multi.surbl.org";
-      checks = ["emails", "dkim", "helo", "rdns", "replyto", "urls"];
+      checks = ["emails", "dkim", "helo", "rdns", "replyto", "urls", "content_urls"];
       ignore_defaults = true;
       exclude_users = false;
       url_full_hostname = true; # According to SURBL rules
@@ -292,7 +292,7 @@ rbl {
 
     URIBL_MULTI {
       rbl = "multi.uribl.com";
-      checks = ["emails", "dkim", "helo", "rdns", "replyto", "urls"];
+      checks = ["emails", "dkim", "helo", "rdns", "replyto", "urls", "content_urls"];
       ignore_defaults = true;
       exclude_users = false;
       emails_domainonly = true;
@@ -311,7 +311,7 @@ rbl {
 
     RSPAMD_URIBL {
       rbl = "uribl.rspamd.com";
-      checks = ["emails", "dkim", "urls"];
+      checks = ["emails", "dkim", "urls", "content_urls"];
       hash = "blake2";
       hash_len = 32;
       hash_format = "base32";
@@ -332,7 +332,7 @@ rbl {
 
     DBL {
       rbl = "dbl.spamhaus.org";
-      checks = ["emails", "dkim", "helo", "rdns", "replyto", "urls"];
+      checks = ["emails", "dkim", "helo", "rdns", "replyto", "urls", "content_urls"];
       no_ip = true;
       ignore_defaults = true;
       exclude_users = false;
@@ -386,7 +386,7 @@ rbl {
 
     SEM_URIBL_UNKNOWN {
       rbl = "uribl.spameatingmonkey.net";
-      checks = ["emails", "dkim", "urls"];
+      checks = ["emails", "dkim", "urls", "content_urls"];
       no_ip = true;
       ignore_defaults = true;
       emails_domainonly = true;
@@ -402,9 +402,10 @@ rbl {
 
     SEM_URIBL_FRESH15_UNKNOWN {
       rbl = "fresh15.spameatingmonkey.net";
-      checks = ["emails", "dkim", "urls"];
+      checks = ["emails", "dkim", "urls", "content_urls"];
       no_ip = true;
       ignore_defaults = true;
+      exclude_users = true;
       emails_domainonly = true;
       selector = {
         from_smtp = "from('smtp'):domain";