-
Notifications
You must be signed in to change notification settings - Fork 451
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating CHANGELOG.md and versions for release.
- Loading branch information
1 parent
dffab31
commit 0e58e8c
Showing
3 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
# Change Log for aws-lambda-ses-forwarder | ||
|
||
## 5.0.0 [2020/6/27] | ||
|
||
- Adding `allowPlusSign` configuration flag that when enabled ignores suffixes | ||
after a plus sign in email addresses. For example, an email addressed to | ||
- Adding support for a catch all mapping by using "@" as the key. | ||
`[email protected]` is treated as if addressed to `[email protected]`. | ||
- Fixing handling of emails with less common header formats, such as where there | ||
is no space in the header after the colon and before the value. | ||
- Updating aws-sdk dependency to match AWS Lambda environment. | ||
|
||
### Upgrade Notes | ||
|
||
- The **Node.js 8** Lambda runtime is required for this version. | ||
|
||
## 4.2.0 [2017/6/20] | ||
|
||
- Removing `Message-ID` header from messages to fix `InvalidParameterValue: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
var AWS = require('aws-sdk'); | ||
|
||
console.log("AWS Lambda SES Forwarder // @arithmetric // Version 4.2.0"); | ||
console.log("AWS Lambda SES Forwarder // @arithmetric // Version 5.0.0"); | ||
|
||
// Configure the S3 bucket and key prefix for stored raw emails, and the | ||
// mapping of email addresses to forward from and to. | ||
|
@@ -33,6 +33,8 @@ console.log("AWS Lambda SES Forwarder // @arithmetric // Version 4.2.0"); | |
// | ||
// To match a mailbox name on all domains, use a key without the "at" symbol | ||
// and domain part of an email address (i.e. `info`). | ||
// | ||
// To match all email addresses matching no other mapping, use "@" as a key. | ||
var defaultConfig = { | ||
fromEmail: "[email protected]", | ||
subjectPrefix: "", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters