RFC 5337: Internationalized Delivery Status and Disposition Notifications

Extends DSN and MDN formats to support internationalized addresses.
Alaa
By Alaa
SMTPedia documents email infrastructure end to end: SMTP standards from the RFC archive, delivera...
7 min read Updated Jul 22, 2026 54 views
⚠ Obsoleted by RFC 6533. New implementations should reference the current version.
RFC 5337
Internationalized Delivery Status and Disposition Notifications
Obsoleted
Domain
Internationalization
Published
September 2008
Obsoleted by
RFC 6533
SMTP relevance
Historical
↗ Read on rfc-editor.org

What this RFC defined

RFC 5337 extended the Delivery Status Notification (DSN) and Message Disposition Notification (MDN) formats to support internationalized email addresses. Before RFC 5337, DSN messages could not correctly represent non-ASCII addresses in their structured fields, which was a gap as EAI deployment began in the late 2000s.

Where you would have seen it in practice

In early internationalized email deployments, if a message sent to a UTF-8 address failed to deliver, the bounce message generated by the receiving server needed to include the original internationalized address in the DSN. RFC 5337 defined how to do this for that transitional period before the complete EAI suite was finalised.

How it connects to other RFCs

RFC 5337 was part of the early EAI standardisation effort and extended RFC 3464 (DSN format). It was obsoleted by RFC 6533, which is the current standard for internationalized DSN and MDN. RFC 6533 superseded both RFC 5337 and the equivalent MDN extension in a single, consolidated update.

Current status

RFC 5337 was obsoleted by RFC 6533 in 2012. New implementations should reference RFC 6533 for internationalized delivery notifications. RFC 5337 is retained as a historical reference documenting the evolution of EAI standardisation during its early development phase.

Internationalized DSNs and MDNs

RFC 5337 defined how DSNs (delivery status notifications) and MDNs (message disposition notifications) work with the internationalized email extensions (RFC 6531 SMTPUTF8 and RFC 6532 headers). When an email address contains non-ASCII characters, the corresponding status reports need to carry those addresses correctly without ASCII-encoding them. RFC 5337 specified the encoding rules and extended the report format to accommodate international addresses.

Superseded by RFC 6533

RFC 5337 was updated and largely subsumed by RFC 6533 in February 2012, which is now the current standard for internationalized delivery reports. The concepts are the same; RFC 6533 integrated errata and clarifications. If your implementation references RFC 5337, it is not broken but new work should target RFC 6533. Both documents extend RFC 3464 (DSN) and RFC 8098 (MDN) with internationalization support.

Practical relevance

Internationalized email is still relatively niche in 2026: most email addresses use ASCII, and the SMTPUTF8 extension is not universally supported. However, when it is used (Japanese, Chinese, Cyrillic, or other non-Latin domains and mailboxes), correct DSN handling matters for bounce processing. If your MTA supports SMTPUTF8, it should also implement RFC 6533-style DSNs to avoid producing bounces that fail to identify the failed recipient correctly.

Quick Reference

RFC 5337 (September 2008), updated by RFC 6533 (2012), defines Internationalization Extensions for DSN and MDN: how DSN (Delivery Status Notification) and MDN (Message Disposition Notification) handle internationalized email addresses per SMTPUTF8. Introduces new SMTP extension keyword UTF8SMTP (later renamed SMTPUTF8) and defines how DSN/MDN report failures for UTF-8 addresses. Companion to the SMTPUTF8 ecosystem; ensures international mail bounces produce actionable diagnostic reports.

RFC 5337 at a glance

AspectDetail
PurposeExtend DSN and MDN for internationalized email addresses
StatusHistorical (experimental); updated by RFC 6533 (2012)
Companion RFCsRFC 6531 SMTPUTF8, RFC 6532 internationalized headers
Applies toDSN (per RFC 3464) and MDN (per RFC 8098)
Key conceptUTF-8 addresses in Original-Recipient, Final-Recipient, and other DSN/MDN fields
PublishedSeptember 2008
Superseded byRFC 6533 (February 2012)

Changes from RFC 5337 to RFC 6533

AspectRFC 5337 (2008)RFC 6533 (2012)
SMTP extension keywordUTF8SMTPSMTPUTF8 (renamed for consistency)
StatusExperimentalStandards track
ORCPT parameterIntroduced; UTF-8 formSame, refined
DSN report formatUTF-8 in Original-Recipient, Final-RecipientSame, with new address-type utf-8
Downgrade pathDefined for legacy DSN receiversSame

The ORCPT parameter with UTF-8 addresses

SMTPUTF8 with ORCPT for DSN reporting Traditional DSN (ASCII addresses): MAIL FROM:<alice@example.com> ENVID=abc123 RCPT TO:<bob@example.com> NOTIFY=FAILURE ORCPT=rfc822;bob@example.comSMTPUTF8 DSN (UTF-8 addresses): MAIL FROM:<alice@例え.jp> SMTPUTF8 ENVID=abc123 RCPT TO:<用户@example.com> NOTIFY=FAILURE ORCPT=utf-8;用户@example.comThe ORCPT address-type “utf-8” indicates the original recipient was specified as UTF-8. This allows DSN reports to preserve the international address as the sender originally wrote it.In the DSN report (per RFC 3464): Original-Recipient: utf-8;用户@example.com Final-Recipient: utf-8;用户@example.com Action: failed Status: 5.1.1Contrast with legacy (all ASCII): Original-Recipient: rfc822;bob@example.com Final-Recipient: rfc822;bob@example.com Action: failed Status: 5.1.1

Downgrade path for legacy DSN receivers

