Skip to content

Commit 0e58e8c

Browse files
committed
Updating CHANGELOG.md and versions for release.
1 parent dffab31 commit 0e58e8c

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
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:

index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
var 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.
3638
var defaultConfig = {
3739
fromEmail: "noreply@example.com",
3840
subjectPrefix: "",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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": {

0 commit comments

Comments
 (0)