From 724a6405a571f6d57a1e96fa74a44852bd127ece Mon Sep 17 00:00:00 2001 From: Adam Cooke Date: Wed, 7 Jun 2017 09:59:06 +0100 Subject: [PATCH] don't check for untrusted relays on outgoing messages --- lib/postal/message_inspection.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/postal/message_inspection.rb b/lib/postal/message_inspection.rb index ee2d781..f7f560f 100644 --- a/lib/postal/message_inspection.rb +++ b/lib/postal/message_inspection.rb @@ -6,7 +6,7 @@ module Postal class MessageInspection SPAM_EXCLUSIONS = { - :outgoing => ['NO_RECEIVED', 'NO_RELAYS', 'ALL_TRUSTED', 'FREEMAIL_FORGED_REPLYTO', 'RDNS_DYNAMIC', /^SPF\_/, /^HELO\_/, /DKIM_/, /^RCVD_IN_/], + :outgoing => ['NO_RECEIVED', 'NO_RELAYS', 'ALL_TRUSTED', 'FREEMAIL_FORGED_REPLYTO', 'RDNS_DYNAMIC', 'CK_HELO_GENERIC', /^SPF\_/, /^HELO\_/, /DKIM_/, /^RCVD_IN_/], :incoming => [] }