aboutsummaryrefslogtreecommitdiffstats
path: root/rules
diff options
context:
space:
mode:
authorSteve Freegard <steve@stevefreegard.com>2017-03-23 22:01:19 +0000
committerSteve Freegard <steve@stevefreegard.com>2017-03-23 22:01:19 +0000
commit1205d530dd568af6c495c2669e86565219cd7195 (patch)
treef1cf73bb4e998a61d1fd04a4e03f93b817004d7e /rules
parentc53dd6be7203038a0be6e73f1eb4beeeecd65b91 (diff)
downloadrspamd-1205d530dd568af6c495c2669e86565219cd7195.tar.gz
rspamd-1205d530dd568af6c495c2669e86565219cd7195.zip
Updates to previous commit
Diffstat (limited to 'rules')
-rw-r--r--rules/misc.lua6
-rw-r--r--rules/regexp/headers.lua8
2 files changed, 12 insertions, 2 deletions
diff --git a/rules/misc.lua b/rules/misc.lua
index db754a98e..1e587d093 100644
--- a/rules/misc.lua
+++ b/rules/misc.lua
@@ -415,12 +415,14 @@ local check_from_display_name = rspamd_config:register_symbol{
local parsed = util.parse_mail_address(from[1].name)
if not parsed then return false end
if not (parsed[1] and parsed[1]['addr']) then return false end
+ if parsed[1]['domain'] == nil or parsed[1]['domain'] == '' then return false end
-- See if the parsed domains differ
if not util.strequal_caseless(from[1]['domain'], parsed[1]['domain']) then
-- See if the destination domain is the same as the spoof
local to = task:get_recipients(2)
- -- Be careful with undisclosed-recipients:; as domain will be an empty string
- if not (to and to[1] and to[1]['domain'] and to[1]['domain'] ~= '') then
+ if not (to and to[1] and to[1]['domain']) then
+ -- Be careful with undisclosed-recipients:; as domain will be an empty string
+ if to[1]['domain'] == nil or to[1]['domain'] == '' then return false end
task:insert_result('FROM_NEQ_DISPLAY_NAME', 1.0, from[1]['domain'], parsed[1]['domain'])
return false
end
diff --git a/rules/regexp/headers.lua b/rules/regexp/headers.lua
index af63d7131..c14dd3500 100644
--- a/rules/regexp/headers.lua
+++ b/rules/regexp/headers.lua
@@ -905,3 +905,11 @@ reconf['HAS_XOIP'] = {
score = 0.0,
group = 'headers'
}
+
+reconf['RCVD_VIA_SMTP_AUTH'] = {
+ re = "Received=/\\bE?SMTPS?A\\b/ || Received=/\\bauthenticated\\b/i",
+ description = "Recieved using SMTP AUTH",
+ score = 0,
+ group = 'headers'
+}
+