Socket
Socket
Sign inDemoInstall

smtp-connection

Package Overview
Dependencies
Maintainers
1
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

smtp-connection - npm Package Compare versions

Comparing version 2.12.0 to 2.12.1

4

CHANGELOG.md
# Changelog
## v2.12.1 2016-10-10
* Fixed invalid SIZE detection
## v2.12.0 2016-09-05

@@ -4,0 +8,0 @@

2

lib/smtp-connection.js

@@ -997,3 +997,3 @@ 'use strict';

// Detect if the server supports SIZE extensions (and the max allowed size)
if ((match = str.match(/[ \-]SIZE(?:\s+(\d+))?/mi))) {
if ((match = str.match(/[ \-]SIZE(?:[ \t]+(\d+))?/mi))) {
this._supportedExtensions.push('SIZE');

@@ -1000,0 +1000,0 @@ this._maxAllowedSize = Number(match[1]) || 0;

{
"name": "smtp-connection",
"version": "2.12.0",
"version": "2.12.1",
"description": "Connect to SMTP servers",

@@ -30,7 +30,7 @@ "main": "lib/smtp-connection.js",

"grunt-eslint": "^19.0.0",
"grunt-mocha-test": "^0.12.7",
"mocha": "^3.0.2",
"grunt-mocha-test": "^0.13.2",
"mocha": "^3.1.1",
"proxy-test-server": "^1.0.0",
"sinon": "^1.17.5",
"smtp-server": "^1.14.2",
"sinon": "^1.17.6",
"smtp-server": "^1.15.0",
"xoauth2": "^1.2.0"

@@ -37,0 +37,0 @@ },

@@ -9,2 +9,8 @@ # smtp-connection

## Other similar packages you might be interested in
* **[nodemailer](https://github.com/nodemailer/nodemailer)** – all in one package to send email from Node.js
* **[smtp-server](https://github.com/andris9/smtp-server)** – add SMTP server interface to your application
* **[zone-mta](https://github.com/zone-eu/zone-mta)** – full featured outbound MTA built using smtp-connection and smtp-server modules
## Usage

@@ -11,0 +17,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