--[[ Copyright (c) 2016, Vsevolod Stakhov Copyright (c) 2016, Andrew Lewis Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ]]-- if confighelp then return end local rspamd_logger = require 'rspamd_logger' local hash = require 'rspamd_cryptobox_hash' local lua_util = require 'lua_util' local lua_redis = require 'lua_redis' -- A plugin that implements replies check using redis -- Default port for redis upstreams local redis_params local settings = { action = nil, expire = 86400, -- 1 day by default key_prefix = 'rr', message = 'Message is reply to one we originated', symbol = 'REPLY', score = -4, -- Default score use_auth = true, use_local = true, cookie = nil, cookie_key = nil, cookie_is_pattern = false, cookie_valid_time = '2w', -- 2 weeks by default } local N = "replies" local function make_key(goop) local h = hash.create() h:update(goop) local key = h:base32():sub(1, 20) key = settings['key_prefix'] .. key return key end local function replies_check(task) local function redis_get_cb(err, data) if err ~= nil then rspamd_logger.errx(task, 'redis_get_cb received error: %1', err) return end if data == '1' then -- Hash was found task:insert_result(settings['symbol'], 1.0) if settings['action'] ~= nil then local ip_addr = task:get_ip() if (settings.use_auth and task:get_user()) or (settings.use_local and ip_addr and ip_addr:is_local()) then rspamd_logger.infox(task, "not forcing action for local network or authorized user"); else task:set_pre_result(settings['action'], settings['message'], N) end end end end -- If in-reply-to header not present return local irt = task:get_header_raw('in-reply-to') if irt == nil then return end -- Create hash of in-reply-to and query redis local key = make_key(irt) local ret = lua_redis.redis_make_request(task, redis_params, -- connect params key, -- hash key false, -- is write redis_get_cb, --callback 'GET', -- command {key} -- arguments ) if not ret then rspamd_logger.errx(task, "redis request wasn't scheduled") end end local function replies_set(task) local function redis_set_cb(err) if err ~=nil then rspamd_logger.errx(task, 'redis_set_cb received error: %1', err) end end -- If sender is unauthenticated return local ip = task:get_ip() if settings.use_auth and task:get_user() then lua_util.debugm(N, task, 'sender is authenticated') elseif settings.use_local and (ip and ip:is_local()) then lua_util.debugm(N, task, 'sender is from local network') else return end -- If no message-id present return local msg_id = task:get_header_raw('message-id') if msg_id == nil then return end -- Create hash of message-id and store to redis local key = make_key(msg_id) lua_util.debugm(N, task, 'storing message-id for replies check') local ret = lua_redis.redis_make_request(task, redis_params, -- connect params key, -- hash key true, -- is write redis_set_cb, --callback 'SETEX', -- command {key, tostring(settings['expire']), "1"} -- arguments ) if not ret then rspamd_logger.errx(task, "redis request wasn't scheduled") end end local function replies_check_cookie(task) local function cookie_matched(extra, ts) local dt = task:get_date{format = 'connect', gmt = true} if dt < ts then rspamd_logger.infox(task, 'ignore cookie as its date is in future') return end if settings.cookie_valid_time then if dt - ts > settings.cookie_valid_time then rspamd_logger.infox(task, 'ignore cookie as its timestamp is too old: %s (%s current time)', ts, dt) return end end if extra then task:insert_result(settings['symbol'], 1.0, string.format('cookie:%s:%s', extra, ts)) else task:insert_result(settings['symbol'], 1.0, string.format('cookie:%s', ts)) end if settings['action'] ~= nil then local ip_addr = task:get_ip() if (settings.use_auth and task:get_user()) or (settings.use_local and ip_addr and ip_addr:is_local()) then rspamd_logger.infox(task, "not forcing action for local network or authorized user"); else task:set_pre_result(settings['action'], settings['message'], N) end end end -- If in-reply-to header not present return local irt = task:get_header('in-reply-to') if irt == nil then return end local cr = require "rspamd_cryptobox" -- Extract user part if needed local extracted_cookie = irt:match('^%