[object Object]

← back to Email Deliverability Agent

Build fleet email-deliverability monitoring agent

a0e448074364a5313e953fb36fca0fa3a7d22bf7 · 2026-05-18 10:20:53 -0700 · Steve

audit.js flags Purelymail MX/DKIM/DMARC/routing failures (110/211 fail MX,
all 211 fail DKIM+DMARC). contact-audit.js cross-references sister-site
mailto: contacts and finds 42 of 58 sites silently losing leads. canary.js
is a dry-run-default deliverability smoke test, cron-ready but unscheduled.
README diagnoses George's 404 as a /george path-prefix mismatch in the MCP
config (GEORGE_PATH_PREFIX unset -> wrapper defaults to /george, but the
Express app serves routes at root).

Files touched

Diff

commit a0e448074364a5313e953fb36fca0fa3a7d22bf7
Author: Steve <steve@designerwallcoverings.com>
Date:   Mon May 18 10:20:53 2026 -0700

    Build fleet email-deliverability monitoring agent
    
    audit.js flags Purelymail MX/DKIM/DMARC/routing failures (110/211 fail MX,
    all 211 fail DKIM+DMARC). contact-audit.js cross-references sister-site
    mailto: contacts and finds 42 of 58 sites silently losing leads. canary.js
    is a dry-run-default deliverability smoke test, cron-ready but unscheduled.
    README diagnoses George's 404 as a /george path-prefix mismatch in the MCP
    config (GEORGE_PATH_PREFIX unset -> wrapper defaults to /george, but the
    Express app serves routes at root).
