Просмотр исходного кода

[Rules] Fix the case when there are no received headers

tags/1.9.0
Vsevolod Stakhov 5 лет назад
Родитель
Сommit
6296a24a75
1 измененных файлов: 1 добавлений и 1 удалений
  1. 1
    1
      rules/misc.lua

+ 1
- 1
rules/misc.lua Просмотреть файл

@@ -198,7 +198,7 @@ local check_rcvd = rspamd_config:register_symbol{
group = 'headers',
callback = function (task)
local rcvds = task:get_received_headers()
if not rcvds then return false end
if not rcvds or #rcvds == 0 then return false end

local all_tls = fun.all(function(rc)
return rc.flags and rc.flags['ssl']

Загрузка…
Отмена
Сохранить