Skip to content

Commit

Permalink
Updating CHANGELOG.md and versions for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
arithmetric committed Jun 27, 2020
1 parent dffab31 commit 0e58e8c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
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:
Expand Down
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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: "",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-lambda-ses-forwarder",
"version": "4.2.0",
"version": "5.0.0",
"description": "Serverless email forwarding using AWS Lambda and SES",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 0e58e8c

Please sign in to comment.