diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-12-24 18:24:54 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-12-24 18:24:54 +0000 |
commit | 08caf16449ad25e1aa6d659908713c4dcfae2dec (patch) | |
tree | 33d3c1b8a4f79143fb1ed7237986137cce69f1de /conf/lua/rspamd.lua | |
parent | 9d5020a5603ab28fafaea02c2d3320ad169561b7 (diff) | |
download | rspamd-08caf16449ad25e1aa6d659908713c4dcfae2dec.tar.gz rspamd-08caf16449ad25e1aa6d659908713c4dcfae2dec.zip |
Add hfilter - an advanced set of helo and hostname checks.
Submitted by: AL
Diffstat (limited to 'conf/lua/rspamd.lua')
-rw-r--r-- | conf/lua/rspamd.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/conf/lua/rspamd.lua b/conf/lua/rspamd.lua index 16b99cb01..f51715934 100644 --- a/conf/lua/rspamd.lua +++ b/conf/lua/rspamd.lua @@ -97,6 +97,10 @@ local function file_exists(filename) end end +if file_exists('hfilter.lua') then + dofile('hfilter.lua') +end + if file_exists('rspamd.local.lua') then dofile('rspamd.local.lua') end |