mailparser
Advanced tools
Comparing version 0.4.6 to 0.4.7
@@ -520,2 +520,5 @@ "use strict"; | ||
break; | ||
case "content-location": | ||
this._currentNode.meta.location = value.toLowerCase(); | ||
break; | ||
case "subject": | ||
@@ -639,2 +642,6 @@ this._currentNode.subject = this._encodeString(value); | ||
value.charset = "utf-8"; | ||
} else if (value.charset.match(/^ansi_x3\.4\-19/)) { | ||
// ANSI_X3.4-1968 and ANSI_X3.4-1986 are aliases for ASCII. | ||
// See http://en.wikipedia.org/wiki/ASCII#Aliases | ||
value.charset = "utf-8"; | ||
} | ||
@@ -1408,2 +1415,2 @@ this._currentNode.meta.charset = value.charset; | ||
return charset; | ||
}; | ||
}; |
{ | ||
"name": "mailparser", | ||
"description": "Asynchronous and non-blocking parser for mime encoded e-mail messages", | ||
"version": "0.4.6", | ||
"version": "0.4.7", | ||
"author": "Andris Reinman", | ||
@@ -6,0 +6,0 @@ "maintainers": [ |
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
136372
2968