dmarc-parse

1.2.1 • Public • Published

dmarc-parse Build Status Coverage Status Dependency Status XO code style

Parse and validate the syntax of DMARC (Domain-based Message Authentication, Reporting, and Conformance) DNS strings

Install

	npm install --save dmarc-parse

Usage

const dmarc = require('dmarc-parse');
 
let tags = dmarc('v=DMARC1; p=reject; rua=mailto:mailauth-reports@google.com');
 
// tags == {
//     tags: {
//         v: {
//             description: 'Protocol version',
//             value: 'DMARC1'
//         },
//         p: {
//             description: 'Policy to apply to email that fails the DMARC check. Can be "none", "quarantine", or "reject". "none" is used to collect feedback and gain visibility into email streams without impacting existing flows.',
//             value: 'reject'
//         },
//         rua: {
//             description: 'Addresses to which aggregate feedback is to be sent (comma-separated plain-text list of DMARC URIs',
//             value: 'mailto:mailauth-reports@google.com'
//         }
//     }
// }

Debugging

  npm install -g inspect-process
	inspect node_modules/ava/profile.js some/test/file.js

Watching Tests

	ava --watch

or

	npm test -- --watch

License

MIT © SoftVu

Dependencies (1)

Dev Dependencies (4)

Package Sidebar

Install

npm i dmarc-parse

Weekly Downloads

282

Version

1.2.1

License

MIT

Unpacked Size

17.5 kB

Total Files

17

Last publish

Collaborators

  • c0bra