Browse Source

Add DIRECT_TO_MX rule to once_received plugin

tags/1.5.4
Steve Freegard 7 years ago
parent
commit
5909eaece4
2 changed files with 15 additions and 0 deletions
  1. 1
    0
      conf/modules.d/once_received.conf
  2. 14
    0
      src/plugins/lua/once_received.lua

+ 1
- 0
conf/modules.d/once_received.conf View File

@@ -19,6 +19,7 @@ once_received {
bad_host = "dynamic";
symbol_strict = "ONCE_RECEIVED_STRICT";
symbol = "ONCE_RECEIVED";
symbol_mx = "DIRECT_TO_MX";

.include(try=true,priority=5) "${DBDIR}/dynamic/once_received.conf"
.include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/once_received.conf"

+ 14
- 0
src/plugins/lua/once_received.lua View File

@@ -18,6 +18,7 @@ limitations under the License.

local symbol = 'ONCE_RECEIVED'
local symbol_rdns = 'RDNS_NONE'
local symbol_mx = 'DIRECT_TO_MX'
-- Symbol for strict checks
local symbol_strict = nil
local bad_hosts = {}
@@ -40,6 +41,12 @@ local function check_quantity_received (task)
if recvh and #recvh <= 1 then
task:insert_result(symbol, 1)
task:insert_result(symbol_strict, 1)
-- Check for MUAs
local ua = task:get_header('User-Agent')
local xm = task:get_header('X-Mailer')
if (ua or xm) then
task:insert_result(symbol_mx, 1, (ua or xm))
end
end
task:insert_result(symbol_rdns, 1)
else
@@ -169,6 +176,8 @@ if opts then
elseif n == 'whitelist' then
whitelist = rspamd_map_add('once_received', 'whitelist', 'radix',
'once received whitelist')
elseif n == 'symbol_mx' then
symbol_mx = v
end
end

@@ -182,5 +191,10 @@ if opts then
type = 'virtual',
parent = id
})
rspamd_config:register_symbol({
name = symbol_mx,
type = 'virtual',
parent = id
})
end
end

Loading…
Cancel
Save