diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-11-10 16:46:55 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-10 16:46:55 +0400 |
commit | ef5838cf7757e2a70418d6fa4ee48b7f48f2c599 (patch) | |
tree | 7461206bf1b4ba25f0bf6257d888e8f07e9befe0 | |
parent | 29a42adac9a52e7cd513c15d5f75c049413f08f7 (diff) | |
parent | 2538eb7bc585c0439196596d0e144c80c2473458 (diff) | |
download | rspamd-ef5838cf7757e2a70418d6fa4ee48b7f48f2c599.tar.gz rspamd-ef5838cf7757e2a70418d6fa4ee48b7f48f2c599.zip |
Merge pull request #1118 from fatalbanana/lua
[Minor] Add missing require
-rw-r--r-- | rules/regexp/compromised_hosts.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rules/regexp/compromised_hosts.lua b/rules/regexp/compromised_hosts.lua index 6159fbccc..69e77742f 100644 --- a/rules/regexp/compromised_hosts.lua +++ b/rules/regexp/compromised_hosts.lua @@ -1,5 +1,6 @@ local reconf = config['regexp'] local rspamd_regexp = require 'rspamd_regexp' +local util = require 'rspamd_util' reconf['HAS_PHPMAILER_SIG'] = { re = "X-Mailer=/^PHPMailer/Hi || Content-Type=/boundary=\"b[123]_/Hi", |