1.0.3 • Published 4 years ago

python-dkim-verify v1.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

This package is deprecated in favor of dkimpy instead, see https://github.com/forwardemail/dkimpy/ for more information.

python-dkim-verify

build status code coverage code style styled with prettier made with lass license npm downloads

Node.js wrapper around Python's dkim.verify function which conforms to RFC spec

Table of Contents

Requirements

  1. Ensure that you have a Python version of >= 3.5 installed per dkimpy requirements (note that Python v3 is required because of a bug with DNS recursive CNAME lookups on v2.7):

    python3 --version
  2. Install the packages dkimpy:

    pip3 install dkimpy

Install

npm:

npm install python-dkim-verify

yarn:

yarn add python-dkim-verify

Usage

const dkimVerify = require('python-dkim-verify');

// then/catch usage
dkimVerify(rawEmail)
  .then(result)
  .catch(console.error);

// async/await usage
(async () => {
  try {
    const result = await dkimVerify(rawEmail);
    console.log(result);
  } catch (err) {
    console.error(err);
  }
})();

Note that result is either true or false depending on whether or not DKIM verification was successful for the first DKIM-Signature header found on the email.

Contributors

NameWebsite
Nick Baughhttp://niftylettuce.com/

License

MIT © Nick Baugh

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

5 years ago