Legacy DSN receivers cannot parse UTF-8 addresses. When a message with SMTPUTF8 UTF-8 recipients transits an intermediate MTA that does not support SMTPUTF8, the MTA must downgrade the message. RFC 5337/6533 defines: convert UTF-8 addresses to A-label (Punycode) form for the domain part, mark the local-part as best-effort or fail. The DSN if generated must reflect the downgrade in its Diagnostic-Code.

Common internationalized DSN mistakes

Not advertising SMTPUTF8 while accepting UTF-8 in RCPT. If your MTA accepts UTF-8 addresses in RCPT TO but the EHLO response does not advertise SMTPUTF8, clients cannot know it is safe to send them. Advertise correctly, or the mixed behavior confuses senders.
Producing DSN with ASCII-fold recipients when UTF-8 was used. If the sender used 用户@example.com as recipient and delivery fails, the DSN should report Final-Recipient: utf-8;用户@example.com. ASCII-folding to something like Final-Recipient: rfc822;?@example.com loses information; the sender cannot identify which recipient failed.
Referencing RFC 5337 instead of RFC 6533. RFC 6533 supersedes RFC 5337; new implementations should target RFC 6533 (which also renamed the SMTP keyword from UTF8SMTP to SMTPUTF8 for consistency with the broader ecosystem).
Not implementing downgrade for legacy peers. An MTA that speaks SMTPUTF8 to modern peers but simply drops messages destined for legacy peers is limiting reach. Implement downgrade: convert domain to A-label, best-effort ASCII the local-part where possible, generate a DSN if local-part cannot be represented.
Assuming DSN parsers handle UTF-8 recipients. Some DSN processing pipelines (bounce parsers, feedback loop tooling) only handle ASCII. Passing UTF-8 recipient addresses through them may produce incorrect matches or errors. Test bounce processing with SMTPUTF8-originated DSNs before enabling internationalized sending at scale.
Internationalization ecosystem
  • RFC 6533: Internationalization Extensions for DSN and MDN (supersedes RFC 5337)
  • RFC 6531: SMTPUTF8 (base SMTP extension)
  • RFC 6532: Internationalized email headers
  • RFC 6530: Overview of internationalized email
  • RFC 5890: IDNA 2008 (domain part internationalization)
DSN and MDN base standards
  • RFC 3464: DSN base standard
  • RFC 3461: DSN SMTP parameters
  • RFC 3463: Enhanced status codes
  • RFC 8098: MDN base standard
  • RFC 6522: multipart/report format
SMTPedia companion guides

Frequently asked questions

Should I reference RFC 5337 or RFC 6533?

RFC 6533 for current work. It superseded RFC 5337 in 2012, renamed the SMTP extension keyword from UTF8SMTP to SMTPUTF8 for consistency, and moved from experimental to standards track. RFC 5337 remains valid for historical reference; the semantics carried through to RFC 6533 largely unchanged.

What happens to a bounce when the recipient has an international address?

Depends on peer support. If both sender and receiver support SMTPUTF8 and RFC 6533, the DSN preserves the UTF-8 address in Original-Recipient and Final-Recipient using address-type utf-8. If the DSN is generated by a legacy intermediate MTA, the address may be downgraded to A-label form (for the domain) or lost (for a non-ASCII local-part). Well-designed downgrade paths per RFC 6533 minimize information loss.

Does every MTA supporting SMTPUTF8 need to implement RFC 6533?

Strongly recommended. An MTA that advertises SMTPUTF8 but produces DSNs that mangle UTF-8 recipient addresses is providing a broken experience. RFC 6533 defines the correct DSN behavior for internationalized addresses. Modern MTAs (Postfix, Exim, Sendmail, Microsoft Exchange) implement SMTPUTF8 with proper DSN handling.

What is the difference between address-type rfc822 and utf-8 in DSN?

The address-type in Original-Recipient and Final-Recipient specifies how to interpret the address string. rfc822 means ASCII per RFC 5322 addr-spec. utf-8 (introduced by RFC 5337 and refined by RFC 6533) means UTF-8 per SMTPUTF8. Parsers must handle both; utf-8 addresses need Unicode-aware normalization for comparison.

Are internationalized DSNs common in 2026?

Growing but still niche. SMTPUTF8 adoption is uneven; mailboxes with non-ASCII local-parts remain rare outside East Asia, Cyrillic-speaking regions, and Arabic-speaking regions. Where adopted, RFC 6533-compliant DSN handling is essential for actionable bounce processing. Bounce-handling infrastructure at large senders should be tested with SMTPUTF8 samples to catch parser issues before they cause data loss.


About the Author

Alaa - SMTPedia author

Alaa · LinkedIn

Email infrastructure specialist with 8+ years of hands-on experience in SMTP, deliverability, and email verification. I’ve configured and troubleshot mail systems across Postfix, Exchange, and cloud relays, managed IP reputation and warmup campaigns, and built verification pipelines processing millions of addresses. My work spans DNS authentication (SPF, DKIM, DMARC, BIMI), bounce handling, blocklist monitoring, and compliance frameworks including CAN-SPAM and GDPR. I write every article on SMTPedia to give email professionals, developers, and marketers the accurate, RFC-grounded reference they need.


About SMTPedia

SMTPedia is an independent email industry reference covering SMTP, IMAP, POP3, email deliverability, marketing platforms, DNS authentication, and email verification. Every article is researched from official provider documentation, IETF RFCs, and industry best practices. Settings and configurations are verified quarterly.

We are cited as a source by ChatGPT, Microsoft Copilot, and thousands of email professionals worldwide. Learn more about our editorial process.