deliverability-checker
Check email deliverability and DNS configuration. Use when: diagnosing email delivery issues; setting up new email domains; auditing email authentication; checking SPF/DKIM/DMARC; troubleshooting spam folder issues
What this skill does
# Email Deliverability Checker > Diagnose email deliverability issues by checking SPF, DKIM, DMARC, and other DNS records - fix why your emails land in spam. ## When to Use This Skill - **Delivery troubleshooting** - Emails landing in spam - **New domain setup** - Configure email authentication - **Migration audit** - Verify email config after domain change - **Client onboarding** - Check client email health - **Compliance check** - Ensure proper authentication ## What Claude Does vs What You Decide | Claude Does | You Decide | |-------------|------------| | Structures analysis frameworks | Metric definitions | | Identifies patterns in data | Business interpretation | | Creates visualization templates | Dashboard design | | Suggests optimization areas | Action priorities | | Calculates statistical measures | Decision thresholds | ## Dependencies ```bash pip install dnspython click ``` ## Commands ### Full Audit ```bash python scripts/main.py audit example.com python scripts/main.py audit example.com --output report.html ``` ### Check SPF ```bash python scripts/main.py spf example.com ``` ### Check DKIM ```bash python scripts/main.py dkim example.com --selector google python scripts/main.py dkim example.com --selector default ``` ### Check DMARC ```bash python scripts/main.py dmarc example.com ``` ### Check MX Records ```bash python scripts/main.py mx example.com ``` ## Examples ### Example 1: Full Email Audit ```bash python scripts/main.py audit acme-corp.com # Output: # Email Deliverability Audit: acme-corp.com # ────────────────────────────────────────── # MX Records: ✓ Found (Google Workspace) # SPF: ✓ Valid # DKIM (google): ✓ Valid # DMARC: ✗ Missing (CRITICAL) # # Score: 75/100 # # Issues Found: # 1. [CRITICAL] No DMARC record found # Fix: Add TXT record for _dmarc.acme-corp.com # Value: v=DMARC1; p=none; rua=mailto:[email protected] ``` ### Example 2: Diagnose SPF Issues ```bash python scripts/main.py spf newsletter-sender.com # Output: # SPF Analysis: newsletter-sender.com # ──────────────────────────────────── # Record: v=spf1 include:_spf.google.com include:sendgrid.net ~all # # Status: ✓ Valid # # Authorized Senders: # - Google Workspace (include:_spf.google.com) # - SendGrid (include:sendgrid.net) # # Policy: ~all (soft fail) # Warning: Consider changing to -all (hard fail) for better security ``` ## Email Authentication Records | Record | Purpose | Location | |--------|---------|----------| | **SPF** | Authorize sending servers | `TXT` on root domain | | **DKIM** | Cryptographic signature | `TXT` on `selector._domainkey` | | **DMARC** | Policy and reporting | `TXT` on `_dmarc` subdomain | | **MX** | Mail delivery servers | `MX` on root domain | ## Common SPF Includes | Provider | SPF Include | |----------|-------------| | Google Workspace | `include:_spf.google.com` | | Microsoft 365 | `include:spf.protection.outlook.com` | | SendGrid | `include:sendgrid.net` | | Mailchimp | `include:servers.mcsv.net` | | Amazon SES | `include:amazonses.com` | ## DKIM Selectors by Provider | Provider | Common Selector | |----------|-----------------| | Google Workspace | `google` | | Microsoft 365 | `selector1`, `selector2` | | SendGrid | `s1`, `s2` | | Mailchimp | `k1` | ## Deliverability Score Factors | Factor | Weight | Impact | |--------|--------|--------| | Valid MX | 20% | Can't receive replies | | Valid SPF | 25% | Server authorization | | Valid DKIM | 25% | Message integrity | | Valid DMARC | 30% | Policy enforcement | ## Skill Boundaries ### What This Skill Does Well - Structuring data analysis - Identifying patterns and trends - Creating visualization frameworks - Calculating statistical measures ### What This Skill Cannot Do - Access your actual data - Replace statistical expertise - Make business decisions - Guarantee prediction accuracy ## Related Skills - [dns-audit](../dns-audit/) - Full DNS health check ## Skill Metadata - **Mode**: centaur ```yaml category: email-tools subcategory: deliverability dependencies: [dnspython] difficulty: beginner time_saved: 2+ hours/week ```
Related in Productivity
gitea-workflow
IncludedOrchestrate agile development workflows for Gitea repositories using the tea CLI. Use when working with Gitea-hosted repos and asking to 'run the workflow', 'continue working', 'what's next', 'complete the task cycle', 'start my day', 'end the sprint', 'implement the next task', or wanting guided step-by-step development assistance. Keywords: workflow, orchestrate, agile, task cycle, sprint, daily, implement, review, PR, standup, retrospective, gitea, tea.
microsoft-graph-gateway
IncludedRoute Microsoft Graph work in this workspace. Use when users want to read or write Outlook mail, calendar events, contacts, OneDrive or SharePoint files, Teams, Planner, To Do, users, groups, directory data, or arbitrary Microsoft Graph endpoints from VS Code. Prefer WorkIQ for common read scenarios. Use Microsoft Graph for write actions and gap-read scenarios that need exact Graph properties, filters, permissions, or endpoints.
copilotkit
IncludedUse when building with CopilotKit — setup, development, integrations, debugging, upgrading, or contributing. Routes to the appropriate specialized skill based on the task.
wordly-wisdom
IncludedProvides calibrated decision analysis using Charlie Munger-style multiple mental models, inversion, incentive mapping, circle-of-competence checks, misjudgment audits, second-order effects, and forecast updates. Use when the user asks for an oracle take, a hard call, a decision memo, a premortem, an outside view, a red-team, a sanity-check, what am I missing, think this through, or wants a strategy, hire, investment, plan, product, partnership, or major life choice analysed. Avoid for simple factual lookups or time-sensitive legal, medical, or market questions without fresh evidence.
swain-session
IncludedSession management and project status dashboard. Owns the full session lifecycle (start/work/close/resume), focus lane, bookmarks, worktree detection, and tab naming. Also serves as the project status dashboard — shows active epics, progress, actionable next steps, blocked items, tasks, GitHub issues, and recommendations. Worktree creation is deferred to swain-do task dispatch (SPEC-195). Triggers on: 'session', 'status', 'what's next', 'dashboard', 'overview', 'where are we', 'what should I work on', 'show me priorities', 'bookmark', 'focus on', 'session info'.
gandi
IncludedComprehensive Gandi domain registrar integration for domain and DNS management. Register and manage domains, create/update/delete DNS records (A, AAAA, CNAME, MX, TXT, SRV, and more), configure email forwarding and aliases, check SSL certificate status, create DNS snapshots for safe rollback, bulk update zone files, and monitor domain expiration. Supports multi-domain management, zone file import/export, and automated DNS backups. Includes both read-only and destructive operations with safety controls.