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 2.7.4 to 2.7.5

12

lib/mail-parser.js

@@ -328,8 +328,16 @@ 'use strict';

case 'references':
try {
value = this.libmime.decodeWords(value);
} catch (E) {
// ignore
}
value = value.split(/\s+/).map(this.ensureMessageIDFormat);
break;
case 'message-id':
value = this.ensureMessageIDFormat(value);
break;
case 'in-reply-to':
try {
value = this.libmime.decodeWords(value);
} catch (E) {
// ignore
}
value = this.ensureMessageIDFormat(value);

@@ -336,0 +344,0 @@ break;

2

package.json
{
"name": "mailparser",
"version": "2.7.4",
"version": "2.7.5",
"description": "Parse e-mails",

@@ -5,0 +5,0 @@ "main": "index.js",

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