---
 .gitignore                    |    9 +
 README.md                     |  290 +++
 audit.js                      |  116 ++
 canary.js                     |  231 +++
 contact-audit.js              |  275 +++
 data/purelymail-routing.json  | 2097 +++++++++++++++++++++
 data/purelymail-snapshot.json | 2538 +++++++++++++++++++++++++
 lib/data.js                   |  111 ++
 output/domain-health.json     | 4097 +++++++++++++++++++++++++++++++++++++++++
 output/lead-loss-report.json  | 3776 +++++++++++++++++++++++++++++++++++++
 package.json                  |   21 +
 11 files changed, 13561 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..8869921
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,9 @@
+node_modules/
+.env
+.env.*
+tmp/
+*.log
+.DS_Store
+dist/
+build/
+output/canary-log.jsonl
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..aa45148
--- /dev/null
+++ b/README.md
@@ -0,0 +1,290 @@
+# email-deliverability-agent
+
+Fleet email-deliverability monitor for the Designer Wallcoverings
+sister-site network (~58 customer-facing wallpaper/wallcovering
+storefronts). It answers one question Steve actually cares about:
+
+> **When a customer fills out a contact form / clicks a `mailto:` link on
+> one of our sister sites, does that lead actually reach a human?**
+
+Today, for 42 of 58 sister sites, the answer is **no**.
+
+---
+
+## Purpose & mental model (read this first)
+
+A self-sent test email loop is a **deliverability monitor**, not a
+reputation or "warm-up" tool. It is important to be honest about what
+this agent does and does not do:
+
+- **What `canary.js` proves:** that the *receive + route* path for a
+  domain works end-to-end — i.e. a message sent to `info@<domain>` is
+  accepted by the MX, routed by the Purelymail rule, and lands in a
+  mailbox a human reads. That's it. It is a smoke test.
+- **What it does NOT do:** it does not build "Gmail credibility" or
+  sender reputation. Sending mail to yourself on a 3-day loop teaches
+  Gmail nothing — there is no recipient engagement, no varied
+  destinations, no opens/replies from real people. Inbox-provider trust
+  is earned by:
+  1. **Valid DKIM** — your sends are cryptographically signed and the
+     signature verifies. (Currently failing on **all 211 domains**.)
+  2. **Valid DMARC** — you publish an alignment policy so receivers know
+     unsigned/unaligned mail claiming to be you is fake. (Currently
+     failing on **all 211 domains**.)
+  3. **Real, engaged sends** — actual humans opening and replying to
+     real mail from the domain over time.
+- **The fix for "our mail goes to spam" is not a canary loop.** It is:
+  publish DKIM + DMARC DNS records, keep SPF valid (already passing),
+  and send real mail people want. The canary just *tells you when the
+  receive path silently breaks* so a lead-loss outage like the current
+  one is caught in 3 days instead of never.
+
+---
+
+## What's in this repo
+
+| File                 | Purpose |
+|----------------------|---------|
+| `audit.js`           | Pulls every Purelymail domain, flags MX / DKIM / DMARC / routing failures. Writes `output/domain-health.json`. |
+| `contact-audit.js`   | Walks every `~/Projects/*` with a `site.config.json`, greps `mailto:`/`tel:` literals, cross-references each contact domain against the health data. Writes `output/lead-loss-report.json` — the list of sites losing leads. |
+| `canary.js`          | Deliverability canary — sends one tokenised test email and confirms receipt via IMAP. **Dry-run by default**; `--live` needs creds. Cron/launchd-ready but not scheduled. |
+| `lib/data.js`        | Shared fixture loaders + per-domain health logic. |
+| `data/*.json`        | Snapshots captured from the Purelymail MCP (see below). |
+| `output/*.json`      | Generated reports. |
+
+### Run it
+
+```sh
+node audit.js          # domain-level health
+node contact-audit.js  # sister-site lead-loss report
+node canary.js         # dry-run canary (sends nothing)
+npm run all            # audit + contact-audit
+```
+
+### Refreshing the Purelymail snapshot
+
+`audit.js` / `contact-audit.js` read two fixture files, not the live API,
+because the Purelymail MCP tools can only be invoked from inside a Claude
+session, not from a plain Node script. To refresh:
+
+1. Call `mcp__purelymail__purelymail_list_domains` → save the `domains`
+   array into `data/purelymail-snapshot.json` (shape: `{capturedAt,
+   source, domains:[...]}`).
+2. Call `mcp__purelymail__purelymail_list_routing_rules` (any
+   `domainName` — note the MCP returns **all** account-wide rules
+   regardless of the argument) → save into `data/purelymail-routing.json`
+   (shape: `{capturedAt, source, rules:[...]}`).
+
+`audit.js` prints a staleness warning if the snapshot is older than 7 days.
+
+---
+
+## Current findings (snapshot 2026-05-18)
+
+### Domain audit — 211 Purelymail domains
+
+| Metric                       | Count |
+|------------------------------|-------|
+| Total domains                | 211   |
+| **Fail MX** (cannot receive) | **110** |
+| No routing rule              | 2 (`venturaclaw.com`, `venturaclaw.agentabrams.com`) |
+| Undeliverable (no MX OR no routing) | 112 |
+| **Fail DKIM**                | **211 (all)** |
+| **Fail DMARC**               | **211 (all)** |
+| Fail SPF                     | 0 (SPF is fine fleet-wide) |
+| Fully healthy                | **0** |
+
+**Reading:** 110 domains physically cannot receive mail. Worse, even the
+101 domains that *can* receive have **no DKIM and no DMARC**, so any mail
+they *send* looks unauthenticated and lands in spam. Zero domains are
+fully healthy.
+
+### Sister-site lead-loss audit — 58 sites scanned
+
+- **42 sites are LOSING LEADS** — their `mailto:` contact address is on a
+  domain that fails MX. Every contact-form / mailto lead is silently
+  dropped.
+- 14 sites OK (contact domain has MX + routing).
+- 2 unverified (`bleachresistantfabrics`, `fliepaper`) — contact domain
+  not present on the Purelymail account at all, so it can't be checked
+  here; verify their DNS/host separately.
+
+#### The 42 sister sites currently losing leads
+
+Every one fails for the same reason: **the contact domain fails MX —
+the domain cannot receive email**.
+
+| Site | Contact address |
+|------|-----------------|
+| 1800swallpaper | info@1800swallpaper.com |
+| 1890swallpaper | info@1890swallpaper.com |
+| 1920swallpaper | info@1920swallpaper.com |
+| 1930swallpaper | info@1930swallpaper.com |
+| 1940swallpaper | info@1940swallpaper.com |
+| 1950swallpaper | info@1950swallpaper.com |
+| 1960swallpaper | info@1960swallpaper.com |
+| 1970swallpaper | info@1970swallpaper.com |
+| agedwallpaper | info@agedwallpaper.com |
+| apartmentwallpaper | info@apartmentwallpaper.com |
+| blockprintedwallpaper | info@blockprintedwallpaper.com |
+| contractwallpaper | info@contractwallpaper.com |
+| embroideredwallpaper | info@embroideredwallpaper.com |
+| fabricwallpaper | info@fabricwallpaper.com |
+| ffepurchasing | info@ffepurchasing.com |
+| glitterwalls | info@glitterwalls.com |
+| greenwallcoverings | info@greenwallcoverings.com |
+| handcraftedwallpaper | info@handcraftedwallpaper.com |
+| healthcarewallpaper | info@healthcarewallpaper.com |
+| hospitalitywallcoverings | info@hospitalitywallcoverings.com |
+| jutewallpaper | info@jutewallpaper.com |
+| linenwallpaper | info@linenwallpaper.com |
+| madagascarwallpaper | info@madagascarwallpaper.com |
+| metallicwallpaper | info@metallicwallpaper.com |
+| micawallpaper | info@micawallpaper.com |
+| museumwallpaper | info@museumwallpaper.com |
+| mylarwallpaper | info@mylarwallpaper.com |
+| naturalwallcoverings | info@naturalwallcoverings.com |
+| raffiawallcoverings | info@raffiawallcoverings.com |
+| raffiawalls | info@raffiawalls.com |
+| recycledwallpaper | info@recycledwallpaper.com |
+| restaurantwallpaper | info@restaurantwallpaper.com |
+| retrowalls | info@retrowalls.com |
+| saloonwallpaper | info@saloonwallpaper.com |
+| screenprintedwallpaper | info@screenprintedwallpaper.com |
+| selfadhesivewallpaper | info@selfadhesivewallpaper.com |
+| silkwallcoverings | info@silkwallcoverings.com |
+| silkwallpaper | info@silkwallpaper.com |
+| stringwallpaper | info@stringwallpaper.com |
+| suedewallpaper | info@suedewallpaper.com |
+| textilewallpaper | info@textilewallpaper.com |
+| vinylwallpaper | info@vinylwallpaper.com |
+
+> **Note on `ffepurchasing` / `wallpapercanada`:** their `site.config.json`
+> `domain` field points at `hospitalitywallpaper.com`, but the `mailto:`
+> literals in their own source use their *own* domains. `contact-audit.js`
+> trusts the actual `mailto:` literal (what a customer really clicks), so
+> `ffepurchasing` is correctly flagged on `info@ffepurchasing.com` and
+> `wallpapercanada` lands OK on `info@hospitalitywallpaper.com`.
+
+### Recommended remediation (not performed by this agent — diagnose-only)
+
+1. **Restore MX** for the 110 failing domains in Purelymail's DNS (the
+   42 with live sister sites are the priority — those are losing leads
+   *right now*).
+2. **Publish DKIM** records for all 211 domains (Purelymail provides the
+   selector record).
+3. **Publish DMARC** (`_dmarc` TXT, start at `p=none` for monitoring,
+   move to `p=quarantine`).
+4. Re-run `node audit.js` to confirm, then stand up `canary.js` on a
+   3-day schedule so the next outage is caught fast.
+
+---
+
+## Scheduling the canary (manual — not installed by this agent)
+
+This agent intentionally **does not register any cron or launchd job**.
+When you're ready, install one of these yourself.
+
+**cron (every 3 days, 9am):**
+```cron
+0 9 */3 * * cd ~/Projects/email-deliverability-agent && /usr/bin/env node canary.js --live >> output/canary-cron.log 2>&1
+```
+
+**launchd** — create `~/Library/LaunchAgents/com.steve.deliverability-canary.plist`
+with a `StartCalendarInterval` and `ProgramArguments` invoking
+`node canary.js --live`, then `launchctl load` it.
+
+`canary.js --live` needs `CANARY_SMTP_*` / `CANARY_IMAP_*` env vars and
+the optional deps: `npm install nodemailer imapflow`.
+
+---
+
+## George status (outbound Gmail mailer) — diagnosis only
+
+**George is the outbound Gmail agent**, exposed to Claude via the
+`george-mcp` MCP wrapper. The reported symptom is `Cannot POST
+/george/api/send` and `Cannot GET /george/api/health` (HTTP 404).
+
+### Root cause: a base-path prefix mismatch in the MCP wrapper config
+
+George itself is an Express app at `~/Projects/george-gmail/server.js`.
+It mounts its routes **at the application root** — `app.post('/api/send', ...)`
+(line 966) and `app.get('/api/health', ...)` (line 687). There is **no
+`/george` route prefix anywhere** in `server.js` — no `express.Router()`
+mounted at `/george`, no `app.use('/george', ...)`. It listens on port
+`9850`.
+
+The MCP wrapper, `~/Projects/george-mcp/index.js`, builds request URLs as:
+
+```js
+// index.js line 13
+const BASE_PATH_PREFIX = process.env.GEORGE_PATH_PREFIX ?? "/george";
+// index.js line 28
+const fullPath = BASE_PATH_PREFIX + (path.startsWith("/") ? path : "/" + path);
+```
+
+So the wrapper **defaults to a `/george` prefix** unless
+`GEORGE_PATH_PREFIX` is set in its environment.
+
+In `~/.claude.json` the `george` MCP server's `env` block sets:
+
+```jsonc
+"george": {
+  "env": {
+    "GEORGE_URL": "http://100.107.67.67:9850",
+    "GEORGE_BASIC_AUTH": "..."
+    // GEORGE_PATH_PREFIX is NOT set
+  }
+}
+```
+
+Because `GEORGE_PATH_PREFIX` is absent, the wrapper falls back to
+`/george`, and every call resolves to:
+
+```
+http://100.107.67.67:9850/george/api/send   -> 404 (no such route)
+http://100.107.67.67:9850/george/api/health -> 404 (no such route)
+```
+
+The route George actually serves is `http://100.107.67.67:9850/api/send`.
+The comment at `index.js:10-12` shows the default `BASE_URL` was designed
+for a Tailscale-Serve front-end that *did* expose George under a
+`/george` path. The current config points `GEORGE_URL` straight at the
+raw port `9850` (no reverse proxy, no `/george` mount) — so the prefix
+must be cleared to match.
+
+### Fix (not applied — Steve to action; do not restart prod)
+
+Set `GEORGE_PATH_PREFIX` to empty in the `george` MCP `env` block in
+`~/.claude.json`, so the wrapper hits the routes George actually serves:
+
+```jsonc
+"george": {
+  "env": {
+    "GEORGE_URL": "http://100.107.67.67:9850",
+    "GEORGE_PATH_PREFIX": "",
+    "GEORGE_BASIC_AUTH": "..."
+  }
+}
+```
+
+(The `secrets`/`update-config` workflow is the right tool to make that
+edit, since it backs up `~/.claude.json` first. A running Claude session
+needs `/clear` or a restart to pick up the changed MCP env.)
+
+**Alternative** if you'd rather keep the `/george` prefix in the MCP:
+re-front George behind the Tailscale-Serve proxy that mounts it at
+`/george`, and point `GEORGE_URL` at that proxy origin instead of the
+raw `:9850` port.
+
+### Notes from the investigation
+
+- `pm2 list` on this machine (Mac2) is **empty** — George is not running
+  here. Its `server.js` logs `Dashboard: http://45.61.58.125:.../` and
+  `AUDIT_LOG = /root/DW-Agents/logs/...`, i.e. George runs on **Kamatera**
+  (`45.61.58.125`, reachable over Tailscale at `100.107.67.67:9850`), not
+  locally. This is a config-only bug — George's process is fine; the MCP
+  is just calling the wrong path.
+- No George process was restarted or modified. No production service was
+  touched. This section is diagnosis only.
+```
diff --git a/audit.js b/audit.js
new file mode 100644
index 0000000..f874689
--- /dev/null
+++ b/audit.js
@@ -0,0 +1,116 @@
+#!/usr/bin/env node
+'use strict';
+
+/**
+ * audit.js — Purelymail domain deliverability audit.
+ *
+ * Reads the Purelymail MCP snapshot fixtures, evaluates every domain, and
+ * flags:
+ *   - domains failing MX        (cannot physically receive email)
+ *   - domains failing DKIM      (sends look unauthenticated -> spam)
+ *   - domains failing DMARC     (no alignment policy -> spam / spoofable)
+ *   - domains with no routing   (MX may pass but mail goes nowhere)
+ *
+ * Writes output/domain-health.json and prints a human summary.
+ *
+ *   node audit.js
+ */
+
+const fs = require('fs');
+const path = require('path');
+const {
+  loadDomainSnapshot,
+  loadRoutingRules,
+  domainHealth,
+  ensureOutputDir,
+} = require('./lib/data');
+
+function daysSince(iso) {
+  if (!iso) return null;
+  const ms = Date.now() - new Date(iso).getTime();
+  return Number.isFinite(ms) ? Math.floor(ms / 86400000) : null;
+}
+
+function main() {
+  const snapshot = loadDomainSnapshot();
+  const routing = loadRoutingRules();
+  const health = domainHealth(snapshot, routing.rules);
+
+  const failMx = health.filter((h) => !h.passesMx);
+  const failDkim = health.filter((h) => !h.passesDkim);
+  const failDmarc = health.filter((h) => !h.passesDmarc);
+  const failSpf = health.filter((h) => !h.passesSpf);
+  const noRouting = health.filter((h) => !h.hasRouting);
+  const undeliverable = health.filter((h) => !h.deliverable);
+  const healthy = health.filter(
+    (h) => h.deliverable && h.passesDkim && h.passesDmarc
+  );
+
+  const report = {
+    generatedAt: new Date().toISOString(),
+    snapshotCapturedAt: snapshot.capturedAt || null,
+    routingCapturedAt: routing.capturedAt || null,
+    totals: {
+      domains: health.length,
+      failMx: failMx.length,
+      failDkim: failDkim.length,
+      failDmarc: failDmarc.length,
+      failSpf: failSpf.length,
+      noRouting: noRouting.length,
+      undeliverable: undeliverable.length,
+      fullyHealthy: healthy.length,
+    },
+    failMx: failMx.map((h) => h.domain),
+    noRouting: noRouting.map((h) => h.domain),
+    undeliverable: undeliverable.map((h) => ({
+      domain: h.domain,
+      issues: h.issues,
+    })),
+    domains: health,
+  };
+
+  const outDir = ensureOutputDir();
+  const outFile = path.join(outDir, 'domain-health.json');
+  fs.writeFileSync(outFile, JSON.stringify(report, null, 2));
+
+  // ---- human summary ----
+  const t = report.totals;
+  console.log('\n=== Purelymail Domain Deliverability Audit ===');
+  console.log(`snapshot captured : ${report.snapshotCapturedAt || 'unknown'}`);
+  const stale = daysSince(report.snapshotCapturedAt);
+  if (stale != null && stale > 7) {
+    console.log(`  WARNING: snapshot is ${stale} days old — re-run the MCP tools.`);
+  }
+  console.log(`total domains     : ${t.domains}`);
+  console.log(`fail MX           : ${t.failMx}  (cannot receive email at all)`);
+  console.log(`no routing rule   : ${t.noRouting}  (mail accepted but routed nowhere)`);
+  console.log(`UNDELIVERABLE     : ${t.undeliverable}  (fail MX OR no routing)`);
+  console.log(`fail DKIM         : ${t.failDkim}  (sends unauthenticated)`);
+  console.log(`fail DMARC        : ${t.failDmarc}  (no alignment policy)`);
+  console.log(`fail SPF          : ${t.failSpf}`);
+  console.log(`fully healthy     : ${t.fullyHealthy}  (MX+routing+DKIM+DMARC all pass)`);
+
+  if (failMx.length) {
+    console.log('\n--- Domains FAILING MX (top 30) ---');
+    failMx.slice(0, 30).forEach((h) => console.log(`  ${h.domain}`));
+    if (failMx.length > 30) console.log(`  ...and ${failMx.length - 30} more`);
+  }
+  if (noRouting.length) {
+    console.log('\n--- Domains with NO routing rule ---');
+    noRouting.forEach((h) => console.log(`  ${h.domain}`));
+  }
+
+  console.log(`\nWrote ${outFile}`);
+  console.log('Next: run `node contact-audit.js` to find sister sites losing leads.\n');
+}
+
+if (require.main === module) {
+  try {
+    main();
+  } catch (err) {
+    console.error('audit.js failed:', err.message);
+    process.exit(1);
+  }
+}
+
+module.exports = { main };
diff --git a/canary.js b/canary.js
new file mode 100644
index 0000000..efb4307
--- /dev/null
+++ b/canary.js
@@ -0,0 +1,231 @@
+#!/usr/bin/env node
+'use strict';
+
+/**
+ * canary.js — email deliverability canary.
+ *
+ * Sends ONE test email with a unique token in the subject, then polls the
+ * destination mailbox (IMAP) to confirm the message actually arrived. This
+ * proves the *receive + route* path end-to-end for one domain.
+ *
+ * Intended cadence: every 3 days (cron / launchd). This script does NOT
+ * register any schedule itself — see README "Scheduling" for the crontab /
+ * launchd plist you can install manually.
+ *
+ * SAFETY: defaults to --dry-run. It will NOT send live email or open any
+ * network connection unless you pass --live AND provide SMTP/IMAP creds.
+ *
+ *   node canary.js                 # dry-run: prints the plan, sends nothing
+ *   node canary.js --live          # actually send + verify (needs creds)
+ *   node canary.js --live --to addr@example.com
+ *
+ * Env (only read in --live mode):
+ *   CANARY_SMTP_HOST   default smtp.purelymail.com
+ *   CANARY_SMTP_PORT   default 465
+ *   CANARY_SMTP_USER   sending mailbox login
+ *   CANARY_SMTP_PASS   sending mailbox password
+ *   CANARY_FROM        From: address (default = SMTP_USER)
+ *   CANARY_TO          destination address to verify
+ *   CANARY_IMAP_HOST   default imap.purelymail.com
+ *   CANARY_IMAP_PORT   default 993
+ *   CANARY_IMAP_USER   mailbox to poll for the test message
+ *   CANARY_IMAP_PASS   password for the IMAP mailbox
+ *   CANARY_TIMEOUT_MS  receipt poll timeout (default 180000 = 3 min)
+ *
+ * Optional dependencies for --live mode (kept out of package.json deps so
+ * the dry-run path has zero install footprint):
+ *   npm install nodemailer imapflow
+ */
+
+const crypto = require('crypto');
+const fs = require('fs');
+const path = require('path');
+const { ensureOutputDir } = require('./lib/data');
+
+function parseArgs(argv) {
+  const args = { live: false, to: null, from: null };
+  for (let i = 2; i < argv.length; i++) {
+    const a = argv[i];
+    if (a === '--live') args.live = true;
+    else if (a === '--dry-run') args.live = false;
+    else if (a === '--to') args.to = argv[++i];
+    else if (a === '--from') args.from = argv[++i];
+  }
+  return args;
+}
+
+function cfg(args) {
+  return {
+    smtpHost: process.env.CANARY_SMTP_HOST || 'smtp.purelymail.com',
+    smtpPort: Number(process.env.CANARY_SMTP_PORT || 465),
+    smtpUser: process.env.CANARY_SMTP_USER || '',
+    smtpPass: process.env.CANARY_SMTP_PASS || '',
+    from: args.from || process.env.CANARY_FROM || process.env.CANARY_SMTP_USER || '',
+    to: args.to || process.env.CANARY_TO || '',
+    imapHost: process.env.CANARY_IMAP_HOST || 'imap.purelymail.com',
+    imapPort: Number(process.env.CANARY_IMAP_PORT || 993),
+    imapUser: process.env.CANARY_IMAP_USER || '',
+    imapPass: process.env.CANARY_IMAP_PASS || '',
+    timeoutMs: Number(process.env.CANARY_TIMEOUT_MS || 180000),
+  };
+}
+
+function makeToken() {
+  return `CANARY-${Date.now()}-${crypto.randomBytes(4).toString('hex')}`;
+}
+
+function logResult(entry) {
+  const outDir = ensureOutputDir();
+  const file = path.join(outDir, 'canary-log.jsonl');
+  fs.appendFileSync(file, JSON.stringify(entry) + '\n');
+  return file;
+}
+
+async function runDryRun(c, token) {
+  console.log('\n=== Deliverability Canary (DRY RUN) ===');
+  console.log('No email will be sent. No network connection will be opened.');
+  console.log('Planned send:');
+  console.log(`  from     : ${c.from || '(unset — set CANARY_FROM)'}`);
+  console.log(`  to       : ${c.to || '(unset — set CANARY_TO or pass --to)'}`);
+  console.log(`  subject  : [Deliverability Canary] ${token}`);
+  console.log(`  via SMTP : ${c.smtpHost}:${c.smtpPort}`);
+  console.log('Planned verification:');
+  console.log(`  poll IMAP: ${c.imapHost}:${c.imapPort} as ${c.imapUser || '(unset)'}`);
+  console.log(`  match    : subject contains "${token}"`);
+  console.log(`  timeout  : ${c.timeoutMs} ms`);
+  console.log('\nTo run for real: node canary.js --live  (requires CANARY_* env creds)');
+  const entry = {
+    ts: new Date().toISOString(),
+    mode: 'dry-run',
+    token,
+    from: c.from || null,
+    to: c.to || null,
+    result: 'SKIPPED',
+  };
+  const file = logResult(entry);
+  console.log(`Logged dry-run to ${file}\n`);
+  return entry;
+}
+
+async function runLive(c, token) {
+  // Lazy-require so dry-run never needs these installed.
+  let nodemailer, ImapFlow;
+  try {
+    nodemailer = require('nodemailer');
+    ({ ImapFlow } = require('imapflow'));
+  } catch (err) {
+    throw new Error(
+      'Live mode needs optional deps. Run: npm install nodemailer imapflow\n' +
+      `(${err.message})`
+    );
+  }
+  if (!c.smtpUser || !c.smtpPass || !c.from || !c.to) {
+    throw new Error(
+      'Live mode requires CANARY_SMTP_USER, CANARY_SMTP_PASS, CANARY_FROM, CANARY_TO.'
+    );
+  }
+  if (!c.imapUser || !c.imapPass) {
+    throw new Error('Live mode requires CANARY_IMAP_USER and CANARY_IMAP_PASS to verify receipt.');
+  }
+
+  console.log('\n=== Deliverability Canary (LIVE) ===');
+  const sentAt = Date.now();
+  const subject = `[Deliverability Canary] ${token}`;
+
+  // 1. Send
+  const transport = nodemailer.createTransport({
+    host: c.smtpHost,
+    port: c.smtpPort,
+    secure: c.smtpPort === 465,
+    auth: { user: c.smtpUser, pass: c.smtpPass },
+  });
+  console.log(`Sending ${c.from} -> ${c.to} ...`);
+  const info = await transport.sendMail({
+    from: c.from,
+    to: c.to,
+    subject,
+    text:
+      `Automated deliverability canary.\nToken: ${token}\n` +
+      `Sent: ${new Date(sentAt).toISOString()}\n` +
+      `If you received this, the receive+route path for ${c.to.split('@')[1]} works.`,
+  });
+  console.log(`  accepted by SMTP: ${info.messageId || '(no id)'}`);
+
+  // 2. Verify receipt by polling IMAP for the token in the subject.
+  const imap = new ImapFlow({
+    host: c.imapHost,
+    port: c.imapPort,
+    secure: true,
+    auth: { user: c.imapUser, pass: c.imapPass },
+    logger: false,
+  });
+  let received = false;
+  let receivedAt = null;
+  await imap.connect();
+  try {
+    const deadline = sentAt + c.timeoutMs;
+    while (Date.now() < deadline && !received) {
+      const lock = await imap.getMailboxLock('INBOX');
+      try {
+        for await (const msg of imap.fetch(
+          { since: new Date(sentAt - 60000) },
+          { envelope: true }
+        )) {
+          const subj = (msg.envelope && msg.envelope.subject) || '';
+          if (subj.includes(token)) {
+            received = true;
+            receivedAt = Date.now();
+            break;
+          }
+        }
+      } finally {
+        lock.release();
+      }
+      if (!received) await new Promise((r) => setTimeout(r, 10000));
+    }
+  } finally {
+    await imap.logout();
+  }
+
+  const latencyMs = receivedAt ? receivedAt - sentAt : null;
+  const result = received ? 'DELIVERED' : 'NOT_RECEIVED';
+  console.log(
+    received
+      ? `  VERIFIED: message arrived in ${(latencyMs / 1000).toFixed(1)}s`
+      : `  FAILED: message not seen within ${c.timeoutMs / 1000}s — deliverability problem`
+  );
+
+  const entry = {
+    ts: new Date().toISOString(),
+    mode: 'live',
+    token,
+    from: c.from,
+    to: c.to,
+    result,
+    latencyMs,
+  };
+  const file = logResult(entry);
+  console.log(`Logged result to ${file}\n`);
+  return entry;
+}
+
+async function main() {
+  const args = parseArgs(process.argv);
+  const c = cfg(args);
+  const token = makeToken();
+  if (args.live) {
+    const entry = await runLive(c, token);
+    if (entry.result !== 'DELIVERED') process.exitCode = 2;
+  } else {
+    await runDryRun(c, token);
+  }
+}
+
+if (require.main === module) {
+  main().catch((err) => {
+    console.error('canary.js failed:', err.message);
+    process.exit(1);
+  });
+}
+
+module.exports = { main, makeToken };
diff --git a/contact-audit.js b/contact-audit.js
new file mode 100644
index 0000000..764d1bc
--- /dev/null
+++ b/contact-audit.js
@@ -0,0 +1,275 @@
+#!/usr/bin/env node
+'use strict';
+
+/**
+ * contact-audit.js — find sister sites currently losing customer leads.
+ *
+ * Walks every directory under PROJECTS_DIR that contains a site.config.json,
+ * greps its server.js + public files for `mailto:` (and `tel:`) literals,
+ * then cross-references each contact email's domain against the Purelymail
+ * domain-health data. Any site whose contact address sits on a domain that
+ * fails MX or has no routing rule is UNDELIVERABLE — leads emailed there
+ * are silently lost.
+ *
+ * Writes output/lead-loss-report.json and prints a human summary.
+ *
+ *   node contact-audit.js
+ *
+ * Env:
+ *   PROJECTS_DIR  override the project root (default: ~/Projects)
+ */
+
+const fs = require('fs');
+const path = require('path');
+const os = require('os');
+const {
+  loadDomainSnapshot,
+  loadRoutingRules,
+  domainHealth,
+  ensureOutputDir,
+} = require('./lib/data');
+
+const PROJECTS_DIR =
+  process.env.PROJECTS_DIR || path.join(os.homedir(), 'Projects');
+
+// Files to scan inside each site for contact literals.
+const SCAN_FILES = ['server.js', 'app.js', 'index.js'];
+const SCAN_DIRS = ['public', 'views', 'src'];
+const SCAN_EXT = new Set(['.html', '.js', '.ejs', '.liquid', '.css', '.json']);
+const MAX_FILE_BYTES = 2 * 1024 * 1024;
+
+const MAILTO_RE = /mailto:([^"'`\s)<>?]+)/gi;
+const TEL_RE = /tel:([+0-9()\-.\s]{5,})/gi;
+
+function listSiteProjects() {
+  let entries;
+  try {
+    entries = fs.readdirSync(PROJECTS_DIR, { withFileTypes: true });
+  } catch (err) {
+    throw new Error(`Cannot read PROJECTS_DIR ${PROJECTS_DIR}: ${err.message}`);
+  }
+  const sites = [];
+  for (const e of entries) {
+    if (!e.isDirectory()) continue;
+    const dir = path.join(PROJECTS_DIR, e.name);
+    const cfgPath = path.join(dir, 'site.config.json');
+    if (!fs.existsSync(cfgPath)) continue;
+    let cfg = {};
+    try {
+      cfg = JSON.parse(fs.readFileSync(cfgPath, 'utf8'));
+    } catch (err) {
+      console.warn(`  warn: bad site.config.json in ${e.name}: ${err.message}`);
+    }
+    sites.push({ name: e.name, dir, config: cfg });
+  }
+  return sites.sort((a, b) => a.name.localeCompare(b.name));
+}
+
+function collectScanTargets(siteDir) {
+  const files = [];
+  for (const f of SCAN_FILES) {
+    const p = path.join(siteDir, f);
+    if (fs.existsSync(p)) files.push(p);
+  }
+  for (const d of SCAN_DIRS) {
+    const dp = path.join(siteDir, d);
+    if (!fs.existsSync(dp)) continue;
+    walk(dp, files);
+  }
+  return files;
+}
+
+function walk(dir, out, depth = 0) {
+  if (depth > 4) return;
+  let entries;
+  try {
+    entries = fs.readdirSync(dir, { withFileTypes: true });
+  } catch {
+    return;
+  }
+  for (const e of entries) {
+    if (e.name === 'node_modules' || e.name.startsWith('.')) continue;
+    const p = path.join(dir, e.name);
+    if (e.isDirectory()) {
+      walk(p, out, depth + 1);
+    } else if (SCAN_EXT.has(path.extname(e.name).toLowerCase())) {
+      out.push(p);
+    }
+  }
+}
+
+function extractContacts(files) {
+  const emails = new Set();
+  const phones = new Set();
+  for (const f of files) {
+    let text;
+    try {
+      const stat = fs.statSync(f);
+      if (stat.size > MAX_FILE_BYTES) continue;
+      text = fs.readFileSync(f, 'utf8');
+    } catch {
+      continue;
+    }
+    let m;
+    MAILTO_RE.lastIndex = 0;
+    while ((m = MAILTO_RE.exec(text))) {
+      // strip trailing punctuation / query separators just in case
+      const addr = m[1].split('?')[0].trim().toLowerCase();
+      if (addr.includes('@')) emails.add(addr);
+    }
+    TEL_RE.lastIndex = 0;
+    while ((m = TEL_RE.exec(text))) {
+      phones.add(m[1].trim());
+    }
+  }
+  return { emails: [...emails], phones: [...phones] };
+}
+
+function domainOf(email) {
+  const at = email.lastIndexOf('@');
+  return at === -1 ? '' : email.slice(at + 1).toLowerCase();
+}
+
+function main() {
+  const snapshot = loadDomainSnapshot();
+  const routing = loadRoutingRules();
+  const health = domainHealth(snapshot, routing.rules);
+  const healthByDomain = new Map(health.map((h) => [h.domain.toLowerCase(), h]));
+
+  const sites = listSiteProjects();
+  console.log(`Scanning ${sites.length} sister-site projects under ${PROJECTS_DIR}\n`);
+
+  const results = [];
+  for (const site of sites) {
+    const files = collectScanTargets(site.dir);
+    const { emails, phones } = extractContacts(files);
+
+    const contactEmails = emails.map((email) => {
+      const dom = domainOf(email);
+      const h = healthByDomain.get(dom) || null;
+      let status = 'UNKNOWN_DOMAIN'; // domain not on this Purelymail account
+      let reasons = [];
+      if (h) {
+        if (h.deliverable) {
+          status = 'DELIVERABLE';
+        } else {
+          status = 'UNDELIVERABLE';
+          if (!h.passesMx) reasons.push('domain fails MX (cannot receive email)');
+          if (!h.hasRouting)
+            reasons.push('domain has no Purelymail routing rule (mail goes nowhere)');
+        }
+      } else {
+        reasons.push('domain not found on the Purelymail account snapshot');
+      }
+      return { email, domain: dom, status, reasons, health: h };
+    });
+
+    // A site loses leads if ANY of its mailto contacts is undeliverable.
+    const undeliverableContacts = contactEmails.filter(
+      (c) => c.status === 'UNDELIVERABLE'
+    );
+    const unknownContacts = contactEmails.filter(
+      (c) => c.status === 'UNKNOWN_DOMAIN'
+    );
+    const deliverableContacts = contactEmails.filter(
+      (c) => c.status === 'DELIVERABLE'
+    );
+
+    let siteStatus;
+    if (contactEmails.length === 0) siteStatus = 'NO_CONTACT_FOUND';
+    else if (undeliverableContacts.length) siteStatus = 'LOSING_LEADS';
+    else if (deliverableContacts.length) siteStatus = 'OK';
+    else siteStatus = 'UNVERIFIED'; // only unknown-domain contacts
+
+    results.push({
+      site: site.name,
+      dir: site.dir,
+      configDomain: site.config.domain || null,
+      contactEmails,
+      phones,
+      siteStatus,
+      undeliverableContacts,
+      unknownContacts,
+    });
+  }
+
+  const losing = results.filter((r) => r.siteStatus === 'LOSING_LEADS');
+  const noContact = results.filter((r) => r.siteStatus === 'NO_CONTACT_FOUND');
+  const unverified = results.filter((r) => r.siteStatus === 'UNVERIFIED');
+  const ok = results.filter((r) => r.siteStatus === 'OK');
+
+  const report = {
+    generatedAt: new Date().toISOString(),
+    snapshotCapturedAt: snapshot.capturedAt || null,
+    projectsDir: PROJECTS_DIR,
+    totals: {
+      sitesScanned: results.length,
+      losingLeads: losing.length,
+      ok: ok.length,
+      noContactFound: noContact.length,
+      unverified: unverified.length,
+    },
+    // The headline list: site -> contact address -> why it's undeliverable.
+    losingLeads: losing.map((r) => ({
+      site: r.site,
+      configDomain: r.configDomain,
+      undeliverable: r.undeliverableContacts.map((c) => ({
+        contact: c.email,
+        domain: c.domain,
+        why: c.reasons.join('; '),
+      })),
+    })),
+    sites: results,
+  };
+
+  const outDir = ensureOutputDir();
+  const outFile = path.join(outDir, 'lead-loss-report.json');
+  fs.writeFileSync(outFile, JSON.stringify(report, null, 2));
+
+  // ---- human summary ----
+  const t = report.totals;
+  console.log('=== Sister-Site Lead-Loss Audit ===');
+  console.log(`sites scanned     : ${t.sitesScanned}`);
+  console.log(`LOSING LEADS      : ${t.losingLeads}`);
+  console.log(`OK (deliverable)  : ${t.ok}`);
+  console.log(`no contact found  : ${t.noContactFound}`);
+  console.log(`unverified        : ${t.unverified}  (contact domain not on Purelymail)`);
+
+  if (losing.length) {
+    console.log('\n--- SITES CURRENTLY LOSING LEADS ---');
+    for (const r of report.losingLeads) {
+      for (const c of r.undeliverable) {
+        console.log(`  ${r.site}`);
+        console.log(`     contact : ${c.contact}`);
+        console.log(`     reason  : ${c.why}`);
+      }
+    }
+  } else {
+    console.log('\nNo sites losing leads via undeliverable contact domains.');
+  }
+
+  if (unverified.length) {
+    console.log('\n--- UNVERIFIED (contact domain not on Purelymail snapshot) ---');
+    for (const r of unverified) {
+      const addrs = r.unknownContacts.map((c) => c.email).join(', ');
+      console.log(`  ${r.site}: ${addrs}`);
+    }
+  }
+  if (noContact.length) {
+    console.log('\n--- NO mailto: contact found in source ---');
+    noContact.forEach((r) => console.log(`  ${r.site}`));
+  }
+
+  console.log(`\nWrote ${outFile}\n`);
+}
+
+if (require.main === module) {
+  try {
+    main();
+  } catch (err) {
+    console.error('contact-audit.js failed:', err.message);
+    process.exit(1);
+  }
+}
+
+module.exports = { main };
diff --git a/data/purelymail-routing.json b/data/purelymail-routing.json
new file mode 100644
index 0000000..e1b0996
--- /dev/null
+++ b/data/purelymail-routing.json
@@ -0,0 +1,2097 @@
+{
+  "capturedAt": "2026-05-18",
+  "source": "mcp__purelymail__purelymail_list_routing_rules",
+  "note": "MCP returns all routing rules account-wide regardless of domainName arg",
+  "rules": [
+    {
+      "id": 84691,
+      "domainName": "1800wallpapers.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+1800wallpapers-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84692,
+      "domainName": "1800swallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+1800swallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84693,
+      "domainName": "1800wallcoverings.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+1800wallcoverings-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84694,
+      "domainName": "1890swallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+1890swallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84695,
+      "domainName": "1900swallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+1900swallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84696,
+      "domainName": "1920swallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+1920swallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84697,
+      "domainName": "1930swallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+1930swallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84698,
+      "domainName": "1940swallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+1940swallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84699,
+      "domainName": "1950swallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+1950swallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84700,
+      "domainName": "1960swallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+1960swallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84701,
+      "domainName": "1970swallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+1970swallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84702,
+      "domainName": "1980swallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+1980swallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84703,
+      "domainName": "67calc.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+67calc-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84704,
+      "domainName": "800wallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+800wallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84705,
+      "domainName": "aaatreetrimming.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+aaatreetrimming-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84706,
+      "domainName": "agedwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+agedwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84707,
+      "domainName": "agentabrams.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+agentabrams-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84708,
+      "domainName": "apartmentwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+apartmentwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84709,
+      "domainName": "architecturalwallcoverings.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+architecturalwallcoverings-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84710,
+      "domainName": "askgoodquestions.ai",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+askgoodquestions-ai@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84711,
+      "domainName": "asknonna.ai",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+asknonna-ai@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84712,
+      "domainName": "asseeninhotels.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+asseeninhotels-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84713,
+      "domainName": "asseeninla.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+asseeninla-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84714,
+      "domainName": "asseeninmovies.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+asseeninmovies-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84715,
+      "domainName": "asseeninshowrooms.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+asseeninshowrooms-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84716,
+      "domainName": "barwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+barwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84717,
+      "domainName": "bestwallpaperplace.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+bestwallpaperplace-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84718,
+      "domainName": "beverlyandhills.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+beverlyandhills-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84719,
+      "domainName": "beverlyhillspaints.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+beverlyhillspaints-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84720,
+      "domainName": "blankstocklining.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+blankstocklining-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84721,
+      "domainName": "bleachfriendly.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+bleachfriendly-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84722,
+      "domainName": "blockprintedwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+blockprintedwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84723,
+      "domainName": "borninbh.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+borninbh-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84724,
+      "domainName": "borrowerbills.org",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+borrowerbills-org@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84725,
+      "domainName": "brazilliancewallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+brazilliancewallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84726,
+      "domainName": "bubbeleh.ai",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+bubbeleh-ai@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84727,
+      "domainName": "bubbie.ai",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+bubbie-ai@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84728,
+      "domainName": "carmelpaints.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+carmelpaints-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84729,
+      "domainName": "carmelriverwater.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+carmelriverwater-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84730,
+      "domainName": "carmelvalleywater.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+carmelvalleywater-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84731,
+      "domainName": "carmelwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+carmelwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84732,
+      "domainName": "carmelwallpapers.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+carmelwallpapers-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84733,
+      "domainName": "cfafabrics.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+cfafabrics-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84734,
+      "domainName": "classawallcovering.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+classawallcovering-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84735,
+      "domainName": "commercialsalesreps.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+commercialsalesreps-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84736,
+      "domainName": "commercialwallcovering.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+commercialwallcovering-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84737,
+      "domainName": "commercialwalls.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+commercialwalls-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84738,
+      "domainName": "contractwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+contractwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84739,
+      "domainName": "customdigitalmurals.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+customdigitalmurals-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84740,
+      "domainName": "customdigitalwalls.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+customdigitalwalls-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84741,
+      "domainName": "designerlaboratory.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+designerlaboratory-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84742,
+      "domainName": "designermagnetics.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+designermagnetics-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84743,
+      "domainName": "designersalesreps.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+designersalesreps-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84744,
+      "domainName": "designerschat.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+designerschat-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84745,
+      "domainName": "designerswallcovering.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+designerswallcovering-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84746,
+      "domainName": "designerswallcoverings.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+designerswallcoverings-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84747,
+      "domainName": "designerswallpapers.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+designerswallpapers-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84748,
+      "domainName": "designerwallcover.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+designerwallcover-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84749,
+      "domainName": "designerwallcovering.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+designerwallcovering-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84750,
+      "domainName": "designerwallcoverings.ai",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+designerwallcoverings-ai@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84751,
+      "domainName": "designerwallpaints.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+designerwallpaints-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84752,
+      "domainName": "designerwalltiles.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+designerwalltiles-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84753,
+      "domainName": "designtradereps.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+designtradereps-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84754,
+      "domainName": "designtradesalesreps.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+designtradesalesreps-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84755,
+      "domainName": "designwallcoverings.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+designwallcoverings-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84756,
+      "domainName": "dohngia.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+dohngia-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84757,
+      "domainName": "dsgn.tv",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+dsgn-tv@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84758,
+      "domainName": "dwlosangeles.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+dwlosangeles-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84759,
+      "domainName": "edgrants.org",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+edgrants-org@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84760,
+      "domainName": "embroideredwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+embroideredwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84761,
+      "domainName": "etciemurals.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+etciemurals-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84762,
+      "domainName": "fabricfriday.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+fabricfriday-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84763,
+      "domainName": "fabricfridays.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+fabricfridays-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84764,
+      "domainName": "fabricsondemand.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+fabricsondemand-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84765,
+      "domainName": "fabricwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+fabricwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84766,
+      "domainName": "fauxnewslive.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+fauxnewslive-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84767,
+      "domainName": "fentucci.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+fentucci-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84768,
+      "domainName": "ffepurchasing.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+ffepurchasing-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84769,
+      "domainName": "filthyrichliving.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+filthyrichliving-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84770,
+      "domainName": "fireratedwallcovering.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+fireratedwallcovering-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84771,
+      "domainName": "flocked.org",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+flocked-org@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84772,
+      "domainName": "forgivestudentloandebt.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+forgivestudentloandebt-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84773,
+      "domainName": "forgivestudentloandebt.org",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+forgivestudentloandebt-org@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84774,
+      "domainName": "freethedegree.org",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+freethedegree-org@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84775,
+      "domainName": "glitterwalls.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+glitterwalls-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84776,
+      "domainName": "goldleafwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+goldleafwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84777,
+      "domainName": "grassclothwallcovering.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+grassclothwallcovering-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84778,
+      "domainName": "greendomainbrokers.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+greendomainbrokers-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84779,
+      "domainName": "greenwallcoverings.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+greenwallcoverings-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84780,
+      "domainName": "handcraftedwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+handcraftedwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84781,
+      "domainName": "handmadewallcovering.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+handmadewallcovering-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84782,
+      "domainName": "handmadewallpapers.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+handmadewallpapers-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84783,
+      "domainName": "handscreenedwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+handscreenedwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84784,
+      "domainName": "healthcarewallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+healthcarewallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84785,
+      "domainName": "hollywoodwallcovering.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+hollywoodwallcovering-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84786,
+      "domainName": "hollywoodwallcoverings.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+hollywoodwallcoverings-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84787,
+      "domainName": "hospitalitymurals.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+hospitalitymurals-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84788,
+      "domainName": "hospitalitysalesagency.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+hospitalitysalesagency-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84789,
+      "domainName": "hospitalitysalesagents.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+hospitalitysalesagents-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84790,
+      "domainName": "hospitalitysalesreps.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+hospitalitysalesreps-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84791,
+      "domainName": "hospitalitywallcoverings.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+hospitalitywallcoverings-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84792,
+      "domainName": "hospitalitywallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+hospitalitywallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84793,
+      "domainName": "hotelwallcoverings.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+hotelwallcoverings-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84794,
+      "domainName": "iddaily.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+iddaily-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84795,
+      "domainName": "inflationfears.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+inflationfears-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84796,
+      "domainName": "interiordesignreps.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+interiordesignreps-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84797,
+      "domainName": "iwascute.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+iwascute-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84798,
+      "domainName": "joshdultz.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+joshdultz-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84799,
+      "domainName": "jutewallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+jutewallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84800,
+      "domainName": "lasjardineras.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+lasjardineras-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84801,
+      "domainName": "latke.ai",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+latke-ai@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84802,
+      "domainName": "linenwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+linenwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84803,
+      "domainName": "localsalesreps.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+localsalesreps-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84804,
+      "domainName": "losangelesfabrics.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+losangelesfabrics-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84805,
+      "domainName": "losgardeners.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+losgardeners-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84806,
+      "domainName": "madagascarwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+madagascarwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84807,
+      "domainName": "malibuwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+malibuwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84808,
+      "domainName": "metallicwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+metallicwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84809,
+      "domainName": "micawallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+micawallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84810,
+      "domainName": "montereywallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+montereywallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84811,
+      "domainName": "muralsondemand.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+muralsondemand-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84812,
+      "domainName": "museumwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+museumwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84813,
+      "domainName": "mylarwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+mylarwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84814,
+      "domainName": "nataliaabrams.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+nataliaabrams-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84815,
+      "domainName": "nationalpaperhangers.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+nationalpaperhangers-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84816,
+      "domainName": "naturalwallcoverings.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+naturalwallcoverings-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84817,
+      "domainName": "naturalwalltextures.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+naturalwalltextures-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84818,
+      "domainName": "pastelwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+pastelwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84819,
+      "domainName": "patterndesignlab.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+patterndesignlab-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84820,
+      "domainName": "philliperomano.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+philliperomano-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84821,
+      "domainName": "printmurals.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+printmurals-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84822,
+      "domainName": "protestdaily.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+protestdaily-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84823,
+      "domainName": "raffiawallcoverings.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+raffiawallcoverings-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84824,
+      "domainName": "raffiawalls.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+raffiawalls-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84825,
+      "domainName": "recycledwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+recycledwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84826,
+      "domainName": "remotecarenetwork.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+remotecarenetwork-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84827,
+      "domainName": "restaurantfabrics.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+restaurantfabrics-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84828,
+      "domainName": "restorationwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+restorationwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84829,
+      "domainName": "righttocollege.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+righttocollege-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84830,
+      "domainName": "saloonwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+saloonwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84831,
+      "domainName": "sheltermagazines.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+sheltermagazines-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84832,
+      "domainName": "silkwallcoverings.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+silkwallcoverings-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84833,
+      "domainName": "silverleafwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+silverleafwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84834,
+      "domainName": "specifywallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+specifywallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84835,
+      "domainName": "steveabramsdesigns.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+steveabramsdesigns-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84836,
+      "domainName": "stringwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+stringwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84837,
+      "domainName": "studentdebtattorney.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+studentdebtattorney-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84838,
+      "domainName": "studentdebtcrisis.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+studentdebtcrisis-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84839,
+      "domainName": "studentdebtcrisiscenter.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+studentdebtcrisiscenter-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84840,
+      "domainName": "studentdebtcrisiscenter.org",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+studentdebtcrisiscenter-org@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84841,
+      "domainName": "studentdebtlawyers.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+studentdebtlawyers-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84842,
+      "domainName": "studentloanvoter.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+studentloanvoter-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84843,
+      "domainName": "studentstrikes.org",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+studentstrikes-org@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84844,
+      "domainName": "suedewallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+suedewallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84845,
+      "domainName": "textiletuesday.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+textiletuesday-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84846,
+      "domainName": "textilewallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+textilewallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84847,
+      "domainName": "theatrewallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+theatrewallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84848,
+      "domainName": "thecannabisnews.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+thecannabisnews-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84849,
+      "domainName": "tweetdick.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+tweetdick-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84850,
+      "domainName": "vinylwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+vinylwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84851,
+      "domainName": "wallco.ai",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallco-ai@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84852,
+      "domainName": "wallpapercanada.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallpapercanada-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84853,
+      "domainName": "zayde.ai",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+zayde-ai@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84854,
+      "domainName": "withoutstudentdebt.org",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+withoutstudentdebt-org@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84855,
+      "domainName": "withoutstudentdebt.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+withoutstudentdebt-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84856,
+      "domainName": "wc01wallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wc01wallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84857,
+      "domainName": "wc01wallcoverings.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wc01wallcoverings-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84858,
+      "domainName": "wc-01.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wc-01-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84859,
+      "domainName": "wallsondemand.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallsondemand-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84860,
+      "domainName": "wallsandfabrics.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallsandfabrics-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84861,
+      "domainName": "wallpaperweekly.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallpaperweekly-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84862,
+      "domainName": "wallpaperwednesday.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallpaperwednesday-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84863,
+      "domainName": "wallpaperpurchasing.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallpaperpurchasing-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84864,
+      "domainName": "wallpaperondemand.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallpaperondemand-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84865,
+      "domainName": "wallpapernyc.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallpapernyc-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84866,
+      "domainName": "wallpaperny.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallpaperny-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84867,
+      "domainName": "wallpaperhistory.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallpaperhistory-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84868,
+      "domainName": "wallpaperglossary.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallpaperglossary-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84869,
+      "domainName": "wallpaperfromthe80s.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallpaperfromthe80s-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84870,
+      "domainName": "wallpaperexports.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallpaperexports-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84871,
+      "domainName": "wallpaperdictionary.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallpaperdictionary-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84872,
+      "domainName": "wallpaperdefinitions.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallpaperdefinitions-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84873,
+      "domainName": "wallcovering.net",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallcovering-net@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84874,
+      "domainName": "vintagebh.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+vintagebh-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84875,
+      "domainName": "upperonepercent.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+upperonepercent-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84876,
+      "domainName": "unitedstateswallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+unitedstateswallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84877,
+      "domainName": "treetrimmingguys.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+treetrimmingguys-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84878,
+      "domainName": "traditionalwhimsy.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+traditionalwhimsy-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84879,
+      "domainName": "tradeonlytextiles.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+tradeonlytextiles-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84880,
+      "domainName": "thesetdecorator.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+thesetdecorator-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84881,
+      "domainName": "thesalesreps.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+thesalesreps-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84882,
+      "domainName": "thehotelwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+thehotelwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84883,
+      "domainName": "thedesignerlibrary.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+thedesignerlibrary-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84884,
+      "domainName": "thedesignerlaboratory.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+thedesignerlaboratory-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84885,
+      "domainName": "studentdebtlawyers.org",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+studentdebtlawyers-org@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84886,
+      "domainName": "studentdebthotline.org",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+studentdebthotline-org@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84887,
+      "domainName": "stevenabramsphotography.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+stevenabramsphotography-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84888,
+      "domainName": "silkwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+silkwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84889,
+      "domainName": "selfadhesivewallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+selfadhesivewallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84890,
+      "domainName": "screenprintedwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+screenprintedwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84891,
+      "domainName": "roomsettings.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+roomsettings-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84892,
+      "domainName": "righttocollege.org",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+righttocollege-org@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84893,
+      "domainName": "retrowalls.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+retrowalls-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84894,
+      "domainName": "restaurantwallpaper.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+restaurantwallpaper-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84895,
+      "domainName": "restaurantmurals.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+restaurantmurals-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84896,
+      "domainName": "cypresawards.org",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+cypresawards-org@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84897,
+      "domainName": "customdigitalwallcoverings.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+customdigitalwallcoverings-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 84898,
+      "domainName": "corkwallcovering.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+corkwallcovering-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    },
+    {
+      "id": 86071,
+      "domainName": "wallpapersback.com",
+      "prefix": true,
+      "matchUser": "",
+      "targetAddresses": [
+        "steve+wallpapersback-com@designerwallcoverings.com"
+      ],
+      "catchall": true
+    }
+  ]
+}
\ No newline at end of file
diff --git a/data/purelymail-snapshot.json b/data/purelymail-snapshot.json
new file mode 100644
index 0000000..cd54045
--- /dev/null
+++ b/data/purelymail-snapshot.json
@@ -0,0 +1,2538 @@
+{
+  "capturedAt": "2026-05-18",
+  "source": "mcp__purelymail__purelymail_list_domains",
+  "domains": [
+    {
+      "name": "venturaclaw.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": true,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "venturaclaw.agentabrams.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": true,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallpapersback.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": true,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "1800swallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "1800wallcoverings.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "1800wallpapers.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "1890swallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "1900swallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "1920swallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "1930swallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "1940swallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "1950swallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "1960swallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "1970swallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "1980swallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "67calc.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "800wallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "aaatreetrimming.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "agedwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "agentabrams.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "apartmentwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "architecturalwallcoverings.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "askgoodquestions.ai",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "asknonna.ai",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "asseeninhotels.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "asseeninla.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "asseeninmovies.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "asseeninshowrooms.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "barwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "bestwallpaperplace.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "beverlyandhills.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "beverlyhillspaints.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "blankstocklining.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "bleachfriendly.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "blockprintedwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "borninbh.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "borrowerbills.org",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "brazilliancewallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "bubbeleh.ai",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "bubbie.ai",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "carmelpaints.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "carmelriverwater.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "carmelvalleywater.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "carmelwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "carmelwallpapers.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "cfafabrics.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "classawallcovering.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "commercialsalesreps.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "commercialwallcovering.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "commercialwalls.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "contractwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "customdigitalmurals.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "customdigitalwalls.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "designerlaboratory.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "designermagnetics.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "designersalesreps.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "designerschat.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "designerswallcovering.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "designerswallcoverings.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "designerswallpapers.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "designerwallcover.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "designerwallcovering.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "designerwallcoverings.ai",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "designerwallpaints.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "designerwalltiles.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "designtradereps.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "designtradesalesreps.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "designwallcoverings.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "dohngia.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "dsgn.tv",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "dwlosangeles.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "edgrants.org",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "embroideredwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "etciemurals.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "fabricfriday.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "fabricfridays.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "fabricsondemand.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "fabricwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "fauxnewslive.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "fentucci.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "ffepurchasing.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "filthyrichliving.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "fireratedwallcovering.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "flocked.org",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "forgivestudentloandebt.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "forgivestudentloandebt.org",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "freethedegree.org",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "glitterwalls.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "goldleafwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "grassclothwallcovering.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "greendomainbrokers.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "greenwallcoverings.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "handcraftedwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "handmadewallcovering.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "handmadewallpapers.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "handscreenedwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "healthcarewallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "hollywoodwallcovering.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "hollywoodwallcoverings.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "hospitalitymurals.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "hospitalitysalesagency.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "hospitalitysalesagents.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "hospitalitysalesreps.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "hospitalitywallcoverings.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "hospitalitywallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "hotelwallcoverings.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "iddaily.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "inflationfears.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "interiordesignreps.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "iwascute.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "joshdultz.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "jutewallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "lasjardineras.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "latke.ai",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "linenwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "localsalesreps.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "losangelesfabrics.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "losgardeners.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "madagascarwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "malibuwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "metallicwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "micawallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "montereywallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "muralsondemand.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "museumwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "mylarwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "nataliaabrams.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "nationalpaperhangers.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "naturalwallcoverings.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "naturalwalltextures.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "pastelwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "patterndesignlab.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "philliperomano.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "printmurals.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "protestdaily.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "raffiawallcoverings.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "raffiawalls.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "recycledwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "remotecarenetwork.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "restaurantfabrics.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "restorationwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "righttocollege.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "saloonwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "sheltermagazines.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "silkwallcoverings.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "silverleafwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "specifywallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "steveabramsdesigns.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "stringwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "studentdebtattorney.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "studentdebtcrisis.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "studentdebtcrisiscenter.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "studentdebtcrisiscenter.org",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "studentdebtlawyers.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "studentloanvoter.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "studentstrikes.org",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "suedewallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "textiletuesday.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "textilewallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "theatrewallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "thecannabisnews.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "tweetdick.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "vinylwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallco.ai",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallpapercanada.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "zayde.ai",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "withoutstudentdebt.org",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "withoutstudentdebt.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wc01wallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wc01wallcoverings.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wc-01.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallsondemand.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallsandfabrics.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallpaperweekly.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallpaperwednesday.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallpaperpurchasing.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallpaperondemand.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallpapernyc.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallpaperny.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallpaperhistory.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallpaperglossary.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallpaperfromthe80s.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallpaperexports.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallpaperdictionary.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallpaperdefinitions.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "wallcovering.net",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "vintagebh.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "upperonepercent.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "unitedstateswallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "treetrimmingguys.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "traditionalwhimsy.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "tradeonlytextiles.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "thesetdecorator.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "thesalesreps.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "thehotelwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "thedesignerlibrary.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "thedesignerlaboratory.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "studentdebtlawyers.org",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "studentdebthotline.org",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "stevenabramsphotography.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "silkwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "selfadhesivewallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "screenprintedwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "roomsettings.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "righttocollege.org",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "retrowalls.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "restaurantwallpaper.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "restaurantmurals.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "cypresawards.org",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "customdigitalwallcoverings.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": false,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    },
+    {
+      "name": "corkwallcovering.com",
+      "allowAccountReset": true,
+      "symbolicSubaddressing": false,
+      "isShared": false,
+      "dnsSummary": {
+        "passesMx": true,
+        "passesSpf": true,
+        "passesDkim": false,
+        "passesDmarc": false
+      }
+    }
+  ]
+}
\ No newline at end of file
diff --git a/lib/data.js b/lib/data.js
new file mode 100644
index 0000000..d18a82b
--- /dev/null
+++ b/lib/data.js
@@ -0,0 +1,111 @@
+'use strict';
+
+/**
+ * Shared data loaders for the email-deliverability-agent.
+ *
+ * The Purelymail MCP tools cannot be called directly from a plain Node
+ * script, so the agent reads two fixture files captured from the MCP:
+ *
+ *   data/purelymail-snapshot.json  <- mcp__purelymail__purelymail_list_domains
+ *   data/purelymail-routing.json   <- mcp__purelymail__purelymail_list_routing_rules
+ *
+ * To refresh them, re-run those MCP tools and overwrite the JSON files
+ * (see README "Refreshing the snapshot"). Each fixture records capturedAt
+ * so audit.js can warn when the data is stale.
+ */
+
+const fs = require('fs');
+const path = require('path');
+
+const ROOT = path.resolve(__dirname, '..');
+const DATA_DIR = path.join(ROOT, 'data');
+const OUTPUT_DIR = path.join(ROOT, 'output');
+
+function readJson(file) {
+  const full = path.join(DATA_DIR, file);
+  if (!fs.existsSync(full)) {
+    throw new Error(
+      `Missing fixture: ${full}\n` +
+      `Re-run the Purelymail MCP tools and save the output here. See README.`
+    );
+  }
+  return JSON.parse(fs.readFileSync(full, 'utf8'));
+}
+
+/** Returns { capturedAt, domains: [{ name, dnsSummary: {passesMx,...} }] } */
+function loadDomainSnapshot() {
+  const snap = readJson('purelymail-snapshot.json');
+  if (!Array.isArray(snap.domains)) {
+    throw new Error('purelymail-snapshot.json: expected a "domains" array');
+  }
+  return snap;
+}
+
+/** Returns { capturedAt, rules: [{ domainName, matchUser, catchall, targetAddresses }] } */
+function loadRoutingRules() {
+  const r = readJson('purelymail-routing.json');
+  if (!Array.isArray(r.rules)) {
+    throw new Error('purelymail-routing.json: expected a "rules" array');
+  }
+  return r;
+}
+
+/** Index routing rules by domain -> array of rules. */
+function routingByDomain(rules) {
+  const map = new Map();
+  for (const rule of rules) {
+    const d = (rule.domainName || '').toLowerCase();
+    if (!map.has(d)) map.set(d, []);
+    map.get(d).push(rule);
+  }
+  return map;
+}
+
+/**
+ * Per-domain health verdict from the snapshot + routing data.
+ * A domain is "deliverable" only when MX passes AND at least one routing
+ * rule exists to actually deliver the mail somewhere.
+ */
+function domainHealth(snapshot, rules) {
+  const byDomain = routingByDomain(rules);
+  return snapshot.domains.map((d) => {
+    const dns = d.dnsSummary || {};
+    const domainRules = byDomain.get((d.name || '').toLowerCase()) || [];
+    const hasRouting = domainRules.length > 0;
+    const passesMx = dns.passesMx === true;
+    const issues = [];
+    if (!passesMx) issues.push('NO_MX');
+    if (!hasRouting) issues.push('NO_ROUTING');
+    if (dns.passesDkim !== true) issues.push('NO_DKIM');
+    if (dns.passesDmarc !== true) issues.push('NO_DMARC');
+    if (dns.passesSpf !== true) issues.push('NO_SPF');
+    return {
+      domain: d.name,
+      passesMx,
+      passesSpf: dns.passesSpf === true,
+      passesDkim: dns.passesDkim === true,
+      passesDmarc: dns.passesDmarc === true,
+      hasRouting,
+      routingRuleCount: domainRules.length,
+      // The hard gate: can a lead emailed here actually be received & routed?
+      deliverable: passesMx && hasRouting,
+      issues,
+    };
+  });
+}
+
+function ensureOutputDir() {
+  if (!fs.existsSync(OUTPUT_DIR)) fs.mkdirSync(OUTPUT_DIR, { recursive: true });
+  return OUTPUT_DIR;
+}
+
+module.exports = {
+  ROOT,
+  DATA_DIR,
+  OUTPUT_DIR,
+  loadDomainSnapshot,
+  loadRoutingRules,
+  routingByDomain,
+  domainHealth,
+  ensureOutputDir,
+};
diff --git a/output/domain-health.json b/output/domain-health.json
new file mode 100644
index 0000000..cd41b62
--- /dev/null
+++ b/output/domain-health.json
@@ -0,0 +1,4097 @@
+{
+  "generatedAt": "2026-05-18T17:19:24.062Z",
+  "snapshotCapturedAt": "2026-05-18",
+  "routingCapturedAt": "2026-05-18",
+  "totals": {
+    "domains": 211,
+    "failMx": 110,
+    "failDkim": 211,
+    "failDmarc": 211,
+    "failSpf": 0,
+    "noRouting": 2,
+    "undeliverable": 112,
+    "fullyHealthy": 0
+  },
+  "failMx": [
+    "1800swallpaper.com",
+    "1890swallpaper.com",
+    "1920swallpaper.com",
+    "1930swallpaper.com",
+    "1940swallpaper.com",
+    "1950swallpaper.com",
+    "1960swallpaper.com",
+    "1970swallpaper.com",
+    "agedwallpaper.com",
+    "apartmentwallpaper.com",
+    "asseeninhotels.com",
+    "asseeninshowrooms.com",
+    "barwallpaper.com",
+    "beverlyandhills.com",
+    "blankstocklining.com",
+    "blockprintedwallpaper.com",
+    "borrowerbills.org",
+    "brazilliancewallpaper.com",
+    "cfafabrics.com",
+    "classawallcovering.com",
+    "commercialwallcovering.com",
+    "commercialwalls.com",
+    "contractwallpaper.com",
+    "customdigitalmurals.com",
+    "customdigitalwalls.com",
+    "designerlaboratory.com",
+    "designermagnetics.com",
+    "designerschat.com",
+    "designerswallcovering.com",
+    "designerswallcoverings.com",
+    "designerswallpapers.com",
+    "designerwallcovering.com",
+    "designwallcoverings.com",
+    "dwlosangeles.com",
+    "edgrants.org",
+    "embroideredwallpaper.com",
+    "fabricsondemand.com",
+    "fabricwallpaper.com",
+    "ffepurchasing.com",
+    "filthyrichliving.com",
+    "fireratedwallcovering.com",
+    "flocked.org",
+    "glitterwalls.com",
+    "goldleafwallpaper.com",
+    "greendomainbrokers.com",
+    "greenwallcoverings.com",
+    "handcraftedwallpaper.com",
+    "handmadewallcovering.com",
+    "handmadewallpapers.com",
+    "handscreenedwallpaper.com",
+    "healthcarewallpaper.com",
+    "hollywoodwallcovering.com",
+    "hospitalitywallcoverings.com",
+    "inflationfears.com",
+    "joshdultz.com",
+    "jutewallpaper.com",
+    "linenwallpaper.com",
+    "losangelesfabrics.com",
+    "madagascarwallpaper.com",
+    "malibuwallpaper.com",
+    "metallicwallpaper.com",
+    "micawallpaper.com",
+    "muralsondemand.com",
+    "museumwallpaper.com",
+    "mylarwallpaper.com",
+    "naturalwallcoverings.com",
+    "naturalwalltextures.com",
+    "patterndesignlab.com",
+    "philliperomano.com",
+    "printmurals.com",
+    "protestdaily.com",
+    "raffiawallcoverings.com",
+    "raffiawalls.com",
+    "recycledwallpaper.com",
+    "restaurantfabrics.com",
+    "saloonwallpaper.com",
+    "sheltermagazines.com",
+    "silkwallcoverings.com",
+    "specifywallpaper.com",
+    "stringwallpaper.com",
+    "studentdebtattorney.com",
+    "studentdebtcrisis.com",
+    "studentdebtlawyers.com",
+    "suedewallpaper.com",
+    "textilewallpaper.com",
+    "thecannabisnews.com",
+    "vinylwallpaper.com",
+    "wallco.ai",
+    "wallpaperweekly.com",
+    "wallpaperondemand.com",
+    "wallpapernyc.com",
+    "wallpaperny.com",
+    "wallpaperhistory.com",
+    "wallpaperfromthe80s.com",
+    "upperonepercent.com",
+    "unitedstateswallpaper.com",
+    "traditionalwhimsy.com",
+    "tradeonlytextiles.com",
+    "thesetdecorator.com",
+    "thedesignerlibrary.com",
+    "thedesignerlaboratory.com",
+    "studentdebtlawyers.org",
+    "studentdebthotline.org",
+    "silkwallpaper.com",
+    "selfadhesivewallpaper.com",
+    "screenprintedwallpaper.com",
+    "roomsettings.com",
+    "retrowalls.com",
+    "restaurantwallpaper.com",
+    "customdigitalwallcoverings.com"
+  ],
+  "noRouting": [
+    "venturaclaw.com",
+    "venturaclaw.agentabrams.com"
+  ],
+  "undeliverable": [
+    {
+      "domain": "venturaclaw.com",
+      "issues": [
+        "NO_ROUTING",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "venturaclaw.agentabrams.com",
+      "issues": [
+        "NO_ROUTING",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1800swallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1890swallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1920swallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1930swallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1940swallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1950swallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1960swallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1970swallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "agedwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "apartmentwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "asseeninhotels.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "asseeninshowrooms.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "barwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "beverlyandhills.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "blankstocklining.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "blockprintedwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "borrowerbills.org",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "brazilliancewallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "cfafabrics.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "classawallcovering.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "commercialwallcovering.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "commercialwalls.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "contractwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "customdigitalmurals.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "customdigitalwalls.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designerlaboratory.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designermagnetics.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designerschat.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designerswallcovering.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designerswallcoverings.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designerswallpapers.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designerwallcovering.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designwallcoverings.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "dwlosangeles.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "edgrants.org",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "embroideredwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "fabricsondemand.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "fabricwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "ffepurchasing.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "filthyrichliving.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "fireratedwallcovering.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "flocked.org",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "glitterwalls.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "goldleafwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "greendomainbrokers.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "greenwallcoverings.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "handcraftedwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "handmadewallcovering.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "handmadewallpapers.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "handscreenedwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "healthcarewallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "hollywoodwallcovering.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "hospitalitywallcoverings.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "inflationfears.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "joshdultz.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "jutewallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "linenwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "losangelesfabrics.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "madagascarwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "malibuwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "metallicwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "micawallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "muralsondemand.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "museumwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "mylarwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "naturalwallcoverings.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "naturalwalltextures.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "patterndesignlab.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "philliperomano.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "printmurals.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "protestdaily.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "raffiawallcoverings.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "raffiawalls.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "recycledwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "restaurantfabrics.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "saloonwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "sheltermagazines.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "silkwallcoverings.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "specifywallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "stringwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "studentdebtattorney.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "studentdebtcrisis.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "studentdebtlawyers.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "suedewallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "textilewallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "thecannabisnews.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "vinylwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallco.ai",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpaperweekly.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpaperondemand.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpapernyc.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpaperny.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpaperhistory.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpaperfromthe80s.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "upperonepercent.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "unitedstateswallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "traditionalwhimsy.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "tradeonlytextiles.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "thesetdecorator.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "thedesignerlibrary.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "thedesignerlaboratory.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "studentdebtlawyers.org",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "studentdebthotline.org",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "silkwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "selfadhesivewallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "screenprintedwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "roomsettings.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "retrowalls.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "restaurantwallpaper.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "customdigitalwallcoverings.com",
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    }
+  ],
+  "domains": [
+    {
+      "domain": "venturaclaw.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": false,
+      "routingRuleCount": 0,
+      "deliverable": false,
+      "issues": [
+        "NO_ROUTING",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "venturaclaw.agentabrams.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": false,
+      "routingRuleCount": 0,
+      "deliverable": false,
+      "issues": [
+        "NO_ROUTING",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpapersback.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1800swallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1800wallcoverings.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1800wallpapers.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1890swallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1900swallpaper.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1920swallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1930swallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1940swallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1950swallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1960swallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1970swallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "1980swallpaper.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "67calc.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "800wallpaper.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "aaatreetrimming.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "agedwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "agentabrams.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "apartmentwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "architecturalwallcoverings.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "askgoodquestions.ai",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "asknonna.ai",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "asseeninhotels.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "asseeninla.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "asseeninmovies.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "asseeninshowrooms.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "barwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "bestwallpaperplace.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "beverlyandhills.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "beverlyhillspaints.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "blankstocklining.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "bleachfriendly.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "blockprintedwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "borninbh.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "borrowerbills.org",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "brazilliancewallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "bubbeleh.ai",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "bubbie.ai",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "carmelpaints.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "carmelriverwater.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "carmelvalleywater.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "carmelwallpaper.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "carmelwallpapers.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "cfafabrics.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "classawallcovering.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "commercialsalesreps.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "commercialwallcovering.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "commercialwalls.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "contractwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "customdigitalmurals.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "customdigitalwalls.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designerlaboratory.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designermagnetics.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designersalesreps.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designerschat.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designerswallcovering.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designerswallcoverings.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designerswallpapers.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designerwallcover.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designerwallcovering.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designerwallcoverings.ai",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designerwallpaints.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designerwalltiles.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designtradereps.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designtradesalesreps.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "designwallcoverings.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "dohngia.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "dsgn.tv",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "dwlosangeles.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "edgrants.org",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "embroideredwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "etciemurals.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "fabricfriday.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "fabricfridays.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "fabricsondemand.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "fabricwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "fauxnewslive.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "fentucci.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "ffepurchasing.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "filthyrichliving.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "fireratedwallcovering.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "flocked.org",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "forgivestudentloandebt.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "forgivestudentloandebt.org",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "freethedegree.org",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "glitterwalls.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "goldleafwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "grassclothwallcovering.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "greendomainbrokers.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "greenwallcoverings.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "handcraftedwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "handmadewallcovering.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "handmadewallpapers.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "handscreenedwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "healthcarewallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "hollywoodwallcovering.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "hollywoodwallcoverings.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "hospitalitymurals.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "hospitalitysalesagency.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "hospitalitysalesagents.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "hospitalitysalesreps.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "hospitalitywallcoverings.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "hospitalitywallpaper.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "hotelwallcoverings.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "iddaily.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "inflationfears.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "interiordesignreps.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "iwascute.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "joshdultz.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "jutewallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "lasjardineras.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "latke.ai",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "linenwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "localsalesreps.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "losangelesfabrics.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "losgardeners.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "madagascarwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "malibuwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "metallicwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "micawallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "montereywallpaper.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "muralsondemand.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "museumwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "mylarwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "nataliaabrams.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "nationalpaperhangers.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "naturalwallcoverings.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "naturalwalltextures.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "pastelwallpaper.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "patterndesignlab.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "philliperomano.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "printmurals.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "protestdaily.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "raffiawallcoverings.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "raffiawalls.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "recycledwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "remotecarenetwork.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "restaurantfabrics.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "restorationwallpaper.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "righttocollege.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "saloonwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "sheltermagazines.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "silkwallcoverings.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "silverleafwallpaper.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "specifywallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "steveabramsdesigns.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "stringwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "studentdebtattorney.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "studentdebtcrisis.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "studentdebtcrisiscenter.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "studentdebtcrisiscenter.org",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "studentdebtlawyers.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "studentloanvoter.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "studentstrikes.org",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "suedewallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "textiletuesday.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "textilewallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "theatrewallpaper.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "thecannabisnews.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "tweetdick.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "vinylwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallco.ai",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpapercanada.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "zayde.ai",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "withoutstudentdebt.org",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "withoutstudentdebt.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wc01wallpaper.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wc01wallcoverings.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wc-01.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallsondemand.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallsandfabrics.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpaperweekly.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpaperwednesday.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpaperpurchasing.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpaperondemand.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpapernyc.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpaperny.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpaperhistory.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpaperglossary.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpaperfromthe80s.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpaperexports.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpaperdictionary.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallpaperdefinitions.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "wallcovering.net",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "vintagebh.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "upperonepercent.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "unitedstateswallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "treetrimmingguys.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "traditionalwhimsy.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "tradeonlytextiles.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "thesetdecorator.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "thesalesreps.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "thehotelwallpaper.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "thedesignerlibrary.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "thedesignerlaboratory.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "studentdebtlawyers.org",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "studentdebthotline.org",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "stevenabramsphotography.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "silkwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "selfadhesivewallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "screenprintedwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "roomsettings.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "righttocollege.org",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "retrowalls.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "restaurantwallpaper.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "restaurantmurals.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "cypresawards.org",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "customdigitalwallcoverings.com",
+      "passesMx": false,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": false,
+      "issues": [
+        "NO_MX",
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    },
+    {
+      "domain": "corkwallcovering.com",
+      "passesMx": true,
+      "passesSpf": true,
+      "passesDkim": false,
+      "passesDmarc": false,
+      "hasRouting": true,
+      "routingRuleCount": 1,
+      "deliverable": true,
+      "issues": [
+        "NO_DKIM",
+        "NO_DMARC"
+      ]
+    }
+  ]
+}
\ No newline at end of file
diff --git a/output/lead-loss-report.json b/output/lead-loss-report.json
new file mode 100644
index 0000000..2cf797b
--- /dev/null
+++ b/output/lead-loss-report.json
@@ -0,0 +1,3776 @@
+{
+  "generatedAt": "2026-05-18T17:19:24.152Z",
+  "snapshotCapturedAt": "2026-05-18",
+  "projectsDir": "/Users/stevestudio2/Projects",
+  "totals": {
+    "sitesScanned": 58,
+    "losingLeads": 42,
+    "ok": 14,
+    "noContactFound": 0,
+    "unverified": 2
+  },
+  "losingLeads": [
+    {
+      "site": "1800swallpaper",
+      "configDomain": "1800swallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@1800swallpaper.com",
+          "domain": "1800swallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "1890swallpaper",
+      "configDomain": "1890swallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@1890swallpaper.com",
+          "domain": "1890swallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "1920swallpaper",
+      "configDomain": "1920swallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@1920swallpaper.com",
+          "domain": "1920swallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "1930swallpaper",
+      "configDomain": "1930swallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@1930swallpaper.com",
+          "domain": "1930swallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "1940swallpaper",
+      "configDomain": "1940swallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@1940swallpaper.com",
+          "domain": "1940swallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "1950swallpaper",
+      "configDomain": "1950swallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@1950swallpaper.com",
+          "domain": "1950swallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "1960swallpaper",
+      "configDomain": "1960swallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@1960swallpaper.com",
+          "domain": "1960swallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "1970swallpaper",
+      "configDomain": "1970swallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@1970swallpaper.com",
+          "domain": "1970swallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "agedwallpaper",
+      "configDomain": "agedwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@agedwallpaper.com",
+          "domain": "agedwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "apartmentwallpaper",
+      "configDomain": "apartmentwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@apartmentwallpaper.com",
+          "domain": "apartmentwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "blockprintedwallpaper",
+      "configDomain": "blockprintedwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@blockprintedwallpaper.com",
+          "domain": "blockprintedwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "contractwallpaper",
+      "configDomain": "contractwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@contractwallpaper.com",
+          "domain": "contractwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "embroideredwallpaper",
+      "configDomain": "embroideredwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@embroideredwallpaper.com",
+          "domain": "embroideredwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "fabricwallpaper",
+      "configDomain": "fabricwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@fabricwallpaper.com",
+          "domain": "fabricwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "ffepurchasing",
+      "configDomain": "hospitalitywallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@ffepurchasing.com",
+          "domain": "ffepurchasing.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "glitterwalls",
+      "configDomain": "glitterwalls.com",
+      "undeliverable": [
+        {
+          "contact": "info@glitterwalls.com",
+          "domain": "glitterwalls.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "greenwallcoverings",
+      "configDomain": "greenwallcoverings.com",
+      "undeliverable": [
+        {
+          "contact": "info@greenwallcoverings.com",
+          "domain": "greenwallcoverings.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "handcraftedwallpaper",
+      "configDomain": "handcraftedwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@handcraftedwallpaper.com",
+          "domain": "handcraftedwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "healthcarewallpaper",
+      "configDomain": "healthcarewallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@healthcarewallpaper.com",
+          "domain": "healthcarewallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "hospitalitywallcoverings",
+      "configDomain": "hospitalitywallcoverings.com",
+      "undeliverable": [
+        {
+          "contact": "info@hospitalitywallcoverings.com",
+          "domain": "hospitalitywallcoverings.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "jutewallpaper",
+      "configDomain": "jutewallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@jutewallpaper.com",
+          "domain": "jutewallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "linenwallpaper",
+      "configDomain": "linenwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@linenwallpaper.com",
+          "domain": "linenwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "madagascarwallpaper",
+      "configDomain": "madagascarwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@madagascarwallpaper.com",
+          "domain": "madagascarwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "metallicwallpaper",
+      "configDomain": "metallicwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@metallicwallpaper.com",
+          "domain": "metallicwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "micawallpaper",
+      "configDomain": "micawallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@micawallpaper.com",
+          "domain": "micawallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "museumwallpaper",
+      "configDomain": "museumwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@museumwallpaper.com",
+          "domain": "museumwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "mylarwallpaper",
+      "configDomain": "mylarwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@mylarwallpaper.com",
+          "domain": "mylarwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "naturalwallcoverings",
+      "configDomain": "naturalwallcoverings.com",
+      "undeliverable": [
+        {
+          "contact": "info@naturalwallcoverings.com",
+          "domain": "naturalwallcoverings.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "raffiawallcoverings",
+      "configDomain": "raffiawallcoverings.com",
+      "undeliverable": [
+        {
+          "contact": "info@raffiawallcoverings.com",
+          "domain": "raffiawallcoverings.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "raffiawalls",
+      "configDomain": "raffiawalls.com",
+      "undeliverable": [
+        {
+          "contact": "info@raffiawalls.com",
+          "domain": "raffiawalls.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "recycledwallpaper",
+      "configDomain": "recycledwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@recycledwallpaper.com",
+          "domain": "recycledwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "restaurantwallpaper",
+      "configDomain": "restaurantwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@restaurantwallpaper.com",
+          "domain": "restaurantwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "retrowalls",
+      "configDomain": "retrowalls.com",
+      "undeliverable": [
+        {
+          "contact": "info@retrowalls.com",
+          "domain": "retrowalls.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "saloonwallpaper",
+      "configDomain": "saloonwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@saloonwallpaper.com",
+          "domain": "saloonwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "screenprintedwallpaper",
+      "configDomain": "screenprintedwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@screenprintedwallpaper.com",
+          "domain": "screenprintedwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "selfadhesivewallpaper",
+      "configDomain": "selfadhesivewallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@selfadhesivewallpaper.com",
+          "domain": "selfadhesivewallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "silkwallcoverings",
+      "configDomain": "silkwallcoverings.com",
+      "undeliverable": [
+        {
+          "contact": "info@silkwallcoverings.com",
+          "domain": "silkwallcoverings.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "silkwallpaper",
+      "configDomain": "silkwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@silkwallpaper.com",
+          "domain": "silkwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "stringwallpaper",
+      "configDomain": "stringwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@stringwallpaper.com",
+          "domain": "stringwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "suedewallpaper",
+      "configDomain": "suedewallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@suedewallpaper.com",
+          "domain": "suedewallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "textilewallpaper",
+      "configDomain": "textilewallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@textilewallpaper.com",
+          "domain": "textilewallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    },
+    {
+      "site": "vinylwallpaper",
+      "configDomain": "vinylwallpaper.com",
+      "undeliverable": [
+        {
+          "contact": "info@vinylwallpaper.com",
+          "domain": "vinylwallpaper.com",
+          "why": "domain fails MX (cannot receive email)"
+        }
+      ]
+    }
+  ],
+  "sites": [
+    {
+      "site": "1800swallpaper",
+      "dir": "/Users/stevestudio2/Projects/1800swallpaper",
+      "configDomain": "1800swallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@1800swallpaper.com",
+          "domain": "1800swallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "1800swallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@1800swallpaper.com",
+          "domain": "1800swallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "1800swallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "1890swallpaper",
+      "dir": "/Users/stevestudio2/Projects/1890swallpaper",
+      "configDomain": "1890swallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@1890swallpaper.com",
+          "domain": "1890swallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "1890swallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@1890swallpaper.com",
+          "domain": "1890swallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "1890swallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "1900swallpaper",
+      "dir": "/Users/stevestudio2/Projects/1900swallpaper",
+      "configDomain": "1900swallpaper.com",
+      "contactEmails": [
+        {
+          "email": "steve@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        },
+        {
+          "email": "info@1900swallpaper.com",
+          "domain": "1900swallpaper.com",
+          "status": "DELIVERABLE",
+          "reasons": [],
+          "health": {
+            "domain": "1900swallpaper.com",
+            "passesMx": true,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": true,
+            "issues": [
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "OK",
+      "undeliverableContacts": [],
+      "unknownContacts": [
+        {
+          "email": "steve@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ]
+    },
+    {
+      "site": "1920swallpaper",
+      "dir": "/Users/stevestudio2/Projects/1920swallpaper",
+      "configDomain": "1920swallpaper.com",
+      "contactEmails": [
+        {
+          "email": "steve@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        },
+        {
+          "email": "info@1920swallpaper.com",
+          "domain": "1920swallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "1920swallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@1920swallpaper.com",
+          "domain": "1920swallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "1920swallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": [
+        {
+          "email": "steve@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ]
+    },
+    {
+      "site": "1930swallpaper",
+      "dir": "/Users/stevestudio2/Projects/1930swallpaper",
+      "configDomain": "1930swallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@1930swallpaper.com",
+          "domain": "1930swallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "1930swallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@1930swallpaper.com",
+          "domain": "1930swallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "1930swallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "1940swallpaper",
+      "dir": "/Users/stevestudio2/Projects/1940swallpaper",
+      "configDomain": "1940swallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@1940swallpaper.com",
+          "domain": "1940swallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "1940swallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@1940swallpaper.com",
+          "domain": "1940swallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "1940swallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "1950swallpaper",
+      "dir": "/Users/stevestudio2/Projects/1950swallpaper",
+      "configDomain": "1950swallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@1950swallpaper.com",
+          "domain": "1950swallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "1950swallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@1950swallpaper.com",
+          "domain": "1950swallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "1950swallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "1960swallpaper",
+      "dir": "/Users/stevestudio2/Projects/1960swallpaper",
+      "configDomain": "1960swallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@1960swallpaper.com",
+          "domain": "1960swallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "1960swallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@1960swallpaper.com",
+          "domain": "1960swallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "1960swallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "1970swallpaper",
+      "dir": "/Users/stevestudio2/Projects/1970swallpaper",
+      "configDomain": "1970swallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@1970swallpaper.com",
+          "domain": "1970swallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "1970swallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@1970swallpaper.com",
+          "domain": "1970swallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "1970swallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "1980swallpaper",
+      "dir": "/Users/stevestudio2/Projects/1980swallpaper",
+      "configDomain": "1980swallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@1980swallpaper.com",
+          "domain": "1980swallpaper.com",
+          "status": "DELIVERABLE",
+          "reasons": [],
+          "health": {
+            "domain": "1980swallpaper.com",
+            "passesMx": true,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": true,
+            "issues": [
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "OK",
+      "undeliverableContacts": [],
+      "unknownContacts": []
+    },
+    {
+      "site": "agedwallpaper",
+      "dir": "/Users/stevestudio2/Projects/agedwallpaper",
+      "configDomain": "agedwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@agedwallpaper.com",
+          "domain": "agedwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "agedwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@agedwallpaper.com",
+          "domain": "agedwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "agedwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "apartmentwallpaper",
+      "dir": "/Users/stevestudio2/Projects/apartmentwallpaper",
+      "configDomain": "apartmentwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@apartmentwallpaper.com",
+          "domain": "apartmentwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "apartmentwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@apartmentwallpaper.com",
+          "domain": "apartmentwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "apartmentwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "architecturalwallcoverings",
+      "dir": "/Users/stevestudio2/Projects/architecturalwallcoverings",
+      "configDomain": "architecturalwallcoverings.com",
+      "contactEmails": [
+        {
+          "email": "info@architecturalwallcoverings.com",
+          "domain": "architecturalwallcoverings.com",
+          "status": "DELIVERABLE",
+          "reasons": [],
+          "health": {
+            "domain": "architecturalwallcoverings.com",
+            "passesMx": true,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": true,
+            "issues": [
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "OK",
+      "undeliverableContacts": [],
+      "unknownContacts": []
+    },
+    {
+      "site": "bestwallpaperplace",
+      "dir": "/Users/stevestudio2/Projects/bestwallpaperplace",
+      "configDomain": "bestwallpaperplace.com",
+      "contactEmails": [
+        {
+          "email": "info@bestwallpaperplace.com",
+          "domain": "bestwallpaperplace.com",
+          "status": "DELIVERABLE",
+          "reasons": [],
+          "health": {
+            "domain": "bestwallpaperplace.com",
+            "passesMx": true,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": true,
+            "issues": [
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "OK",
+      "undeliverableContacts": [],
+      "unknownContacts": []
+    },
+    {
+      "site": "bleachresistantfabrics",
+      "dir": "/Users/stevestudio2/Projects/bleachresistantfabrics",
+      "configDomain": "bleachresistantfabrics.com",
+      "contactEmails": [
+        {
+          "email": "info@bleachresistantfabrics.com",
+          "domain": "bleachresistantfabrics.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "UNVERIFIED",
+      "undeliverableContacts": [],
+      "unknownContacts": [
+        {
+          "email": "info@bleachresistantfabrics.com",
+          "domain": "bleachresistantfabrics.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ]
+    },
+    {
+      "site": "blockprintedwallpaper",
+      "dir": "/Users/stevestudio2/Projects/blockprintedwallpaper",
+      "configDomain": "blockprintedwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@blockprintedwallpaper.com",
+          "domain": "blockprintedwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "blockprintedwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@blockprintedwallpaper.com",
+          "domain": "blockprintedwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "blockprintedwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "carmelwallpapers",
+      "dir": "/Users/stevestudio2/Projects/carmelwallpapers",
+      "configDomain": "carmelwallpapers.com",
+      "contactEmails": [
+        {
+          "email": "info@carmelwallpapers.com",
+          "domain": "carmelwallpapers.com",
+          "status": "DELIVERABLE",
+          "reasons": [],
+          "health": {
+            "domain": "carmelwallpapers.com",
+            "passesMx": true,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": true,
+            "issues": [
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [],
+      "siteStatus": "OK",
+      "undeliverableContacts": [],
+      "unknownContacts": []
+    },
+    {
+      "site": "contractwallpaper",
+      "dir": "/Users/stevestudio2/Projects/contractwallpaper",
+      "configDomain": "contractwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@contractwallpaper.com",
+          "domain": "contractwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "contractwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@contractwallpaper.com",
+          "domain": "contractwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "contractwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "corkwallcovering",
+      "dir": "/Users/stevestudio2/Projects/corkwallcovering",
+      "configDomain": "corkwallcovering.com",
+      "contactEmails": [
+        {
+          "email": "steve@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        },
+        {
+          "email": "info@corkwallcovering.com",
+          "domain": "corkwallcovering.com",
+          "status": "DELIVERABLE",
+          "reasons": [],
+          "health": {
+            "domain": "corkwallcovering.com",
+            "passesMx": true,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": true,
+            "issues": [
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "OK",
+      "undeliverableContacts": [],
+      "unknownContacts": [
+        {
+          "email": "steve@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ]
+    },
+    {
+      "site": "embroideredwallpaper",
+      "dir": "/Users/stevestudio2/Projects/embroideredwallpaper",
+      "configDomain": "embroideredwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@embroideredwallpaper.com",
+          "domain": "embroideredwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "embroideredwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@embroideredwallpaper.com",
+          "domain": "embroideredwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "embroideredwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "fabricwallpaper",
+      "dir": "/Users/stevestudio2/Projects/fabricwallpaper",
+      "configDomain": "fabricwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@fabricwallpaper.com",
+          "domain": "fabricwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "fabricwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@fabricwallpaper.com",
+          "domain": "fabricwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "fabricwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "ffepurchasing",
+      "dir": "/Users/stevestudio2/Projects/ffepurchasing",
+      "configDomain": "hospitalitywallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        },
+        {
+          "email": "info@ffepurchasing.com",
+          "domain": "ffepurchasing.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "ffepurchasing.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564",
+        "888-373-4564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@ffepurchasing.com",
+          "domain": "ffepurchasing.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "ffepurchasing.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": [
+        {
+          "email": "info@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ]
+    },
+    {
+      "site": "fliepaper",
+      "dir": "/Users/stevestudio2/Projects/fliepaper",
+      "configDomain": "fliepaper.com",
+      "contactEmails": [
+        {
+          "email": "info@fliepaper.com",
+          "domain": "fliepaper.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ],
+      "phones": [],
+      "siteStatus": "UNVERIFIED",
+      "undeliverableContacts": [],
+      "unknownContacts": [
+        {
+          "email": "info@fliepaper.com",
+          "domain": "fliepaper.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ]
+    },
+    {
+      "site": "glitterwalls",
+      "dir": "/Users/stevestudio2/Projects/glitterwalls",
+      "configDomain": "glitterwalls.com",
+      "contactEmails": [
+        {
+          "email": "info@glitterwalls.com",
+          "domain": "glitterwalls.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "glitterwalls.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564",
+        "888-373-4564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@glitterwalls.com",
+          "domain": "glitterwalls.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "glitterwalls.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "greenwallcoverings",
+      "dir": "/Users/stevestudio2/Projects/greenwallcoverings",
+      "configDomain": "greenwallcoverings.com",
+      "contactEmails": [
+        {
+          "email": "info@greenwallcoverings.com",
+          "domain": "greenwallcoverings.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "greenwallcoverings.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@greenwallcoverings.com",
+          "domain": "greenwallcoverings.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "greenwallcoverings.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "handcraftedwallpaper",
+      "dir": "/Users/stevestudio2/Projects/handcraftedwallpaper",
+      "configDomain": "handcraftedwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@handcraftedwallpaper.com",
+          "domain": "handcraftedwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "handcraftedwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@handcraftedwallpaper.com",
+          "domain": "handcraftedwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "handcraftedwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "healthcarewallpaper",
+      "dir": "/Users/stevestudio2/Projects/healthcarewallpaper",
+      "configDomain": "healthcarewallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@healthcarewallpaper.com",
+          "domain": "healthcarewallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "healthcarewallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@healthcarewallpaper.com",
+          "domain": "healthcarewallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "healthcarewallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "hollywood-wallcoverings",
+      "dir": "/Users/stevestudio2/Projects/hollywood-wallcoverings",
+      "configDomain": "hollywoodwallcoverings.com",
+      "contactEmails": [
+        {
+          "email": "info@hollywoodwallcoverings.com",
+          "domain": "hollywoodwallcoverings.com",
+          "status": "DELIVERABLE",
+          "reasons": [],
+          "health": {
+            "domain": "hollywoodwallcoverings.com",
+            "passesMx": true,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": true,
+            "issues": [
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        },
+        {
+          "email": "trade@hollywoodwallcoverings.com",
+          "domain": "hollywoodwallcoverings.com",
+          "status": "DELIVERABLE",
+          "reasons": [],
+          "health": {
+            "domain": "hollywoodwallcoverings.com",
+            "passesMx": true,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": true,
+            "issues": [
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        },
+        {
+          "email": "trade@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "OK",
+      "undeliverableContacts": [],
+      "unknownContacts": [
+        {
+          "email": "trade@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ]
+    },
+    {
+      "site": "hospitalitywallcoverings",
+      "dir": "/Users/stevestudio2/Projects/hospitalitywallcoverings",
+      "configDomain": "hospitalitywallcoverings.com",
+      "contactEmails": [
+        {
+          "email": "info@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        },
+        {
+          "email": "info@hospitalitywallcoverings.com",
+          "domain": "hospitalitywallcoverings.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "hospitalitywallcoverings.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564",
+        "888-373-4564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@hospitalitywallcoverings.com",
+          "domain": "hospitalitywallcoverings.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "hospitalitywallcoverings.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": [
+        {
+          "email": "info@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ]
+    },
+    {
+      "site": "hospitalitywallpaper",
+      "dir": "/Users/stevestudio2/Projects/hospitalitywallpaper",
+      "configDomain": "hospitalitywallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        },
+        {
+          "email": "info@hospitalitywallpaper.com",
+          "domain": "hospitalitywallpaper.com",
+          "status": "DELIVERABLE",
+          "reasons": [],
+          "health": {
+            "domain": "hospitalitywallpaper.com",
+            "passesMx": true,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": true,
+            "issues": [
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "OK",
+      "undeliverableContacts": [],
+      "unknownContacts": [
+        {
+          "email": "info@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ]
+    },
+    {
+      "site": "hotelwallcoverings",
+      "dir": "/Users/stevestudio2/Projects/hotelwallcoverings",
+      "configDomain": "hotelwallcoverings.com",
+      "contactEmails": [
+        {
+          "email": "info@hotelwallcoverings.com",
+          "domain": "hotelwallcoverings.com",
+          "status": "DELIVERABLE",
+          "reasons": [],
+          "health": {
+            "domain": "hotelwallcoverings.com",
+            "passesMx": true,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": true,
+            "issues": [
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "OK",
+      "undeliverableContacts": [],
+      "unknownContacts": []
+    },
+    {
+      "site": "jutewallpaper",
+      "dir": "/Users/stevestudio2/Projects/jutewallpaper",
+      "configDomain": "jutewallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@jutewallpaper.com",
+          "domain": "jutewallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "jutewallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@jutewallpaper.com",
+          "domain": "jutewallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "jutewallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "linenwallpaper",
+      "dir": "/Users/stevestudio2/Projects/linenwallpaper",
+      "configDomain": "linenwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@linenwallpaper.com",
+          "domain": "linenwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "linenwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564",
+        "888-373-4564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@linenwallpaper.com",
+          "domain": "linenwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "linenwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "madagascarwallpaper",
+      "dir": "/Users/stevestudio2/Projects/madagascarwallpaper",
+      "configDomain": "madagascarwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@madagascarwallpaper.com",
+          "domain": "madagascarwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "madagascarwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@madagascarwallpaper.com",
+          "domain": "madagascarwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "madagascarwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "metallicwallpaper",
+      "dir": "/Users/stevestudio2/Projects/metallicwallpaper",
+      "configDomain": "metallicwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "steve@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        },
+        {
+          "email": "info@metallicwallpaper.com",
+          "domain": "metallicwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "metallicwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@metallicwallpaper.com",
+          "domain": "metallicwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "metallicwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": [
+        {
+          "email": "steve@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ]
+    },
+    {
+      "site": "micawallpaper",
+      "dir": "/Users/stevestudio2/Projects/micawallpaper",
+      "configDomain": "micawallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@micawallpaper.com",
+          "domain": "micawallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "micawallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@micawallpaper.com",
+          "domain": "micawallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "micawallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "museumwallpaper",
+      "dir": "/Users/stevestudio2/Projects/museumwallpaper",
+      "configDomain": "museumwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        },
+        {
+          "email": "info@museumwallpaper.com",
+          "domain": "museumwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "museumwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@museumwallpaper.com",
+          "domain": "museumwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "museumwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": [
+        {
+          "email": "info@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ]
+    },
+    {
+      "site": "mylarwallpaper",
+      "dir": "/Users/stevestudio2/Projects/mylarwallpaper",
+      "configDomain": "mylarwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@mylarwallpaper.com",
+          "domain": "mylarwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "mylarwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@mylarwallpaper.com",
+          "domain": "mylarwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "mylarwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "naturalwallcoverings",
+      "dir": "/Users/stevestudio2/Projects/naturalwallcoverings",
+      "configDomain": "naturalwallcoverings.com",
+      "contactEmails": [
+        {
+          "email": "info@naturalwallcoverings.com",
+          "domain": "naturalwallcoverings.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "naturalwallcoverings.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@naturalwallcoverings.com",
+          "domain": "naturalwallcoverings.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "naturalwallcoverings.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "pastelwallpaper",
+      "dir": "/Users/stevestudio2/Projects/pastelwallpaper",
+      "configDomain": "pastelwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@pastelwallpaper.com",
+          "domain": "pastelwallpaper.com",
+          "status": "DELIVERABLE",
+          "reasons": [],
+          "health": {
+            "domain": "pastelwallpaper.com",
+            "passesMx": true,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": true,
+            "issues": [
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "OK",
+      "undeliverableContacts": [],
+      "unknownContacts": []
+    },
+    {
+      "site": "raffiawallcoverings",
+      "dir": "/Users/stevestudio2/Projects/raffiawallcoverings",
+      "configDomain": "raffiawallcoverings.com",
+      "contactEmails": [
+        {
+          "email": "info@raffiawallcoverings.com",
+          "domain": "raffiawallcoverings.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "raffiawallcoverings.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@raffiawallcoverings.com",
+          "domain": "raffiawallcoverings.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "raffiawallcoverings.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "raffiawalls",
+      "dir": "/Users/stevestudio2/Projects/raffiawalls",
+      "configDomain": "raffiawalls.com",
+      "contactEmails": [
+        {
+          "email": "info@raffiawalls.com",
+          "domain": "raffiawalls.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "raffiawalls.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564",
+        "888-373-4564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@raffiawalls.com",
+          "domain": "raffiawalls.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "raffiawalls.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "recycledwallpaper",
+      "dir": "/Users/stevestudio2/Projects/recycledwallpaper",
+      "configDomain": "recycledwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@recycledwallpaper.com",
+          "domain": "recycledwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "recycledwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@recycledwallpaper.com",
+          "domain": "recycledwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "recycledwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "restaurantwallpaper",
+      "dir": "/Users/stevestudio2/Projects/restaurantwallpaper",
+      "configDomain": "restaurantwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@restaurantwallpaper.com",
+          "domain": "restaurantwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "restaurantwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@restaurantwallpaper.com",
+          "domain": "restaurantwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "restaurantwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "restorationwallpaper",
+      "dir": "/Users/stevestudio2/Projects/restorationwallpaper",
+      "configDomain": "restorationwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@restorationwallpaper.com",
+          "domain": "restorationwallpaper.com",
+          "status": "DELIVERABLE",
+          "reasons": [],
+          "health": {
+            "domain": "restorationwallpaper.com",
+            "passesMx": true,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": true,
+            "issues": [
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "OK",
+      "undeliverableContacts": [],
+      "unknownContacts": []
+    },
+    {
+      "site": "retrowalls",
+      "dir": "/Users/stevestudio2/Projects/retrowalls",
+      "configDomain": "retrowalls.com",
+      "contactEmails": [
+        {
+          "email": "steve@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        },
+        {
+          "email": "info@retrowalls.com",
+          "domain": "retrowalls.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "retrowalls.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564",
+        "888-373-4564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@retrowalls.com",
+          "domain": "retrowalls.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "retrowalls.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": [
+        {
+          "email": "steve@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ]
+    },
+    {
+      "site": "saloonwallpaper",
+      "dir": "/Users/stevestudio2/Projects/saloonwallpaper",
+      "configDomain": "saloonwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@saloonwallpaper.com",
+          "domain": "saloonwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "saloonwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@saloonwallpaper.com",
+          "domain": "saloonwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "saloonwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "screenprintedwallpaper",
+      "dir": "/Users/stevestudio2/Projects/screenprintedwallpaper",
+      "configDomain": "screenprintedwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@screenprintedwallpaper.com",
+          "domain": "screenprintedwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "screenprintedwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@screenprintedwallpaper.com",
+          "domain": "screenprintedwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "screenprintedwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "selfadhesivewallpaper",
+      "dir": "/Users/stevestudio2/Projects/selfadhesivewallpaper",
+      "configDomain": "selfadhesivewallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@selfadhesivewallpaper.com",
+          "domain": "selfadhesivewallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "selfadhesivewallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@selfadhesivewallpaper.com",
+          "domain": "selfadhesivewallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "selfadhesivewallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "silkwallcoverings",
+      "dir": "/Users/stevestudio2/Projects/silkwallcoverings",
+      "configDomain": "silkwallcoverings.com",
+      "contactEmails": [
+        {
+          "email": "info@silkwallcoverings.com",
+          "domain": "silkwallcoverings.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "silkwallcoverings.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@silkwallcoverings.com",
+          "domain": "silkwallcoverings.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "silkwallcoverings.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "silkwallpaper",
+      "dir": "/Users/stevestudio2/Projects/silkwallpaper",
+      "configDomain": "silkwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@silkwallpaper.com",
+          "domain": "silkwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "silkwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564",
+        "888-373-4564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@silkwallpaper.com",
+          "domain": "silkwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "silkwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "silverleafwallpaper",
+      "dir": "/Users/stevestudio2/Projects/silverleafwallpaper",
+      "configDomain": "silverleafwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "steve@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        },
+        {
+          "email": "info@silverleafwallpaper.com",
+          "domain": "silverleafwallpaper.com",
+          "status": "DELIVERABLE",
+          "reasons": [],
+          "health": {
+            "domain": "silverleafwallpaper.com",
+            "passesMx": true,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": true,
+            "issues": [
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "OK",
+      "undeliverableContacts": [],
+      "unknownContacts": [
+        {
+          "email": "steve@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ]
+    },
+    {
+      "site": "stringwallpaper",
+      "dir": "/Users/stevestudio2/Projects/stringwallpaper",
+      "configDomain": "stringwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@stringwallpaper.com",
+          "domain": "stringwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "stringwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@stringwallpaper.com",
+          "domain": "stringwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "stringwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "suedewallpaper",
+      "dir": "/Users/stevestudio2/Projects/suedewallpaper",
+      "configDomain": "suedewallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@suedewallpaper.com",
+          "domain": "suedewallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "suedewallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@suedewallpaper.com",
+          "domain": "suedewallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "suedewallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "textilewallpaper",
+      "dir": "/Users/stevestudio2/Projects/textilewallpaper",
+      "configDomain": "textilewallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@textilewallpaper.com",
+          "domain": "textilewallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "textilewallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@textilewallpaper.com",
+          "domain": "textilewallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "textilewallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "vinylwallpaper",
+      "dir": "/Users/stevestudio2/Projects/vinylwallpaper",
+      "configDomain": "vinylwallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@vinylwallpaper.com",
+          "domain": "vinylwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "vinylwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "LOSING_LEADS",
+      "undeliverableContacts": [
+        {
+          "email": "info@vinylwallpaper.com",
+          "domain": "vinylwallpaper.com",
+          "status": "UNDELIVERABLE",
+          "reasons": [
+            "domain fails MX (cannot receive email)"
+          ],
+          "health": {
+            "domain": "vinylwallpaper.com",
+            "passesMx": false,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": false,
+            "issues": [
+              "NO_MX",
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "unknownContacts": []
+    },
+    {
+      "site": "wallpapercanada",
+      "dir": "/Users/stevestudio2/Projects/wallpapercanada",
+      "configDomain": "hospitalitywallpaper.com",
+      "contactEmails": [
+        {
+          "email": "info@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        },
+        {
+          "email": "info@wallpapercanada.com",
+          "domain": "wallpapercanada.com",
+          "status": "DELIVERABLE",
+          "reasons": [],
+          "health": {
+            "domain": "wallpapercanada.com",
+            "passesMx": true,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": true,
+            "issues": [
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564",
+        "888-373-4564"
+      ],
+      "siteStatus": "OK",
+      "undeliverableContacts": [],
+      "unknownContacts": [
+        {
+          "email": "info@designerwallcoverings.com",
+          "domain": "designerwallcoverings.com",
+          "status": "UNKNOWN_DOMAIN",
+          "reasons": [
+            "domain not found on the Purelymail account snapshot"
+          ],
+          "health": null
+        }
+      ]
+    },
+    {
+      "site": "wallsandfabrics",
+      "dir": "/Users/stevestudio2/Projects/wallsandfabrics",
+      "configDomain": "wallsandfabrics.com",
+      "contactEmails": [
+        {
+          "email": "info@wallsandfabrics.com",
+          "domain": "wallsandfabrics.com",
+          "status": "DELIVERABLE",
+          "reasons": [],
+          "health": {
+            "domain": "wallsandfabrics.com",
+            "passesMx": true,
+            "passesSpf": true,
+            "passesDkim": false,
+            "passesDmarc": false,
+            "hasRouting": true,
+            "routingRuleCount": 1,
+            "deliverable": true,
+            "issues": [
+              "NO_DKIM",
+              "NO_DMARC"
+            ]
+          }
+        }
+      ],
+      "phones": [
+        "+18883734564"
+      ],
+      "siteStatus": "OK",
+      "undeliverableContacts": [],
+      "unknownContacts": []
+    }
+  ]
+}
\ No newline at end of file
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..946786e
--- /dev/null
+++ b/package.json
@@ -0,0 +1,21 @@
+{
+  "name": "email-deliverability-agent",
+  "version": "1.0.0",
+  "description": "Fleet email-deliverability monitor for the Designer Wallcoverings sister-site network",
+  "private": true,
+  "main": "audit.js",
+  "scripts": {
+    "audit": "node audit.js",
+    "contact-audit": "node contact-audit.js",
+    "canary": "node canary.js",
+    "canary:live": "node canary.js --live",
+    "all": "node audit.js && node contact-audit.js"
+  },
+  "author": "steve@designerwallcoverings.com",
+  "license": "UNLICENSED",
+  "dependencies": {},
+  "optionalDependencies": {
+    "nodemailer": "^6.9.0",
+    "imapflow": "^1.0.0"
+  }
+}

(oldest)  ·  back to Email Deliverability Agent  ·  Rewrite domain-health.json with live dig results (Purelymail 7191ab6 →