Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mailparser

Package Overview
Dependencies
Maintainers
1
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mailparser - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

.npmignore

2

lib/mailparser.js

@@ -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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc