Browse Source

fix util name

tags/2.7
Lionel 3 years ago
parent
commit
2cb15c8db9
No account linked to committer's email address
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      rules/mid.lua

+ 3
- 3
rules/mid.lua View File

See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
]]-- ]]--
local util = require "rspamd_util"
local rspamd_util = require "rspamd_util"
local function mid_check_func(task) local function mid_check_func(task)
local mid = task:get_header('Message-ID') local mid = task:get_header('Message-ID')
if not mid then return false end if not mid then return false end
local fdtld = nil local fdtld = nil
local mdtld = nil local mdtld = nil
if md then if md then
fdtld = util.get_tld(fd)
mdtld = util.get_tld(md)
fdtld = rspamd_util.get_tld(fd)
mdtld = rspamd_util.get_tld(md)
end end
if (mid:lower():find(from[1].addr:lower(),1,true)) then if (mid:lower():find(from[1].addr:lower(),1,true)) then
task:insert_result('MID_CONTAINS_FROM', 1.0) task:insert_result('MID_CONTAINS_FROM', 1.0)

Loading…
Cancel
Save