diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-06-08 15:31:12 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-06-08 15:31:12 +0100 |
commit | 7b094aea65622299db13268222c0bfec4104882e (patch) | |
tree | 03a8ce8faa250c312bd9e1936c5b74d3cea2a277 /rules | |
parent | 2c2f97b658798c0ccecf394a981725e945025fc9 (diff) | |
download | rspamd-7b094aea65622299db13268222c0bfec4104882e.tar.gz rspamd-7b094aea65622299db13268222c0bfec4104882e.zip |
[Fix] Fix symbol name for spf soft fail
Diffstat (limited to 'rules')
-rw-r--r-- | rules/http_headers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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 |