Browse Source

[Minor] Don't disrespect .online GTLD in hfilter (Fixes #1338)

tags/1.5.0
Andrew Lewis 7 years ago
parent
commit
f72e0eab1a
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/plugins/lua/hfilter.lua

+ 1
- 1
src/plugins/lua/hfilter.lua View File

@@ -63,7 +63,7 @@ local checks_hellohost = {
local checks_hello = {
['^[^\\.]+$'] = 5, -- for helo=COMPUTER, ANNA, etc... Without dot in helo
['^(dsl)?(device|speedtouch)\\.lan$'] = 5,
['\\.(lan|local|home|localdomain|intra|in-addr.arpa|priv|online|user|veloxzon)$'] = 5
['\\.(lan|local|home|localdomain|intra|in-addr.arpa|priv|user|veloxzon)$'] = 5
}

local checks_hello_badip = {

Loading…
Cancel
Save