Socket
Socket
Sign inDemoInstall

@types/simplesmtp

Package Overview
Dependencies
2
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.3.3 to 0.3.4

26

simplesmtp/index.d.ts

@@ -14,31 +14,31 @@ // Type definitions for simplesmtp 0.3.35

*/
name?: string;
name?: string | undefined;
/**
* if set to true, print out messages about the connection
*/
debug?: boolean;
debug?: boolean | undefined;
/**
* client timeout in milliseconds, defaults to 60 000
*/
timeout?: number;
timeout?: number | undefined;
/**
* start a server on secure connection
*/
secureConnection?: boolean;
secureConnection?: boolean | undefined;
/**
* greeting banner that is sent to the client on connection
*/
SMTPBanner?: string;
SMTPBanner?: string | undefined;
/**
* if set to true, require that the client must authenticate itself
*/
requireAuthentication?: boolean;
requireAuthentication?: boolean | undefined;
/**
* if set to true, client may authenticate itself but don't have to
*/
enableAuthentication?: boolean;
enableAuthentication?: boolean | undefined;
/**
* maximum size of an e-mail in bytes
*/
maxSize?: number;
maxSize?: number | undefined;
/**

@@ -51,19 +51,19 @@ * TLS credentials

*/
authMethods?: string[];
authMethods?: string[] | undefined;
/**
* if set, support HELO only
*/
disableEHLO?: boolean;
disableEHLO?: boolean | undefined;
/**
* if set, allow client do not use STARTTLS
*/
ignoreTLS?: boolean;
ignoreTLS?: boolean | undefined;
/**
* if set, do not validate sender domains
*/
disableDNSValidation?: boolean;
disableDNSValidation?: boolean | undefined;
/**
* if set, limit the number of simultaneous connections to the server
*/
maxClients?: number;
maxClients?: number | undefined;
}

@@ -70,0 +70,0 @@

{
"name": "@types/simplesmtp",
"version": "0.3.3",
"version": "0.3.4",
"description": "TypeScript definitions for simplesmtp",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/simplesmtp",
"license": "MIT",

@@ -24,4 +25,4 @@ "contributors": [

},
"typesPublisherContentHash": "60188c1f0ed11bd2e71fa4543da311e778bc5fecb856c5df526f1fba43fed58b",
"typeScriptVersion": "3.0"
"typesPublisherContentHash": "fffb585105a3f92193f28a03cce1cb23028aebb156470dbedc8d6ec50f5ae754",
"typeScriptVersion": "3.6"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Fri, 15 May 2020 13:12:38 GMT
* Last updated: Tue, 06 Jul 2021 16:34:52 GMT
* Dependencies: [@types/node](https://npmjs.com/package/@types/node)

@@ -14,0 +14,0 @@ * Global values: none

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc