npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mx-connect

v1.5.3

Published

Establish TCP connection to a MX server

Downloads

785

Readme

mx-connect

Establish TCP connection to a MX server. This module takes a target domain or email address, resolves appropriate MX servers for this target and tries to get a connection, starting from higher priority servers.

Supports unicode hostnames and IPv6.

npm install mx-connect

Usage

const mxConnect = require('mx-connect');
mxConnect(options, callback);

Where

  • options is the target domain, address, or configuration object
  • callback is the function to run once connection is established to it fails

Example

This example establishes a connection to the MX of gmail.com and pipes output to console

const mxConnect = require('mx-connect');
mxConnect('[email protected]', (err, connection) => {
    if (err) {
        console.error(err);
    } else {
        console.log('Connection to %s:%s', connection.hostname, connection.port);
        // Connection to aspmx.l.google.com:25

        connection.socket.pipe(process.stdout);
        // 220 mx.google.com ESMTP k11-v6si869487ljk.7 - gsmtp
    }
});

Configuration options

You can use a domain name or an email address as the target, for additional configuration you would need to use configurtion object with the following properties (most are optional)

  • target is either a domain name or an email address or an IP address or IP address literal (basically anything you can have after the @-sign in an email address). Unicode is allowed.

  • port is the port number to connect to. Defaults to 25.

  • localAddress is the local IP address to use for the connection

  • localHostname is the hostname of the local address

  • localAddressIPv4 is the local IPv4 address to use for the connection if you want to specify an address both for IPv4 and IPv6

  • localAddressIPv6 is the local IPv6 address to use for the connection if you want to specify an address both for IPv4 and IPv6

  • dnsOptions is an object for IP address related options

    • ignoreIPv6 (boolean, defaults to false) If true then never use IPv6 addresses for sending
    • preferIPv6 (boolean, defaults to false) If true then use IPv6 address even if IPv4 address is also available
    • blockLocalAddresses (boolean, defaults to false) If true then refuses to connect to IP addresses that are either in loopback, private network or attached to the server. People put every kind of stuff in MX records, you do not want to flood your loopback interface because someone thought it is a great idea to set 127.0.0.1 as the MX server
    • resolve (function, defaults to dns.resolve, callback-style)
  • mx is a resolved MX object or an array of MX objects to skip DNS resolving. Useful if you want to connect to a specific host.

    • exchange is the hostname of the MX
    • priority (defaults to 0) is the MX priority number that is used to sort available MX servers (servers with higher priority are tried first)
    • A is an array of IPv4 addresses. Optional, resolved from exchange hostname if not set
    • AAAA is an array of IPv6 addresses. Optional, resolved from exchange hostname if not set
  • connectHook function (options, socketOptions, callback) is a function handler to run before establishing a tcp connection to current target (defined in socketOptions). If the socketOptions object has a socket property after the callback then connection is not established. Useful if you want to divert the connection is ome cases, for example if the target domain is in the Onion network then you could create a socket against a SOCK proxy yourself.

  • mtaSts is an object for MTA-STS configuration

    • enabled - if not true then does not run MTA-STS checks, disabled by default
    • logger(logObj) - method to log MTA-STS information, logging is disabled by default
    • cache - an object to manage MTA-STS policy cache
      • get(domain) -> returns cached policy object
      • set(domain, policyObj) -> caches a policy object
  • connectError function (err, options, socketOptions) is a function handler to run when a connection to a MX fails.

Connection object

Function callback gets connection object as the second argument

  • socket is a socket object against target
  • hostname is the hostname of the exchange
  • host is the IP address of the exchange
  • port is the port used to connect
  • localAddress is the local IP address used for the connection
  • localPort is the local port used for the connection

License

EUPL v1.1 or newer