@headwall/trusted-network-providers
Version:
Trusted network hosts and address ranges.
34 lines (26 loc) • 604 B
JavaScript
/**
* mailgun.js
*
* SECURITY NOTE: This provider uses DNS SPF lookups which are NOT DNSSEC-validated.
* For production use in high-security environments, consider using bundled assets
* instead of runtime DNS lookups.
*
* See: docs/security.md - DNS-Based Providers section
*/
const spfAnalyser = require('../spf-analyser');
const self = {
name: 'Mailgun',
testAddresses: ['69.72.36.213'],
ipv4: {
addresses: [],
ranges: [],
},
ipv6: {
addresses: [],
ranges: [],
},
reload: () => {
return spfAnalyser('mailgun.org', self);
},
};
module.exports = self;