From: Vsevolod Stakhov Date: Wed, 8 Jun 2016 14:31:12 +0000 (+0100) Subject: [Fix] Fix symbol name for spf soft fail X-Git-Tag: 1.3.0~397 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7b094aea65622299db13268222c0bfec4104882e;p=rspamd.git [Fix] Fix symbol name for spf soft fail --- diff --git a/rules/http_headers.lua b/rules/http_headers.lua index f8d7f2be6..0252ccce9 100644 --- a/rules/http_headers.lua +++ b/rules/http_headers.lua @@ -69,7 +69,7 @@ rspamd_config:add_condition("R_SPF_ALLOW", function(task) elseif obj['result'] == 'neutral' then task:insert_result('R_SPF_NEUTRAL', 1.0, 'http header') elseif obj['result'] == 'tempfail' or obj['result'] == 'softfail' then - task:insert_result('R_SPF_TEMPFAIL', 1.0, 'http header') + task:insert_result('R_SPF_SOFTFAIL', 1.0, 'http header') end return false