UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

2 lines (1 loc) 552 B
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.handler=void 0;async function handler(event){console.log("Spam filter");const sesNotification=event.Records[0].ses;return console.log("SES Notification: %j",sesNotification),sesNotification.receipt.spfVerdict.status==="FAIL"||sesNotification.receipt.dkimVerdict.status==="FAIL"||sesNotification.receipt.spamVerdict.status==="FAIL"||sesNotification.receipt.virusVerdict.status==="FAIL"?(console.log("Dropping spam"),{disposition:"STOP_RULE_SET"}):null}exports.handler=handler;