How to Resolve DMARC Policy Delegation Conflicts in Enterprise Email Routing
Resolve DMARC policy delegation conflicts in enterprise email routing with real-world steps, verification tools, and deliverability insights to keep your.
What Causes DMARC Policy Delegation Conflicts in Large-Scale Email Systems?
You’re sending a time-sensitive invoice from your finance subdomain. It vanishes into the void—no bounce, no error. Your IT team digs into the logs. The DMARC report shows the email failed alignment, but your SPF and DKIM checks passed. How did a valid message get blocked?
This isn’t a fluke. It’s a symptom of a common but often invisible failure in enterprise email routing: DMARC policy delegation conflicts. When multiple subdomains or third-party email services operate under different DMARC rules, the lack of centralized enforcement creates inconsistencies. The base domain might permit delivery on failure (p=none), while a critical subdomain enforces strict rejection (p=reject). Without coordination, legitimate emails get dropped, even when technically compliant with their own alignment.
Key takeaways
- DMARC policy conflicts emerge when subdomains or external senders use conflicting alignment policies, even if SPF/DKIM are valid.
- Allowing delivery on failure (p=none) at the base domain while enforcing rejection (p=reject) on a subdomain creates enforcement gaps that trigger false blocks.
- Centralized DMARC policy management across subdomains and third-party providers is essential to prevent legitimate emails from being quarantined or dropped.
Why DMARC Misalignment Breaks Enterprise Email Deliverability
DMARC alignment failures cause otherwise valid emails to be rejected, even when SPF and DKIM pass. If the 'From' domain doesn’t match the domain used in SPF or DKIM, the email fails DMARC checks—common in enterprises routing mail through multiple platforms that each handle their own domain policies.
Domain Alignment Is the Real Gatekeeper
Even if your SPF record authorizes a sending server and DKIM signs the message, DMARC doesn't care unless the domains align. The 'From' domain must exactly match the domain in the SPF mechanism or the domain used for DKIM signing. For example, sending from [email protected] via a tool that only authorizes send.company.com in SPF fails alignment—no matter how solid the other checks.
DMARC is designed to prevent spoofing by enforcing strict alignment. When misaligned, receiving mail servers apply one of three policies—none, quarantine, or reject—based on the DMARC policy for the 'From' domain. If that policy is reject, your email never lands in the inbox.
Multiple Systems, Conflicting Policies Across Subdomains
Enterprises often route email through several platforms: your CRM sends notifications, your marketing automation sends campaigns, your support ticketing system sends alerts. Each of these may have its own DMARC policy, sometimes conflicting, especially if they use different subdomains. For example, campaigns.company.com might have a reject policy, while support.company.com allows quarantine.
Now imagine the same internal user sends from [email protected] via two different systems—one authenticating with send.crm.company.com, the other with send.tickets.company.com. The 'From' domain is the same, but the alignment domain in SPF or DKIM changes. One email passes, the other fails—just because of how each platform configures its sending identity.
The confusion grows when third-party platforms apply their own DMARC rules without consulting the parent domain. This misalignment often goes unnoticed until delivery rates drop or emails land in spam folders.
It’s not enough to check SPF and DKIM alone. You must test the full end-to-end path. Tools like inbox placement testers simulate real delivery conditions—even across subdomains—to catch alignment issues before they cause damage.
For deeper visibility into email routing reliability across platforms, use bulk list verification to pre-validate addresses and catch policy conflicts at scale. You can’t fix what you don’t detect.
How DMARC Alignment Works: The Foundation of Conflicts
You can’t fix DMARC policy delegation conflicts unless you understand how alignment works: DMARC requires either SPF or DKIM to align with the sender’s 'From' domain. If your email comes from mail.example.com but the 'From' header says example.com, alignment fails—unless you’ve configured relaxed alignment to allow subdomain matches. Conflicts arise when different systems enforce conflicting alignment modes (strict vs. relaxed), especially when multiple services send on behalf of the same domain through different subdomains.
SPF and DKIM Alignment: The Core Requirement
DMARC checks either SPF or DKIM to see if the sending domain matches the 'From' domain. If you send from a subdomain like newsletter.mailing.example.com but the 'From' is example.com, this only aligns if your SPF or DKIM policy allows it. Strict alignment requires an exact match—mailing.example.com must match mailing.example.com. Relaxed alignment allows subdomains, so mailing.example.com aligns with example.com. If one system uses strict and another uses relaxed for different parts of the same domain, you’ll see inconsistent failure rates in DMARC reports.
Conflicts Emerge from Mixed Configuration Across Systems
Let’s say your marketing team uses a third-party newsletter tool that sets up SPF records for mail.marketing.example.com with strict alignment, but your CRM sends from customer.support.example.com using relaxed DKIM. The same domain, different rules. When an email is sent from the CRM, DMARC checks fail because relaxed alignment does not cover strict rules. This is not a bug—it’s a configuration gap. According to RFC 7483, the standard defines these alignment modes with a purpose: to prevent spoofing. But overlapping or contradictory policies across systems turn alignment from a safeguard into a failure point.
When multiple services send from subdomains under one brand, you need centralized visibility into how each sends—what domains, which alignment rules, and how they’re configured. It’s not enough to know that 'From' is example.com. You must know what domain the actual sending server uses, what authentication method applies, and whether alignment is strict or relaxed. If you don’t, DMARC reports will show inconsistent failures, making it seem like spam or a misconfiguration when it’s really a policy delegation conflict.
To avoid this, validate your sending domains before deployment. Use a real-time email verification tool like MailTester’s email checker to test if sender domains are properly aligned and not flagged as risky. You can also use MailTester’s inbox placement tester to see how your actual emails land in real client inboxes—before they’re sent at scale. This gives you hard data on authentication success, not just theory.
Step-by-Step: Audit Your Enterprise Email Infrastructure for DMARC Conflicts
Start by mapping all subdomains used for email sending—marketing.example.com, support.example.com, app.example.com—and verify their individual DMARC policies via DNS lookup. Check SPF records across each subdomain and compare them to the base domain’s policy; duplicate or conflicting mechanisms often cause DMARC failures. Use real-time email testing to simulate inbox placement from each subdomain, ensuring alignment with enterprise standards. Finally, confirm that all services use consistent alignment modes, typically relaxed for subdomains, to avoid delivery blockages.
Begin with a Subdomain Inventory
Let’s be clear: you can’t fix what you don’t know exists. List every subdomain that sends email—marketing, support, app, billing, notifications—along with the sender IP ranges and service providers. A typical enterprise might have 10–30 such domains. Without this complete inventory, your DMARC audit is incomplete.
- Map all sending subdomains using your internal DNS records, mail flow logs, or service provider dashboards. Include every known endpoint that routes outbound email.
- Query each subdomain’s DMARC record using
digor a public tool like MxToolbox. Look for theDMARCTXT record in the format_dmarc.marketing.example.comand note thep=policy:none,quarantine, orreject. Misaligned policies here are a red flag. - Check SPF records for each subdomain. Use
dig txt marketing.example.comto find theSPFrecord. If the base domain’s SPF is already long, ensure no subdomain repeats theinclude:mechanism or lists a conflicting IP range. Too manyinclude:directives can exceed the 10 DNS lookup limit. - Verify SPF alignment by testing if the
From:domain matches theSPF:domain (sender domain alignment) or theReturn-Path:domain (envelope sender). RFC 7052 defines this for enterprise compliance. - Simulate real inbox delivery using a tool like MailTester’s inbox placement test. Send test emails from each subdomain to Gmail, Outlook, and Yahoo through real mail servers. Check the final delivery state and DMARC result in the email header.
- Confirm alignment consistency. Most enterprises use relaxed alignment for subdomains to allow safe delegation. If a marketing subdomain uses strict alignment but the parent domain doesn’t, the DMARC policy fails—even if SPF passes. This is a common point of confusion.
Use Tools That Reflect Real Delivery Conditions
Manual checks alone won't catch subtle routing conflicts. Tools like MailTester’s email checker or its bulk verification service can test both syntax and delivery readiness across 100+ domains at once, identifying issues before they impact sender reputation. Real-time testing is not optional when dealing with multi-domain email ecosystems.
How Real-Time Verification Helps Spot Inconsistent DMARC Policy Behavior
Running synthetic email tests through a reliable verification service like MailTester reveals how your messages behave across major email providers before you send them at scale. If an email passes DMARC alignment on Gmail but fails on Outlook, that inconsistency often points to misaligned policies or conflicting delegate settings across subdomains. You can catch these issues early by simulating delivery across real-world recipient environments.
Testing Across DMARC-Aware Providers
MailTester’s inbox-placement testing sends your message to actual inboxes at Gmail, Outlook, Yahoo, and others—each with their own DMARC validation logic. These tests show whether your sender domains and subdomains pass SPF, DKIM, and header alignment checks under real filtering rules. This isn’t guesswork. It’s a live simulation of what happens when your email hits a real inbox.
When you send the same message from different subdomains—like [email protected] and [email protected]—and it passes on one platform but fails on another, that’s a red flag. The issue isn’t your content. It’s likely a mismatch in DKIM signing, SPF alignment, or DMARC policy delegation. For example, a subdomain might be delegated to a third-party service (like a CRM) that doesn’t sign emails the same way your primary domain does, causing alignment failures.
Spotting Misalignment in Practice
Let’s say your company uses [email protected] and [email protected]. One goes to the inbox. The other lands in spam. Why? Maybe the shop subdomain has a DMARC policy set to reject, but the DKIM key used doesn’t match the domain in the From header. The receiving server sees a policy mismatch and drops the email. Real-time inbox testing exposes this before you send to 10,000 customers.
DMARC policies can be applied at the domain or subdomain level. If policies are not uniformly enforced—or worse, conflicting—the system breaks down. This is common in enterprises with multiple teams managing different subdomains independently. A centralized verification step—like MailTester’s inbox-placement test—can catch these inconsistencies before they impact deliverability.
For teams managing complex routing, it’s not enough to verify addresses. You must verify routing behavior. Use inbox-placement testing to see how messages perform across leading providers. It's an industry-standard way to validate that sender policies align across all major platforms. The IETF’s DMARC specification defines how alignment is evaluated, but real-world implementation varies. Testing is the only way to see where your setup deviates.
Use MailTester’s inbox-placement tester to simulate real-world delivery. It checks not just if an address is valid, but whether your entire authentication stack holds up under live conditions. This is how you fix DMARC policy delegation issues before they cost you deliverability.
Use Bulk List Verification to Identify and Exclude Problematic Senders
You can resolve DMARC policy delegation conflicts in enterprise email routing by running a bulk verification on your internal and third-party vendor email lists. This process reveals catch-all, invalid, or risky addresses that, while technically deliverable, fail SPF/DKIM alignment — a common cause of DMARC failures. By filtering out problematic senders before sending, you reduce alignment errors and strengthen routing consistency.
Check All Domains, Not Just Addresses
Many enterprise email routing issues stem from domains with misconfigured or outdated policies — not just individual bad addresses. When a third-party vendor sends from a domain that accepts all emails (a catch-all), the message may reach the inbox but still fail alignment checks. SPF alignment requires the sending domain to match the MAIL FROM address; DKIM alignment requires the domain in the signature to align with the header. A catch-all doesn't fix this — it can make alignment fail silently, triggering DMARC failures even on delivered emails.
That’s why bulk verification isn’t just about finding dead addresses. It’s about catching domains with inconsistent or permissive configurations that sabotage DMARC alignment. Tools like MailTester, with a 98.9% accuracy rate, surface domains with suspicious routing policies, outdated DNS records, or open relay behavior before they cause deliverability issues. This is especially useful for large organizations managing hundreds of vendors or internal subdomains.
Prevent Alignment Failures Before They Happen
Let’s say your marketing team sends from a vendor domain that uses a catch-all. The email arrives — but because the SPF policy doesn't align with the DKIM signature, the message gets quarantined or rejected by receiving servers. That’s not a delivery problem. It’s a configuration problem disguised as a delivery problem. Bulk verification detects these mismatches early.
Using MailTester’s bulk verification tool, you can upload a list of domains or email addresses, run checks in minutes, and get clear verdicts: valid, invalid, catch-all, or risky. Domains marked as risky often have inconsistent DMARC policies, lack proper SPF records, or are known for open relays — all red flags for enterprise routing. Filtering these out before sending helps preserve sender reputation and ensures DMARC policies are enforced consistently across all routes.
For ongoing protection, integrate MailTester’s real-time verification API into your send workflow. It checks every address as you add it, preventing misrouted emails from ever hitting the inbox. This approach scales with your email ecosystem, whether you're routing internally or via third parties.
Centralize DMARC Policy Enforcement to Prevent Delegation Conflicts
You can prevent DMARC policy delegation conflicts by enforcing a single, root-level DMARC policy (p=quarantine or p=reject) and using SPF includes to authorize subdomains. This eliminates conflicting policies, ensures consistent enforcement, and lets you monitor compliance through DMARC reports—without giving subdomains the power to override your security posture.
Enforce a Single Root Policy to Eliminate Conflict
When every subdomain sets its own DMARC policy, you risk inconsistent outcomes: some may allow forged emails, others may reject legitimate mail. The safest approach is to define the policy only at the root domain. Use p=reject if you're confident in your sending sources, or p=quarantine as a safer first step. This centralizes control and ensures alignment across your entire domain infrastructure.
Let’s say your marketing team uses a subdomain like mail.marketing.example.com and sets p=none. That’s a loophole. If the root domain has p=reject, it overrides that. But if the root lacks a specific policy, the subdomain’s p=none takes effect. You’re not protected. A single root policy prevents this split enforcement.
Use SPF Includes to Authorize Subdomains Without Compromising Control
Even with a single DMARC policy, you still need to grant legitimate senders access. Use SPF’s include mechanism to whitelist authorized subdomains, third-party providers, or internal services. For example: include:_spf.marketing.example.com safely authorizes the marketing subdomain without giving it independent DMARC power.
Keep the SPF record at the root, and manage subdomain-specific records only for sending sources. That way, SPF checks pass, DMARC alignment occurs, and you maintain one source of truth. The DMARC specification explicitly supports this pattern as a best practice.
Monitor the results through DMARC aggregate (ru) and forensic (ruf) reports. These reports show which subdomains or services fail alignment—even if they use valid credentials. A report might reveal that a helpdesk tool sends from [email protected] but uses a From header that doesn’t match its SPF-aligned domain. You can use this data to fix misconfigurations, not just block or quarantine.
When you’re validating addresses before sending, tools like MailTester can help flag risk signals that may point to misaligned setups. Check individual addresses to ensure they’re both syntactically valid and likely to pass DMARC checks, even if your broader domain policy isn’t fully optimized yet.
Centralizing policy enforcement doesn’t mean losing flexibility. It means you’re not trusting every subdomain to do the right thing—because they often don’t. Instead, you’re in control.
How Sender Reputation and Deliverability Are Impacted by DMARC Conflicts
DMARC policy conflicts — especially when subdomains fail to align with the parent domain’s policies — can seriously damage sender reputation, even if the email is legitimate. A single failed DMARC check from a poorly configured subdomain can trigger inbox filtering or throttling across major providers like Gmail, Outlook, and Yahoo. This isn’t a minor hiccup; it’s a signal that your domain’s authenticity is inconsistent, and that raises red flags.
Reputation Is Built on Consistency
Even if your messages aren’t malicious, repeated DMARC failures — particularly across multiple subdomains — suggest a lack of control or configuration oversight. Major inbox providers use aggregate signals like DMARC failure rates and authentication consistency to judge sender trustworthiness. A history of failures may cause them to apply stricter filters, reduce inbox placement, or even throttle delivery volume.
Let’s say your marketing team uses a subdomain like mail.yourcompany.com to send newsletters. If it doesn’t properly align SPF, DKIM, or DMARC, but your core domain yourcompany.com does, the inconsistency is still flagged. Inbox providers see this as a weak link. One flawed subdomain doesn’t just affect that one sender — it can impact all email sent from the primary domain, regardless of whether that email is secure.
Failures Cascade Beyond Subdomains
DMARC doesn’t just validate individual messages; it evaluates the entire domain ecosystem. When a subdomain fails validation, it’s often treated as a sign of broader misconfiguration. Providers like Google and Microsoft monitor these patterns over time. Once a domain shows repeated alignment issues, sender reputation metrics can drop, meaning future mail may land in spam or be silently deprioritized.
Think of it like a shared security badge: one compromised badge — even if it’s just one employee’s temporary access — can trigger a full review of everyone’s credentials.
Real-world evidence shows that consistent authentication failures — even from isolated sources — are correlated with poor deliverability. According to an industry study by Return Path (now Validity), emails from domains with high DMARC failure rates are 4.3x more likely to be marked as spam. This doesn’t mean the sender is malicious — just that the infrastructure appears unreliable.
You can use tools like MailTester’s email checker to test individual addresses for validity and authentication readiness before sending. For larger campaigns, bulk verification helps find problematic addresses early, reducing the risk of repeated failures that impact your domain-wide reputation.
Fixing DMARC conflicts isn’t just about alignment — it’s about proving consistency across every point where your domain is used. That consistency is what inbox providers reward with reliable inbox placement.
Checklist: Preventing DMARC Policy Delegation Conflicts Across Your Enterprise
You prevent DMARC policy delegation conflicts by auditing every subdomain, standardizing alignment mode (relaxed for subdomains), enforcing one DMARC policy at the root, using DMARC reports to hunt alignment failures, validating sending domains in real time, removing catch-all and role accounts from bulk routes, and integrating verification tools like MailTester into platforms such as SendGrid or HubSpot. These steps ensure your emails align with your domain policy — reducing bounces, improving inbox placement, and protecting sender reputation.
Core Audit & Policy Enforcement
- Audit all sending subdomains (e.g., mail.example.com, newsletter.example.com) for DMARC policies. Even if a subdomain isn’t used, it can still inherit or override root policies if not properly defined.
- Standardize alignment mode to relaxed for subdomains. This reduces false positives caused by differing SPF or DKIM header domains, especially when third parties route mail through your infrastructure.
- Enforce a single, intentional DMARC policy at the root domain (e.g., v=DMARC1; p=none; rua=mailto:[email protected];). Never allow subdomains to set their own policies unless they’re explicitly managed and aligned.
- Use DMARC reporting (via
ruandruftags) to identify alignment failures. Regularly review reports from aggregators like dmarc.org or your email service provider to detect unauthorized domains or misconfigured routing.
Preventing Delivery Breakage from Problematic Addresses
- Verify every sending address with a real-time verification API before adding it to high-volume sends. Services like MailTester’s API can detect invalid, catch-all, or disposable addresses before they damage your sender reputation.
- Identify and quarantine catch-all or role accounts (e.g., admin@, info@, sales@) used in mass campaigns. These often exist only to receive mail, not to respond, and frequently trigger filtering due to lack of inbox activity.
- Integrate email verification into your workflow with tools like Mailchimp, HubSpot, or SendGrid. Automated checks at list upload or campaign send time prevent misrouted emails and maintain a clean sending reputation.
- Use bulk verification for large lists—especially those sourced externally—to catch entire segments of invalid or high-risk addresses before you send. See how it works: MailTester’s bulk list verification.
DMARC isn’t a static policy — it must be monitored and enforced across all domains and subdomains to prevent delegation conflicts that break email delivery.
Consistency matters. Without a central policy, you get conflicting enforcement. Without real-time checks, bad addresses slip through. Together, these controls prevent policy delegation issues, reduce bounces, and maintain deliverability across enterprise routing chains.
Integrating MailTester with Your Workflow to Maintain DMARC Health
You can prevent DMARC policy conflicts in enterprise email routing by validating new sender domains and third-party email sources before they go live, using MailTester’s real-time API to catch invalid or misconfigured domains early. This stops misrouting before it causes authentication failures or inbox placement issues across major providers.
Validate Before You Route
Let’s say your team is adding a new subdomain for transactional emails. Before enabling it in your routing, run it through MailTester’s verification API. It checks for basic domain health, including SPF, DKIM, and DMARC alignment—no need to manually verify each record. If the domain has a conflicting or missing DMARC policy, you’ll know before it harms deliverability.
For larger campaigns, use the bulk verification tool to scan customer or vendor email lists. This reveals any addresses tied to domains with strict or conflicting DMARC policies. You’ll see which ones are high-risk, so you can either remove them or verify they’re properly authenticated before sending.
Turn Reports Into Actions
DMARC reports are detailed but hard to parse. With MailTester’s in-app AI assistant, you don’t need to spend hours decoding XML reports from providers like Google or Microsoft. It identifies alignment mismatches—like a sender domain that doesn’t match the domain in the From header—and suggests fixes, such as adjusting SPF or revising DKIM signing policies.
Even if your setup aligns today, that doesn’t mean it will tomorrow. Schedule regular inbox-placement tests for critical flows—like password resets or order confirmations—using MailTester’s testing tools. This confirms your messages still reach inboxes across Gmail, Outlook, Yahoo, and other major platforms, even after email routing changes.
DMARC is not static. Policies evolve, domains change, and third-party systems drift. Continuous validation—via the API, bulk checks, and inbox testing—ensures compliance isn't a one-time setup but an ongoing practice. The goal isn’t perfection, but consistency. And that’s what MailTester helps you maintain at scale.
For enterprises managing complex email ecosystems, this approach reduces risk across routing, delivery, and compliance. It’s not about avoiding all bounces—it’s about knowing which ones matter, and fixing the ones you can.
Conclusion: DMARC Conflicts Are Preventable With Centralized Oversight and Verification
DMARC policy delegation conflicts are not a technical inevitability. They arise from inconsistent, isolated configurations across departments and systems — not from flaws in the protocol itself.
Centralized oversight, real-time verification, and enforced alignment rules ensure that sending domains maintain valid authentication across all email routes, regardless of provider or routing path.
Tools like MailTester deliver the precision and visibility needed to detect and correct misconfigurations before they degrade deliverability — without relying on manual DNS inspection or guesswork.
Sources
- DMARC adoption among top domains surged 75% between 2023 and 2025 — from 27.2% to 47.7% — in the wake of Google and Yahoo's bulk-sender authentication requirements. — EasyDMARC 2025 DMARC Adoption Report (2025)
- Since May 5, 2025, Microsoft Outlook requires SPF, DKIM, and DMARC from domains sending 5,000+ emails per day, rejecting non-compliant mail outright at the SMTP level with error 550 5.7.515. — Microsoft Outlook requirements (via MailOver bulk-sender requirements guide) (2025)
Keep reading
- Email authentication: SPF, DKIM, DMARC, BIMI and MTA-STS (complete guide)
- Correcting SPF Record Parsing Errors in On-Premise Email Platforms
- Fix SPF Record Error Due to Include Directive Exceeding 255 Characters
- Fix Invalid DKIM Algorithms with Our Email Verification SDK
- Does Absence of DKIM Signature Cause Email Rejection? 2026
Ready to put this into practice? MailTester verifies emails with 98.9% accuracy — start with 100 free verifications.
Frequently asked questions
What is a DMARC policy delegation conflict?
It occurs when multiple subdomains or sending systems within an enterprise apply inconsistent DMARC policies, leading to alignment failures in inbound email validation.
Can DMARC policies conflict even if SPF and DKIM are valid?
Yes, DMARC failures can happen despite valid SPF and DKIM if the From domain doesn’t align with the authorized sending domain—alignment is enforced independently.
How do catch-all domains affect DMARC alignment?
Catch-all domains may accept all emails, but they often lack strict SPF or DKIM controls, increasing the risk of misalignment and DMARC failure.
What does 'p=none' mean in a DMARC record?
It instructs receivers to take no action on failed DMARC checks—messages are delivered but not blocked, which increases risk of spoofing and alignment issues.
How can I test if my email passes DMARC?
Use an inbox-placement testing service like MailTester to send synthetic emails through real providers and observe whether alignment and policy enforcement pass.
Do DMARC reports help fix policy conflicts?
Yes—DMARC aggregate and forensic reports provide detailed data on which subdomains or senders are failing alignment, enabling root-cause analysis.
Is it safe to use 'p=reject' in production?
Yes, but only after ensuring all legitimate senders are correctly configured. Start with 'p=quarantine' to monitor impact before enforcing rejection.
Can MailTester detect DMARC misalignment?
Yes—via inbox-placement testing and real-time verification, MailTester identifies whether emails fail DMARC alignment during delivery, even without direct DNS access.
How often should I audit my DMARC policies?
At least quarterly, or after introducing new email-sending services, to ensure alignment and policy consistency across all subdomains.
Why do some emails pass DMARC on Gmail but fail on Outlook?
Different providers may have varying thresholds and policies for DMARC enforcement, especially regarding alignment and policy inheritance across subdomains.
What if my vendor uses a different DMARC policy than mine?
Require vendors to align their policies with your root domain’s standard, or verify their domains via a third-party tool to ensure consistent delivery.
Can disposable email domains cause DMARC issues?
Yes—many disposable domains lack proper SPF/DKIM or enforce inconsistent policies, which can lead to DMARC failures when used as sending addresses.