]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Zero scoring on some informational symbols 861/head
authorAndrew Lewis <nerf@judo.za.org>
Fri, 19 Aug 2016 10:10:11 +0000 (12:10 +0200)
committerAndrew Lewis <nerf@judo.za.org>
Fri, 19 Aug 2016 10:10:11 +0000 (12:10 +0200)
rules/forwarding.lua
rules/misc.lua
rules/regexp/upstream_spam_filters.lua

index 68d0c10952378a94fd77f1193df963df81a6d28d..65c5e3100f30e02230ee925e26f1d41957f61a77 100644 (file)
@@ -40,7 +40,7 @@ rspamd_config.FWD_GOOGLE = {
         end
         return false
     end,
-    score = 0.1,
+    score = 0.0,
     description = "Message was forwarded by Google",
     group = "forwarding"
 }
@@ -64,7 +64,7 @@ rspamd_config.FWD_SRS = {
         end
         return false
     end,
-    score = 0.1,
+    score = 0.0,
     description = "Message was forwarded using SRS",
     group = "forwarding"
 }
@@ -105,7 +105,7 @@ rspamd_config.FORWARDED = {
         end
         return false
     end,
-    score = 0.1,
+    score = 0.0,
     description = "Message was forwarded",
     group = "forwarding"
 }
index cb57054041854dc8cfe982fef68085278816aaba..c0dc201abaae6955c87d7b3745833340b92a6ab5 100644 (file)
@@ -306,7 +306,7 @@ rspamd_config.ENVFROM_PRVS = {
         end
         return false
     end,
-    score = 0.01,
+    score = 0.0,
     description = "Envelope From is a PRVS address that matches the From address",
     group = 'prvs'
 }
@@ -334,7 +334,7 @@ rspamd_config.ENVFROM_VERP = {
         end
         return false
     end,
-    score = 0.01,
+    score = 0.0,
     description = "Envelope From is a VERP address",
     group = "mailing_list"
 }
@@ -358,7 +358,7 @@ rspamd_config.RCVD_TLS_ALL = {
             return true
         end
     end,
-    score = 0.01,
+    score = 0.0,
     description = "All hops used encrypted transports",
     group = "encryption"
 }
index 1e9829af394f8259ddd852ff0b920d3b822f71eb..f778ae3a84269b380597dfce7a2ff96251874371 100644 (file)
@@ -20,7 +20,7 @@ local reconf = config['regexp']
 
 reconf['PRECEDENCE_BULK'] = {
     re = 'Precedence=/bulk/Hi',
-    score = 0.1,
+    score = 0.0,
     description = "Message marked as bulk",
     group = 'upstream_spam_filters'
 }