forked from maildev/maildev
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
33 additions
and
22 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,21 +1,23 @@ | ||
|
||
|
||
## 3.0.0 | ||
## 3.0.0-rc0 | ||
|
||
- Remove vendored mailparser to use /~https://github.com/nodemailer/mailparser | ||
Tried to keep a similar format for `email` but: | ||
- Default encoding is utf-8 | ||
- Default encoding is utf-8 | ||
- Issues with `uuencode` | ||
- Custom headers in Quoted-printable are not converted. | ||
- Only the last occurence of a header is used. | ||
- apply to `in-reply-to` which [rfc5322](https://www.rfc-editor.org/rfc/rfc5322) list at max=1 | ||
- Attachment | ||
- `fileName` is now `filename` | ||
- `length` is now `size` | ||
- Raw headers are now in `headerLines` | ||
- Use `Date` object in `mail` and `headers`, in `mail` it will default to current time if missing | ||
- removed `time` | ||
- Inline attachment are not added in HTML (was `<div class="mailparser-attachment">`). | ||
- No mbox support | ||
- Attachment are not streamed anymore, but use `Buffer`. | ||
- Mail format is now defined in [type.ts](src/lib/type.ts) | ||
- Converted most the lib to Typescript | ||
- Stopped stoing all mails in memory, keep only the enveloppe and read the rest from disk | ||
- Exposed more event listener methods from `EventEmitter` | ||
- Added some Async support | ||
- `mailEventSubjectMapper` allow to define custom event `subject` (by default use the first recipient) | ||
|
||
|
||
|
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