mailparser
Advanced tools
Comparing version 0.2.0 to 0.2.1
@@ -623,3 +623,3 @@ | ||
if(this.currentNode.meta.transferEncoding == "quoted-printable"){ | ||
this.currentNode.content = mimelib.decodeQuotedPrintable(this.currentNode.content, false, this.currentNode.meta.charset); | ||
this.currentNode.content = new Buffer(mimelib.decodeQuotedPrintable(this.currentNode.content, false, this.currentNode.meta.charset), "utf-8"); | ||
this.currentNode.content = this.convertString(this.currentNode.content, "utf-8", this.currentNode.meta.charset); | ||
@@ -626,0 +626,0 @@ }else if(this.currentNode.meta.transferEncoding == "base64"){ |
{ | ||
"name": "mailparser", | ||
"description": "Asynchronous and non-blocking parser for mime encoded e-mail messages", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"author" : "Andris Reinman", | ||
@@ -6,0 +6,0 @@ "maintainers":[ |
@@ -6,3 +6,3 @@ var mp = require("../lib/mailparser"), | ||
var inp = fs.createReadStream("sparrow.eml"), | ||
var inp = fs.createReadStream("applequoted.eml"), | ||
out = new mp.MailParser(); | ||
@@ -9,0 +9,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
2772552
33
6