diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-12-27 10:33:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-27 10:33:08 +0000 |
commit | 9686fcf0234256d0b16856899ac3f75b3572dde1 (patch) | |
tree | ae6b2d98e7d3c03a7d83b97b36b2b9c5f1a255db | |
parent | b408b1900df2c3bf131c52614c9a1fd09bbfd23c (diff) | |
parent | 5adc48b7473dd0c94a1ac74c0230b55017842657 (diff) | |
download | rspamd-9686fcf0234256d0b16856899ac3f75b3572dde1.tar.gz rspamd-9686fcf0234256d0b16856899ac3f75b3572dde1.zip |
Merge pull request #4759 from moisseev/hfilter
[Minor] Fix typo in hfilter map
-rw-r--r-- | src/plugins/lua/hfilter.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/lua/hfilter.lua b/src/plugins/lua/hfilter.lua index 601786f33..8c132f504 100644 --- a/src/plugins/lua/hfilter.lua +++ b/src/plugins/lua/hfilter.lua @@ -137,7 +137,7 @@ local checks_hellohost_map local checks_hello = [[ /^[^\.]+$/i 5 # for helo=COMPUTER, ANNA, etc... Without dot in helo /^(dsl)?(device|speedtouch)\.lan$/i 5 -/\.(lan|local|home|localdomain|intra|in-addr.arpa|priv|user|veloxzon)$ 5 +/\.(lan|local|home|localdomain|intra|in-addr.arpa|priv|user|veloxzon)$/i 5 ]] local checks_hello_map @@ -619,4 +619,4 @@ if #symbols_enabled > 0 then end else lua_util.disable_module(N, "config") -end
\ No newline at end of file +end |