2016-12-10 03:39:02 +08:00
|
|
|
rspamd_config.MAILCOW_AUTH = {
|
|
|
|
callback = function(task)
|
|
|
|
local uname = task:get_user()
|
|
|
|
if uname then
|
|
|
|
return 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
2017-03-16 20:42:56 +08:00
|
|
|
rspamd_config:register_symbol({
|
|
|
|
name = 'TAG_MOO',
|
|
|
|
type = 'postfilter',
|
|
|
|
callback = function(task)
|
|
|
|
local util = require("rspamd_util")
|
|
|
|
local rspamd_logger = require "rspamd_logger"
|
2017-03-12 21:38:20 +08:00
|
|
|
|
2017-03-16 20:42:56 +08:00
|
|
|
local tagged_rcpt = task:get_symbol("TAGGED_RCPT")
|
2017-05-08 21:39:33 +08:00
|
|
|
local mailcow_domain = task:get_symbol("RCPT_MAILCOW_DOMAIN")
|
|
|
|
|
|
|
|
if tagged_rcpt and mailcow_domain then
|
2017-03-16 20:42:56 +08:00
|
|
|
local tag = tagged_rcpt[1].options[1]
|
|
|
|
rspamd_logger.infox("found tag: %s", tag)
|
|
|
|
local action = task:get_metric_action('default')
|
|
|
|
rspamd_logger.infox("metric action now: %s", action)
|
2017-03-12 21:38:20 +08:00
|
|
|
|
2017-03-16 20:42:56 +08:00
|
|
|
if action ~= 'no action' and action ~= 'greylist' then
|
|
|
|
rspamd_logger.infox("skipping tag handler for action: %s", action)
|
|
|
|
task:set_metric_action('default', action)
|
2017-03-18 02:23:25 +08:00
|
|
|
return true
|
2017-03-16 20:42:56 +08:00
|
|
|
end
|
2017-03-12 21:38:20 +08:00
|
|
|
|
2017-05-08 21:39:33 +08:00
|
|
|
local wants_subject_tag = task:get_symbol("RCPT_WANTS_SUBJECT_TAG")
|
2017-01-09 18:05:33 +08:00
|
|
|
|
2017-05-08 21:39:33 +08:00
|
|
|
if wants_subject_tag then
|
|
|
|
rspamd_logger.infox("user wants subject modified for tagged mail")
|
|
|
|
local sbj = task:get_header('Subject')
|
|
|
|
new_sbj = '=?UTF-8?B?' .. tostring(util.encode_base64('[' .. tag .. '] ' .. sbj)) .. '?='
|
2017-06-07 04:00:34 +08:00
|
|
|
task:set_milter_reply({
|
2017-05-08 21:39:33 +08:00
|
|
|
remove_headers = {['Subject'] = 1},
|
|
|
|
add_headers = {['Subject'] = new_sbj}
|
|
|
|
})
|
2017-03-12 21:38:20 +08:00
|
|
|
else
|
2017-05-08 21:39:33 +08:00
|
|
|
rspamd_logger.infox("Add X-Moo-Tag header")
|
2017-06-07 04:00:34 +08:00
|
|
|
task:set_milter_reply({
|
2017-05-08 21:39:33 +08:00
|
|
|
add_headers = {['X-Moo-Tag'] = 'YES'}
|
|
|
|
})
|
2017-03-12 21:38:20 +08:00
|
|
|
end
|
2017-01-09 18:05:33 +08:00
|
|
|
end
|
2017-03-16 20:42:56 +08:00
|
|
|
end,
|
2017-05-30 03:53:47 +08:00
|
|
|
priority = 11
|
2017-03-16 20:42:56 +08:00
|
|
|
})
|
2017-06-27 05:17:46 +08:00
|
|
|
|
2017-03-09 00:58:00 +08:00
|
|
|
|