Skip to content

Commit

Permalink
fix: fixed spam from adobe issue
Browse files Browse the repository at this point in the history
  • Loading branch information
titanism committed Jan 8, 2025
1 parent 98243ef commit 96cad79
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions helpers/is-arbitrary.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,15 @@ function isArbitrary(session, headers) {
`Blocked phrase, please forward this to ${config.abuseEmail}`
);

// until adobe responds
if (
subject &&
subject.includes(
'Signature requested on "the agreement for your new checking account with us"'
)
)
throw new SMTPError('Spam from Adobe');

//
// check for paypal scam (very strict until PayPal resolves phishing on their side)
// (seems to only come from "outlook.com" and "paypal.com" hosts)
Expand Down

0 comments on commit 96cad79

Please sign in to comment.