[Rspamd] Always include watchdog in no_stat and no_log flag symbol

master
andryyy 2021-09-07 17:56:20 +02:00
parent 7641dbf3a5
commit 80fc18c5b4
No known key found for this signature in database
GPG Key ID: 8EC34FF2794E25EF
1 changed files with 1 additions and 1 deletions

View File

@ -493,7 +493,7 @@ rspamd_config:register_symbol({
type = 'postfilter',
callback = function(task)
local from = task:get_header('From')
if from and monitoring_hosts:get_key(from) then
if from and (monitoring_hosts:get_key(from) or from == "watchdog@localhost") then
task:set_flag('no_log')
task:set_flag('no_stat')
end