---
title: "What Is ADSP? Understanding Author Domain Signing Practices in DKIM | DMARC Report"
description: "Learn what ADSP is, how Author Domain Signing Practices works with DKIM, its policies and limitations, and why DMARC is more relevant today."
image: "https://dmarcreport.com/og/blog/what-is-adsp-understanding-author-domain-signing-practices-in-dkim.png"
canonical: "https://dmarcreport.com/blog/what-is-adsp-understanding-author-domain-signing-practices-in-dkim/"
---

Quick Answer

ADSP (Author Domain Signing Practices) is a DKIM-related standard that lets domain owners specify how emails should be signed. It supports unknown, all, and discardable policies, but DMARC is now more widely used for authentication, alignment, enforcement, and reporting.

Share 

[ ](https://www.linkedin.com/sharing/share-offsite/?url=undefined%2Fblog%2Fwhat-is-adsp-understanding-author-domain-signing-practices-in-dkim%2F "Share on LinkedIn") [ ](https://twitter.com/intent/tweet?text=What%20Is%20ADSP%3F%20Understanding%20Author%20Domain%20Signing%20Practices%20in%20DKIM&url=undefined%2Fblog%2Fwhat-is-adsp-understanding-author-domain-signing-practices-in-dkim%2F "Share on X/Twitter") [ ](https://www.facebook.com/sharer/sharer.php?u=undefined%2Fblog%2Fwhat-is-adsp-understanding-author-domain-signing-practices-in-dkim%2F "Share on Facebook") [ ](https://reddit.com/submit?url=undefined%2Fblog%2Fwhat-is-adsp-understanding-author-domain-signing-practices-in-dkim%2F&title=What%20Is%20ADSP%3F%20Understanding%20Author%20Domain%20Signing%20Practices%20in%20DKIM "Share on Reddit") [ ](mailto:?subject=What%20Is%20ADSP%3F%20Understanding%20Author%20Domain%20Signing%20Practices%20in%20DKIM&body=Check out this article: undefined%2Fblog%2Fwhat-is-adsp-understanding-author-domain-signing-practices-in-dkim%2F "Share via Email") 

![ADSP Author Domain Signing Practices](https://media.mailhop.org/dmarcreport/dmarc-report-2713-1788355701659.jpg) 

## Try Our Free DKIM Lookup

Auto-discover DKIM selectors for any domain - scan 185 common selectors across all major providers.

[ Discover DKIM Selectors → ](/tools/dkim-lookup/) 

Email authentication relies on several standards that help receiving mail servers determine whether a message is legitimate. One of the technologies associated with DKIM is [Author Domain Signing Practices (ADSP)](https://en.wikipedia.org/wiki/Author%5FDomain%5FSigning%5FPractices). It was designed to allow a domain owner to publish information about how messages sent from that domain should be signed.

Although ADSP is no longer the primary choice for modern email authentication, understanding how it works provides useful background on the development of **email security protocols** and explains why newer standards such as DMARC have become more widely adopted.

## Key Takeaways

- **ADSP**, or Author Domain Signing Practices, was created as an extension to DKIM.
- It allows a domain to indicate whether messages using that domain are expected to carry DKIM signatures.
- The visible From: address identifies the author domain used when evaluating the message.
- ADSP supports three signing policies: **unknown, all, and discardable**.
- An ADSP policy can be published through a dedicated [TXT record](https://www.cloudns.net/wiki/article/14/) in DNS.
- ADSP has important limitations, which is one reason DMARC has become the preferred approach for enforcing modern email authentication policies.

## What Is ADSP?

Author Domain Signing Practices is an extension associated with DomainKeys Identified Mail (DKIM). Its purpose is to communicate a domain owner’s expectations regarding DKIM signing.

DKIM works by attaching a **cryptographic signature** to an email. The receiving [mail server](https://www.cloudflare.com/learning/email-security/what-is-a-mail-server/) can retrieve the appropriate public key from DNS and use it to determine whether the signature is valid and whether the message content has been changed after signing.

ADSP was intended to address another question: What should a recipient expect when an email claiming to come from a particular domain does not have a DKIM signature?

A domain could publish an ADSP policy in DNS to describe its expected signing behavior. Mail systems could then use that information when evaluating messages that lacked a valid DKIM signature.

_In simple terms, DKIM provides a way to verify a signature, while ADSP was designed to communicate what a domain expected regarding the presence of that signature._ ![Dmarc Check 3697](https://media.mailhop.org/dmarcreport/dmarc-check-3697-1788351775984.jpg)

## Understanding the Author Address

To understand ADSP, it is important to distinguish the author address from other email addresses found within an [email’s headers](https://proton.me/blog/what-are-email-headers).

The **From:** field is the address normally displayed to the recipient. It identifies the domain that appears to be responsible for the message and is therefore commonly referred to as the author address.

For example:

```
From: user@example.com
```

Here, `example.com` represents the author domain.

The author address should not be confused with the Return-Path address. The Return-Path is associated with the envelope sender and is used for **handling delivery-related messages** such as bounces. It is not the same as the address displayed in the visible From field.

This distinction is important because email authentication technologies evaluate different parts of a message and its headers.

## What Is an Author Domain Signature?

A DKIM signature contains several parameters that help a receiving mail server validate the message. One of the most important is the **`d=` tag**.

The `d=` value identifies the domain that generated the DKIM signature.

For example:

```
d=example.com
```

If an email contains a DKIM signature associated with `example.com`, the recipient’s mail server can retrieve the corresponding [public key](https://www.coursera.org/in/articles/public-key) from DNS and verify the signature.

_Ideally, the domain used in the DKIM signature should have an appropriate relationship with the domain shown in the From address_. When these domains do not correspond as expected, it may indicate that the message was sent through a [third-party domain](https://support.squarespace.com/hc/en-us/articles/360001280748-Verify-your-third-party-domain-for-use-with-Email-Campaigns), incorrectly configured, or potentially attempting to impersonate another sender.

DKIM validation alone, however, does not provide the complete policy and reporting framework offered by **modern authentication standards**.

## How Does ADSP Work?

![Dmarc Lookup 4697](https://media.mailhop.org/dmarcreport/dmarc-lookup-4697-1788351808049.jpg)ADSP uses a DNS TXT record to publish the signing expectations for a domain.

When an email claims to originate from a **particular author domain**, a receiving system can look for the domain’s ADSP record and determine which signing practice has been published.

ADSP defines three primary signing practices:

### 1\. Unknown

The unknown option does not make a firm requirement that messages from the domain must contain DKIM signatures.

This **provides flexibility for organizations** whose email infrastructure includes multiple sending systems or whose users may send mail through different servers.

With this approach, the domain does not explicitly state that every message must be signed.

### 2\. All

The all policy indicates that messages associated with the author domain are expected to contain a valid DKIM signature.

This creates a stronger expectation than the unknown setting because the domain is declaring that its email should be signed.

_Organizations choosing this approach need to make sure that all legitimate sending platforms are properly configured for DKIM. Otherwise, legitimate messages could fail authentication expectations._

### 3\. Discardable

The discardable policy represents the strictest ADSP option.

It indicates that messages associated with the author domain are expected to have valid [DKIM signatures](https://docs.mapp.com/docs/dkim-signature) and that messages failing to meet this requirement may be rejected or discarded by the receiving system.

This resembles the general enforcement concept found in modern **DMARC policies**, particularly when DMARC is configured to reject authentication failures. However, ADSP and DMARC are different technologies and should not be treated as interchangeable.

## Publishing an ADSP Record in DNS

An **ADSP policy** is published as a TXT record under the `_adsp._domainkey` namespace.

A typical record can look like this:

```
_adsp._domainkey.example.com. IN TXT "dkim=discardable"
```

Replace `example.com` with the domain for which you want to publish the policy.

The policy value can be changed depending on the desired signing practice:

dkim=unknown

or:

dkim=all

or:

dkim=discardable

After publishing the record, DNS changes may require some time to propagate. Organizations should also verify that their **legitimate email platforms** are correctly configured before applying a restrictive policy.

## Why the Unknown Policy Can Be Safer

A strict signing requirement can create problems when an organization does not have complete control over every system capable of sending email on its behalf.

For example, a company might use:![Dmarc Record Generator 3914](https://media.mailhop.org/dmarcreport/dmarc-record-generator-3914-1788351827986.jpg)

- Its primary corporate email platform
- Marketing automation software
- [Customer support](https://www.ibm.com/think/topics/customer-support) systems
- CRM applications
- [Transactional email](https://www.activecampaign.com/glossary/transactional-email) providers
- Website notification systems
- External business applications

If some of these services send messages without the expected **DKIM configuration**, a strict ADSP policy could cause legitimate messages to fail authentication expectations.

For this reason, a less restrictive approach may be more appropriate in environments where the organization cannot guarantee that every legitimate message will be DKIM-signed.

Before enforcing any [email authentication](https://dmarcreport.com/blog/ensure-email-authentication-with-domain-health-report-and-dmarc-insights/) policy, administrators should identify all legitimate sending sources and confirm their authentication configuration.

## ADSP vs. DKIM

ADSP and DKIM are related, but they perform different functions.

**DKIM** adds a cryptographic signature to an email. The receiving server can validate that signature using a public key published in DNS.

_ADSP, on the other hand, communicates the domain’s expectations concerning DKIM signing._

A simplified way to understand the difference is:

- **DKIM:** “This message has been signed.”
- **ADSP:** “This is how my domain expects messages to be signed.”

DKIM therefore provides [message-level authentication](https://trainingcamp.com/glossary/message-authentication/), while ADSP was intended to provide an additional policy layer.

## Limitations of ADSP

Although ADSP was designed to strengthen DKIM-based authentication, it has several limitations.

One major challenge is that modern **email ecosystems** are highly distributed. Businesses frequently rely on multiple cloud platforms and [third-party services](https://www.iubenda.com/en/blog/third-party-service-provider/) to send email. Maintaining a strict requirement that every message carry an appropriate DKIM signature can therefore become difficult.

ADSP also lacks several capabilities that organizations now expect from an effective email authentication framework.

For example, ADSP does not provide the comprehensive **reporting and alignment mechanisms** associated with DMARC\*.\* It also does not offer the same flexibility for defining how receiving systems should handle authentication failures.

These limitations have significantly reduced the practical importance of ADSP in modern email security.

## ADSP vs. DMARC

![Dmarc Lookup 2583](https://media.mailhop.org/dmarcreport/dmarc-lookup-2583-1788351853411.jpg)DMARC (Domain-based Message Authentication, Reporting, and Conformance\*\*)\*\* was developed to address many of the shortcomings found in earlier email authentication approaches.

Rather than relying only on DKIM signing expectations, DMARC combines authentication results with [domain alignment](https://mapp.com/blog/what-are-aligned-domains/) and a **published policy**.

A DMARC policy can tell receiving mail servers what to do when messages fail authentication requirements.

Common DMARC policy options include:

**p=none**

This allows organizations to monitor authentication results without asking receiving servers to reject or quarantine messages.

**p=quarantine**

This instructs receiving systems to treat authentication failures as suspicious, often by placing them in a spam or quarantine location.

**p=reject**

This provides the **strongest enforcement** and tells receiving servers to reject messages that fail the applicable DMARC requirements.

_DMARC also supports reporting, giving domain owners visibility into authentication activity and potential sources of unauthorized email._

## Why DMARC Is More Relevant Today

Modern organizations rarely rely on a single mail server. Email can originate from numerous internal systems, [SaaS platforms](https://www.appdirect.com/resources/glossary/saas-platform), marketing tools, **support applications**, and third-party providers.

DMARC is better suited to this environment because it combines:

- SPF authentication
- DKIM authentication
- Domain alignment
- [Policy enforcement](https://www.rubrik.com/insights/policy-enforcement)
- [Aggregate reporting](https://www.qvigilance.com/aggregate-reporting/)
- Failure reporting
- Visibility into unauthorized email sources

This gives organizations a broader framework for protecting their [domains against spoofing](https://www.infosecurity-magazine.com/news/infosec2025-email-domains-spoofing/), phishing, and unauthorized email use.

Instead of simply stating that messages should carry DKIM signatures, **DMARC provides** a mechanism for determining whether authentication results align with the domain shown to recipients and what should happen when those requirements are not satisfied.

## ADSP and Modern Email Authentication

_ADSP remains useful as a concept for understanding how email authentication policies evolved, particularly the relationship between DKIM signatures and domain-level signing expectations._

However, organizations implementing email authentication today should generally focus their efforts on modern standards such as **SPF, DKIM, and DMARC**.

A strong email authentication strategy should begin by identifying every legitimate source that sends messages using the organization’s domains. DKIM should then be configured for supported sending services, [SPF](https://dmarcreport.com/what-is-spf/) should identify authorized infrastructure, and DMARC should be introduced to establish alignment, monitoring, and enforcement.![Spf Record Checker 2039](https://media.mailhop.org/dmarcreport/spf-record-checker-2039-1788351535322.jpg)

## Final Thoughts

Author Domain Signing Practices was created to extend [DKIM](https://dmarcreport.com/blog/the-role-of-dkim-public-and-private-keys-email-security/) by allowing domains to communicate their expectations about email signing. Its **three policy choices**—unknown, all, and discardable—provide different levels of requirements for DKIM-signed messages.

However, the modern email environment has become significantly more complex than when ADSP was introduced. Organizations now need authentication, domain alignment, policy enforcement, and reporting capabilities that go beyond simply requiring DKIM signatures.

That is where [DMARC](https://dmarcreport.com/) provides a more comprehensive solution. _By bringing SPF and DKIM together with alignment, enforcement, and reporting, DMARC gives domain owners greater visibility and control over messages claiming to originate from their domains._

Understanding ADSP is still valuable for learning the history of email authentication, but organizations looking to strengthen their current email [security posture](https://www.ibm.com/think/topics/security-posture) should prioritize modern authentication standards and maintain accurate SPF, DKIM, and DMARC configurations.

![Brad Slavin](https://media.mailhop.org/dmarcreport/images/team/brad-slavin.jpg) 

[ Brad Slavin ](/authors/brad-slavin/) 

General Manager

Founder and General Manager of DuoCircle. Product strategy and commercial lead for DMARC Report's 2,000+ customer base.

[LinkedIn Profile →](https://www.linkedin.com/in/bradslavin) 

## Take control of your DMARC reports

Turn raw XML into actionable dashboards. Start free - no credit card required.

[Start Free Trial](https://app.dmarcreport.com/signup?plan=free) [Check Your DMARC Record](/tools/dmarc-checker/) 

Scan Your Domain Now

Instantly scan your domain for DKIM, SPF, and DMARC issues

Check My Domain 

Share this article

[ ](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fdmarcreport.com%2Fblog%2Fwhat-is-adsp-understanding-author-domain-signing-practices-in-dkim%2F) [ ](https://twitter.com/intent/tweet?text=What%20Is%20ADSP%3F%20Understanding%20Author%20Domain%20Signing%20Practices%20in%20DKIM&url=https%3A%2F%2Fdmarcreport.com%2Fblog%2Fwhat-is-adsp-understanding-author-domain-signing-practices-in-dkim%2F) [ ](https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fdmarcreport.com%2Fblog%2Fwhat-is-adsp-understanding-author-domain-signing-practices-in-dkim%2F) Copy 

Related Articles

- [ ![10 Critical Learnings From Verizon’s 2021 DBIR - A DMARCReport Perspective](https://media.mailhop.org/dmarcreport/images/2022/04/dmarc-alignment-6379.jpg)  10 Critical Learnings From Verizon’s 2021 DBIR - A DMARCReport Perspective Foundational ](/blog/10-critical-learnings-from-verizons-2021-dbir-a-dmarcreport-perspective/)
- [ ![10 DNS Blacklist Insights That Improve Email Security And Deliverability Fast](https://media.mailhop.org/dmarcreport/images/2022/04/dmarc-alignment-6379.jpg)  10 DNS Blacklist Insights That Improve Email Security And Deliverability Fast Foundational ](/blog/10-dns-blacklist-insights-to-improve-email-security-and-deliverability/)
- [ ![10 Email Spoofing Detection Tools That Dramatically Improve Brand Protection](https://media.mailhop.org/dmarcreport/images/2022/04/dmarc-alignment-6379.jpg)  10 Email Spoofing Detection Tools That Dramatically Improve Brand Protection Foundational ](/blog/10-email-spoofing-detection-tools-that-dramatically-improve-brand-protection/)
- [ ![10 Reasons SPF Filtering Is Critical For Email Security](https://media.mailhop.org/dmarcreport/images/2022/04/dmarc-alignment-6379.jpg)  10 Reasons SPF Filtering Is Critical For Email Security Foundational ](/blog/10-reasons-spf-filtering-is-critical-for-email-security/)

## Related Articles

[  Foundational 8m  10 Critical Learnings From Verizon’s 2021 DBIR - A DMARCReport Perspective  Nov 25, 2025 ](/blog/10-critical-learnings-from-verizons-2021-dbir-a-dmarcreport-perspective/)[  Foundational 12m  10 DNS Blacklist Insights That Improve Email Security And Deliverability Fast  Nov 14, 2025 ](/blog/10-dns-blacklist-insights-to-improve-email-security-and-deliverability/)[  Foundational 12m  10 Email Spoofing Detection Tools That Dramatically Improve Brand Protection  Nov 11, 2025 ](/blog/10-email-spoofing-detection-tools-that-dramatically-improve-brand-protection/)[  Foundational 12m  10 Reasons SPF Filtering Is Critical For Email Security  Nov 19, 2025 ](/blog/10-reasons-spf-filtering-is-critical-for-email-security/)

```json
{"@context":"https://schema.org","@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138898167","name":"DMARC Report","url":"https://dmarcreport.com","logo":{"@type":"ImageObject","url":"https://dmarcreport.com/images/dmarcreport-logo.png"},"description":"DMARC reporting and email authentication management. Monitor aggregate and forensic DMARC reports, analyze authentication results, and enforce DMARC policies across all your domains.","parentOrganization":{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138883901","name":"DuoCircle LLC","url":"https://www.duocircle.com","sameAs":["https://www.wikidata.org/wiki/Q138883901","https://www.crunchbase.com/organization/duocircle-llc","https://www.linkedin.com/company/duocircle","https://github.com/duocircle"],"subOrganization":[{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138898167","name":"DMARC Report","url":"https://dmarcreport.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897474","name":"AutoSPF","url":"https://autospf.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897912","name":"Phish Protection","url":"https://www.phishprotection.com"}]},"sameAs":["https://www.wikidata.org/wiki/Q138898167","https://www.linkedin.com/company/duocircle","https://x.com/duocirclellc","https://www.g2.com/products/dmarc-report/reviews","https://github.com/duocircle","https://www.crunchbase.com/organization/duocircle-llc","https://www.trustradius.com/products/duocircle/reviews"],"aggregateRating":{"@type":"AggregateRating","ratingValue":"4.8","reviewCount":"471","bestRating":"5","worstRating":"1","url":"https://www.g2.com/products/dmarc-report/reviews"},"contactPoint":{"@type":"ContactPoint","contactType":"customer support","url":"https://dmarcreport.com/support/"},"knowsAbout":["DMARC","DMARC Reporting","DMARC Aggregate Reports","DMARC Forensic Reports","Sender Policy Framework","DKIM","Email Authentication","Email Security","DNS Management","Email Deliverability"]}
```

```json
{"@context":"https://schema.org","@type":"WebSite","name":"DMARC Report","url":"https://dmarcreport.com","description":"DMARC reporting and email authentication management. Monitor aggregate and forensic DMARC reports, analyze authentication results, and enforce DMARC policies across all your domains.","publisher":{"@type":"Organization","name":"DMARC Report","url":"https://dmarcreport.com","logo":{"@type":"ImageObject","url":"https://dmarcreport.com/images/dmarcreport-logo.png"},"description":"DMARC reporting and email authentication management. Monitor aggregate and forensic DMARC reports, analyze authentication results, and enforce DMARC policies across all your domains.","parentOrganization":{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138883901","name":"DuoCircle LLC","url":"https://www.duocircle.com","sameAs":["https://www.wikidata.org/wiki/Q138883901","https://www.crunchbase.com/organization/duocircle-llc","https://www.linkedin.com/company/duocircle","https://github.com/duocircle"],"subOrganization":[{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138898167","name":"DMARC Report","url":"https://dmarcreport.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897474","name":"AutoSPF","url":"https://autospf.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897912","name":"Phish Protection","url":"https://www.phishprotection.com"}]}}}
```

```json
[{"@context":"https://schema.org","@type":"BlogPosting","headline":"What Is ADSP? Understanding Author Domain Signing Practices in DKIM","description":"Learn what ADSP is, how Author Domain Signing Practices works with DKIM, its policies and limitations, and why DMARC is more relevant today.","url":"https://dmarcreport.com/blog/what-is-adsp-understanding-author-domain-signing-practices-in-dkim/","datePublished":"2026-09-02T00:00:00.000Z","dateModified":"2026-09-02T00:00:00.000Z","dateCreated":"2026-09-02T00:00:00.000Z","author":{"@type":"Person","@id":"https://dmarcreport.com/authors/brad-slavin/#person","name":"Brad Slavin","url":"https://dmarcreport.com/authors/brad-slavin/","jobTitle":"General Manager","description":"Brad Slavin is the founder and General Manager of DuoCircle, the company behind DMARC Report, AutoSPF, Phish Protection, and Mailhop. He founded DuoCircle in 2014 and has led the company's growth to 2,000+ customers across its email security product family. Brad's focus is product strategy, customer relationships, and the commercial and compliance side of email authentication (DPAs, SLAs, enterprise procurement).","image":"https://media.mailhop.org/dmarcreport/images/team/brad-slavin.jpg","knowsAbout":["Email Security Strategy","SaaS Product Management","Enterprise Compliance","Customer Success","Email Deliverability Business"],"worksFor":{"@type":"Organization","name":"DMARC Report","url":"https://dmarcreport.com"},"sameAs":["https://www.linkedin.com/in/bradslavin"]},"publisher":{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138898167","name":"DMARC Report","url":"https://dmarcreport.com","logo":{"@type":"ImageObject","url":"https://dmarcreport.com/images/dmarcreport-logo.png"},"description":"DMARC reporting and email authentication management. Monitor aggregate and forensic DMARC reports, analyze authentication results, and enforce DMARC policies across all your domains.","parentOrganization":{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138883901","name":"DuoCircle LLC","url":"https://www.duocircle.com","sameAs":["https://www.wikidata.org/wiki/Q138883901","https://www.crunchbase.com/organization/duocircle-llc","https://www.linkedin.com/company/duocircle","https://github.com/duocircle"],"subOrganization":[{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138898167","name":"DMARC Report","url":"https://dmarcreport.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897474","name":"AutoSPF","url":"https://autospf.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897912","name":"Phish Protection","url":"https://www.phishprotection.com"}]},"sameAs":["https://www.wikidata.org/wiki/Q138898167","https://www.linkedin.com/company/duocircle","https://x.com/duocirclellc","https://www.g2.com/products/dmarc-report/reviews","https://github.com/duocircle","https://www.crunchbase.com/organization/duocircle-llc","https://www.trustradius.com/products/duocircle/reviews"],"aggregateRating":{"@type":"AggregateRating","ratingValue":"4.8","reviewCount":"471","bestRating":"5","worstRating":"1","url":"https://www.g2.com/products/dmarc-report/reviews"},"contactPoint":{"@type":"ContactPoint","contactType":"customer support","url":"https://dmarcreport.com/support/"},"knowsAbout":["DMARC","DMARC Reporting","DMARC Aggregate Reports","DMARC Forensic Reports","Sender Policy Framework","DKIM","Email Authentication","Email Security","DNS Management","Email Deliverability"]},"mainEntityOfPage":{"@type":"WebPage","@id":"https://dmarcreport.com/blog/what-is-adsp-understanding-author-domain-signing-practices-in-dkim/"},"articleSection":"foundational","keywords":"","image":{"@type":"ImageObject","url":"https://media.mailhop.org/dmarcreport/dmarc-report-2713-1788355701659.jpg","caption":"ADSP Author Domain Signing Practices"},"speakable":{"@type":"SpeakableSpecification","cssSelector":[".answer-block","h1"]}}]
```

```json
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://dmarcreport.com/"},{"@type":"ListItem","position":2,"name":"Blog","item":"https://dmarcreport.com/blog/"},{"@type":"ListItem","position":3,"name":"Foundational","item":"https://dmarcreport.com/foundational/"},{"@type":"ListItem","position":4,"name":"What Is ADSP? Understanding Author Domain Signing Practices in DKIM","item":"https://dmarcreport.com/blog/what-is-adsp-understanding-author-domain-signing-practices-in-dkim/"}]}
```
