File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed
Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 11# Change Log for aws-lambda-ses-forwarder
22
3+ ## 5.0.0 [ 2020/6/27]
4+
5+ - Adding ` allowPlusSign ` configuration flag that when enabled ignores suffixes
6+ after a plus sign in email addresses. For example, an email addressed to
7+ - Adding support for a catch all mapping by using "@" as the key.
8+ ` jane+reminder@example.com ` is treated as if addressed to ` jane@example.com ` .
9+ - Fixing handling of emails with less common header formats, such as where there
10+ is no space in the header after the colon and before the value.
11+ - Updating aws-sdk dependency to match AWS Lambda environment.
12+
13+ ### Upgrade Notes
14+
15+ - The ** Node.js 8** Lambda runtime is required for this version.
16+
317## 4.2.0 [ 2017/6/20]
418
519- Removing ` Message-ID ` header from messages to fix `InvalidParameterValue:
Original file line number Diff line number Diff line change 22
33var AWS = require ( 'aws-sdk' ) ;
44
5- console . log ( "AWS Lambda SES Forwarder // @arithmetric // Version 4.2 .0" ) ;
5+ console . log ( "AWS Lambda SES Forwarder // @arithmetric // Version 5.0 .0" ) ;
66
77// Configure the S3 bucket and key prefix for stored raw emails, and the
88// mapping of email addresses to forward from and to.
@@ -33,6 +33,8 @@ console.log("AWS Lambda SES Forwarder // @arithmetric // Version 4.2.0");
3333//
3434// To match a mailbox name on all domains, use a key without the "at" symbol
3535// and domain part of an email address (i.e. `info`).
36+ //
37+ // To match all email addresses matching no other mapping, use "@" as a key.
3638var defaultConfig = {
3739 fromEmail : "noreply@example.com" ,
3840 subjectPrefix : "" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " aws-lambda-ses-forwarder" ,
3- "version" : " 4.2 .0" ,
3+ "version" : " 5.0 .0" ,
44 "description" : " Serverless email forwarding using AWS Lambda and SES" ,
55 "main" : " index.js" ,
66 "scripts" : {
You can’t perform that action at this time.
0 commit comments