1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
|
<pre>Internet Engineering Task Force (IETF) T. Hansen, Ed.
Request for Comments: 6533 AT&T Laboratories
Obsoletes: <a href="./rfc5337">5337</a> C. Newman
Updates: <a href="./rfc3461">3461</a>, <a href="./rfc3464">3464</a>, <a href="./rfc3798">3798</a>, <a href="./rfc6522">6522</a> Oracle
Category: Standards Track A. Melnikov
ISSN: 2070-1721 Isode Ltd
February 2012
<span class="h1">Internationalized Delivery Status and Disposition Notifications</span>
Abstract
Delivery status notifications (DSNs) are critical to the correct
operation of an email system. However, the existing Draft Standards
(<a href="./rfc3461">RFC 3461</a>, <a href="./rfc3464">RFC 3464</a>, <a href="./rfc6522">RFC 6522</a>) are presently limited to ASCII text in
the machine-readable portions of the protocol. This specification
adds a new address type for international email addresses so an
original recipient address with non-ASCII characters can be correctly
preserved even after downgrading. This also provides updated content
return media types for delivery status notifications and message
disposition notifications to support use of the new address type.
This document extends <a href="./rfc3461">RFC 3461</a>, <a href="./rfc3464">RFC 3464</a>, <a href="./rfc3798">RFC 3798</a>, and <a href="./rfc6522">RFC 6522</a>.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc6533">http://www.rfc-editor.org/info/rfc6533</a>.
<span class="grey">Hansen, et al. Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
Copyright Notice
Copyright (c) 2012 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-2">2</a>. Conventions Used in This Document . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-3">3</a>. UTF-8 Address Type . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-4">4</a>. UTF-8 Delivery Status Notifications . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-4.1">4.1</a>. The message/global-delivery-status Media Type . . . . . . <a href="#page-6">6</a>
<a href="#section-4.2">4.2</a>. The message/global Media Type . . . . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-4.3">4.3</a>. The message/global-headers Media Type . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-4.4">4.4</a>. Using These Media Types with multipart/report . . . . . . <a href="#page-8">8</a>
<a href="#section-4.5">4.5</a>. Additional Requirements on SMTP Servers . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-5">5</a>. UTF-8 Message Disposition Notifications . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-6">6</a>. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-6.1">6.1</a>. UTF-8 Mail Address Type Registration . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-6.2">6.2</a>. Update to 'smtp' Diagnostic Type Registration . . . . . . <a href="#page-11">11</a>
<a href="#section-6.3">6.3</a>. message/global-headers . . . . . . . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-6.4">6.4</a>. message/global-delivery-status . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-6.5">6.5</a>. message/global-disposition-notification . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-7">7</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-8">8</a>. References . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-8.1">8.1</a>. Normative References . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-8.2">8.2</a>. Informative References . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#appendix-A">Appendix A</a>. Changes since <a href="./rfc5337">RFC 5337</a> . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#appendix-B">Appendix B</a>. Acknowledgements . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<span class="grey">Hansen, et al. Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
When an email message is transmitted using the SMTPUTF8 [<a href="./rfc6531" title=""SMTP Extension for Internationalized Email"">RFC6531</a>]
extension and Internationalized Email Headers [<a href="./rfc6532" title=""Internationalized Email Headers"">RFC6532</a>], it is
sometimes necessary to return that message or generate a Message
Disposition Notification (MDN) [<a href="./rfc3798" title=""Message Disposition Notification"">RFC3798</a>]. As a message sent to
multiple recipients can generate a status and disposition
notification for each recipient, it is helpful if a client can
correlate these notifications based on the recipient address it
provided; thus, preservation of the original recipient is important.
This specification describes how to preserve the original recipient
and updates the MDN and DSN formats to support the new address types.
NOTE: While this specification updates the experimental versions of
this protocol by removing certain constructs (e.g., the "<addr
<addr>>" address syntax is no longer permitted), the name of the
Address Type "UTF-8" and the media type names message/global,
message/global-delivery-status, and message/global-headers have not
been changed.
This specification is a revision of and replacement for [<a href="./rfc5337" title=""Internationalized Delivery Status and Disposition Notifications"">RFC5337</a>].
<a href="./rfc6530#section-6">Section 6 of [RFC6530]</a> describes the change in approach between this
specification and the previous version.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Conventions Used in This Document</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
The formal syntax uses the Augmented Backus-Naur Form (ABNF)
[<a href="./rfc5234" title=""Augmented BNF for Syntax Specifications: ABNF"">RFC5234</a>] notation including the core rules defined in <a href="./rfc5234#appendix-B">Appendix B of
[RFC5234]</a> and the UTF-8 syntax rules in <a href="./rfc3629#section-4">Section 4 of [RFC3629]</a>.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. UTF-8 Address Type</span>
"An Extensible Message Format for Delivery Status Notifications"
[<a href="./rfc3464" title=""An Extensible Message Format for Delivery Status Notifications"">RFC3464</a>] defines the concept of an address type. The address format
introduced in "Internationalized Email Headers" [<a href="./rfc6532" title=""Internationalized Email Headers"">RFC6532</a>] is a new
address type. The syntax for the new address type in the context of
status notifications is specified at the end of this section.
An SMTP [<a href="./rfc5321" title=""Simple Mail Transfer Protocol"">RFC5321</a>] server that advertises both the SMTPUTF8 extension
[<a href="./rfc6531" title=""SMTP Extension for Internationalized Email"">RFC6531</a>] and the DSN extension [<a href="./rfc3461" title=""Simple Mail Transfer Protocol (SMTP) Service Extension for Delivery Status Notifications (DSNs)"">RFC3461</a>] MUST accept a UTF-8 address
type in the ORCPT parameter including 8-bit UTF-8 characters. This
address type also includes a 7-bit encoding suitable for use in a
message/delivery-status body part or an ORCPT parameter sent to an
SMTP server that does not advertise SMTPUTF8.
<span class="grey">Hansen, et al. Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
This address type has 3 forms: utf-8-addr-xtext, utf-8-addr-unitext,
and utf-8-address. Only the first form is 7-bit safe (only uses
ASCII characters [<a href="#ref-ASCII" title=""USA Code for Information Interchange"">ASCII</a>]).
The utf-8-address form is only suitable for use in newly defined
protocols capable of native representation of 8-bit characters. That
is, the utf-8-address form MUST NOT be used:
1. in the ORCPT parameter when the SMTP server doesn't advertise
support for SMTPUTF8 (utf-8-addr-xtext MUST be used instead); or
2. if the SMTP server supports SMTPUTF8, but the address contains
ASCII characters not permitted in the ORCPT parameter (e.g., the
ORCPT parameter forbids unencoded SP and the '=' character),
(either utf-8-addr-unitext or utf-8-addr-xtext MUST be used
instead); or
3. in a 7-bit transport environment including a message/
delivery-status "Original-Recipient:" or "Final-Recipient:"
field, (utf-8-addr-xtext MUST be used instead).
The utf-8-address form MAY be used in the ORCPT parameter when the
SMTP server also advertises support for SMTPUTF8 and the address
doesn't contain any ASCII characters not permitted in the ORCPT
parameter. It SHOULD be used in a message/global-delivery-status
"Original-Recipient:" or "Final-Recipient:" DSN field, or in an
"Original-Recipient:" header field [<a href="./rfc3798" title=""Message Disposition Notification"">RFC3798</a>] if the message is a
SMTPUTF8 message.
In addition, the utf-8-addr-unitext form can be used anywhere where
the utf-8-address form is allowed.
When used in the ORCPT parameter, the UTF-8 address type requires
that ASCII CTLs, SP, '\', '+', and '=' be encoded using 'unitext'
encoding (see below). This is described by the utf-8-addr-xtext and
utf-8-addr-unitext forms in the ABNF below. The 'unitext' encoding
uses "\x{HEXPOINT}" syntax (EmbeddedUnicodeChar in the ABNF below)
for encoding any Unicode character outside of ASCII range, as well as
for encoding CTLs, SP, '\', '+', and '='. HEXPOINT is 2 to 6
hexadecimal digits. This encoding avoids the need to use the xtext
encoding described in [<a href="./rfc3461" title=""Simple Mail Transfer Protocol (SMTP) Service Extension for Delivery Status Notifications (DSNs)"">RFC3461</a>], as any ASCII characters that need to
be escaped using xtext encoding never appear in any unitext-encoded
string. When sending data to a SMTPUTF8-capable server, native UTF-8
characters SHOULD be used instead of the EmbeddedUnicodeChar syntax
described below. When sending data to an SMTP server that does not
advertise SMTPUTF8, then the EmbeddedUnicodeChar syntax MUST be used
instead of UTF-8.
<span class="grey">Hansen, et al. Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
When the ORCPT parameter is placed in a message/
global-delivery-status "Original-Recipient:" field, the
utf-8-addr-xtext form of the UTF-8 address type SHOULD be converted
to the utf-8-address form (see the ABNF below) by removing the
unitext encoding. However, if an address is labeled with the UTF-8
address type but does not conform to utf-8 syntax, then it MUST be
copied into the message/global-delivery-status field without
alteration.
The ability to encode characters with the EmbeddedUnicodeChar
encodings should be viewed as a transitional mechanism and avoided
when possible. It is hoped that as systems lacking support for
SMTPUTF8 become less common over time, these encodings can eventually
be phased out.
In the ABNF below, all productions not defined in this document are
defined in <a href="./rfc5234#appendix-B">Appendix B of [RFC5234]</a>, in <a href="./rfc3629#section-4">Section 4 of [RFC3629]</a>, or in
[<a href="./rfc3464" title=""An Extensible Message Format for Delivery Status Notifications"">RFC3464</a>].
utf-8-type-addr = "utf-8;" utf-8-enc-addr
utf-8-address = Mailbox
; Mailbox as defined in [<a href="./rfc6531" title=""SMTP Extension for Internationalized Email"">RFC6531</a>].
utf-8-enc-addr = utf-8-addr-xtext /
utf-8-addr-unitext /
utf-8-address
utf-8-addr-xtext = 1*(QCHAR / EmbeddedUnicodeChar)
; 7bit form of utf-8-addr-unitext.
; Safe for use in the ORCPT [<a href="./rfc3461" title=""Simple Mail Transfer Protocol (SMTP) Service Extension for Delivery Status Notifications (DSNs)"">RFC3461</a>]
; parameter even when SMTPUTF8 SMTP
; extension is not advertised.
utf-8-addr-unitext = 1*(QUCHAR / EmbeddedUnicodeChar)
; MUST follow utf-8-address ABNF when
; dequoted.
; Safe for using in the ORCPT [<a href="./rfc3461" title=""Simple Mail Transfer Protocol (SMTP) Service Extension for Delivery Status Notifications (DSNs)"">RFC3461</a>]
; parameter when SMTPUTF8 SMTP extension
; is also advertised.
QCHAR = %x21-2a / %x2c-3c / %x3e-5b / %x5d-7e
; ASCII printable characters except
; CTLs, SP, '\', '+', '='.
<span class="grey">Hansen, et al. Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
QUCHAR = QCHAR / UTF8-2 / UTF8-3 / UTF8-4
; ASCII printable characters except
; CTLs, SP, '\', '+' and '=', plus
; other Unicode characters encoded in UTF-8
EmbeddedUnicodeChar = %x5C.78 "{" HEXPOINT "}"
; starts with "\x"
HEXPOINT = ( ( "0"/"1" ) %x31-39 ) / "10" / "20" /
"2B" / "3D" / "7F" / ; all xtext-specials
"5C" / (HEXDIG8 HEXDIG) / ; 2-digit forms
( NZHEXDIG 2(HEXDIG) ) / ; 3-digit forms
( NZDHEXDIG 3(HEXDIG) ) / ; 4-digit forms excluding
( "D" %x30-37 2(HEXDIG) ) / ; ... surrogate
( NZHEXDIG 4(HEXDIG) ) / ; 5-digit forms
( "10" 4*HEXDIG ) ; 6-digit forms
; represents either "\" or a Unicode code point outside
; the ASCII repertoire
HEXDIG8 = %x38-39 / "A" / "B" / "C" / "D" / "E" / "F"
; HEXDIG excluding 0-7
NZHEXDIG = %x31-39 / "A" / "B" / "C" / "D" / "E" / "F"
; HEXDIG excluding "0"
NZDHEXDIG = %x31-39 / "A" / "B" / "C" / "E" / "F"
; HEXDIG excluding "0" and "D"
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. UTF-8 Delivery Status Notifications</span>
A traditional delivery status notification [<a href="./rfc3464" title=""An Extensible Message Format for Delivery Status Notifications"">RFC3464</a>] comes in a
three-part multipart/report [<a href="./rfc6522" title=""The Multipart/Report Media Type for the Reporting of Mail System Administrative Messages"">RFC6522</a>] container, where the first part
is human-readable text describing the error, the second part is a
7-bit-only message/delivery-status, and the optional third part is
used for content (message/rfc822) or header (text/rfc822-headers)
return. As the present standard DSN format does not permit the
return of undeliverable SMTPUTF8 messages, three new media types have
been defined. ([<a href="./rfc5337" title=""Internationalized Delivery Status and Disposition Notifications"">RFC5337</a>] introduced experimental versions of these
media types.)
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. The message/global-delivery-status Media Type</span>
The first type, message/global-delivery-status, has the syntax of
message/delivery-status with three modifications. First, the charset
for message/global-delivery-status is UTF-8, and thus any field MAY
contain UTF-8 characters when appropriate (see the ABNF below). In
particular, the "Diagnostic-Code:" field MAY contain UTF-8 as
described in SMTPUTF8 [<a href="./rfc6531" title=""SMTP Extension for Internationalized Email"">RFC6531</a>]; the "Diagnostic-Code:" field SHOULD
be in i-default language [<a href="./rfc2277" title=""IETF Policy on Character Sets and Languages"">RFC2277</a>]. Second, systems generating a
message/global-delivery-status body part SHOULD use the utf-8-address
<span class="grey">Hansen, et al. Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
form of the UTF-8 address type for all addresses containing
characters outside the ASCII repertoire. These systems SHOULD up-
convert the utf-8-addr-xtext or the utf-8-addr-unitext form of a
UTF-8 address type in the ORCPT parameter to the utf-8-address form
of a UTF-8 address type in the "Original-Recipient:" field. Third,
an optional field called "Localized-Diagnostic:" is added. Each
instance includes a language tag [<a href="./rfc5646" title=""Tags for Identifying Languages"">RFC5646</a>] and contains text in the
specified language. This is equivalent to the text part of the
"Diagnostic-Code:" field. All instances of "Localized-Diagnostic:"
MUST use different language tags. The ABNF for message/
global-delivery-status is specified below.
In the ABNF below, all productions not defined in this document are
defined in <a href="./rfc5234#appendix-B">Appendix B of [RFC5234]</a>, in <a href="./rfc3629#section-4">Section 4 of [RFC3629]</a>, or in
[<a href="./rfc3464" title=""An Extensible Message Format for Delivery Status Notifications"">RFC3464</a>]. Note that <text-fixed> is the same as <text> from
[<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>], but without <obs-text>. If or when <a href="./rfc5322">RFC 5322</a> is updated to
disallow <obs-text>, <text-fixed> should become just <text>. Also,
if or when <a href="./rfc5322">RFC 5322</a> is updated to disallow control characters in
<text>, <text-fixed> should become a reference to that update
instead.
utf-8-delivery-status-content = per-message-fields
1*( CRLF utf-8-per-recipient-fields )
; "per-message-fields" remains unchanged from the definition
; in <a href="./rfc3464">RFC 3464</a>, except for the "extension-field",
; which is updated below.
utf-8-per-recipient-fields =
[ original-recipient-field CRLF ]
final-recipient-field CRLF
action-field CRLF
status-field CRLF
[ remote-mta-field CRLF ]
[ diagnostic-code-field CRLF
*(localized-diagnostic-text-field CRLF) ]
[ last-attempt-date-field CRLF ]
[ final-log-id-field CRLF ]
[ will-retry-until-field CRLF ]
*( extension-field CRLF )
; All fields except for "original-recipient-field",
; "final-recipient-field", "diagnostic-code-field",
; and "extension-field" remain unchanged from
; the definition in <a href="./rfc3464">RFC 3464</a>.
<span class="grey">Hansen, et al. Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
generic-address =/ utf-8-enc-addr
; Only allowed with the "utf-8" address-type.
; Updates <a href="./rfc3798#section-3.2.3">Section 3.2.3 of RFC 3798</a>.
;
; This indirectly updates "original-recipient-field"
; and "final-recipient-field".
diagnostic-code-field =
"Diagnostic-Code" ":" diagnostic-type ";" *text-fixed
localized-diagnostic-text-field =
"Localized-Diagnostic" ":" Language-Tag ";" *utf8-text
; "Language-Tag" is a language tag as defined in [<a href="./rfc5646" title=""Tags for Identifying Languages"">RFC5646</a>].
extension-field =/ extension-field-name ":" *utf8-text
; Updates <a href="./rfc3798#section-7">Section 7 of RFC3798</a>
text-fixed = %d1-9 / ; Any ASCII character except for NUL,
%d11 / ; CR, and LF.
%d12 / ; See note above about <text-fixed>
%d14-127
utf8-text = text-fixed / UTF8-non-ascii
UTF8-non-ascii = UTF8-2 / UTF8-3 / UTF8-4
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. The message/global Media Type</span>
The second type, used for returning the content, is message/global,
which is similar to message/rfc822, except it contains a message with
UTF-8 headers. This media type is described in [<a href="./rfc6532" title=""Internationalized Email Headers"">RFC6532</a>].
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. The message/global-headers Media Type</span>
The third type, used for returning the headers, is message/
global-headers and contains only the UTF-8 header fields of a message
(all lines prior to the first blank line in a SMTPUTF8 message).
Unlike message/global, this body part provides no difficulties for
the present infrastructure.
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. Using These Media Types with multipart/report</span>
Note that as far as a multipart/report [<a href="./rfc6522" title=""The Multipart/Report Media Type for the Reporting of Mail System Administrative Messages"">RFC6522</a>] container is
concerned, message/global-delivery-status, message/global, and
message/global-headers MUST be treated as equivalent to message/
delivery-status, message/rfc822, and text/rfc822-headers. That is,
<span class="grey">Hansen, et al. Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
implementations processing multipart/report MUST expect any
combinations of the 6 media types mentioned above inside a multipart/
report media type.
All three new types will typically use the "8bit" Content-Transfer-
Encoding. (In the event all content is 7-bit, the equivalent
traditional types for delivery status notifications MAY be used. For
example, if information in a message/global-delivery-status part can
be represented without any loss of information as message/
delivery-status, then the message/delivery-status body part may be
used.) Note that [<a href="./rfc6532" title=""Internationalized Email Headers"">RFC6532</a>] relaxed a restriction from MIME [<a href="./rfc2046" title=""Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types"">RFC2046</a>]
regarding the use of Content-Transfer-Encoding in new "message"
subtypes. This specification explicitly allows the use of Content-
Transfer-Encoding in message/global-headers and message/
global-delivery-status. This is not believed to be problematic as
these new media types are intended primarily for use by newer systems
with full support for 8-bit MIME and UTF-8 headers.
<span class="h3"><a class="selflink" id="section-4.5" href="#section-4.5">4.5</a>. Additional Requirements on SMTP Servers</span>
If an SMTP server that advertises both SMTPUTF8 and DSN needs to
return an undeliverable SMTPUTF8 message, then it has two choices for
encapsulating the SMTPUTF8 message when generating the corresponding
multipart/report:
If the return-path SMTP server does not support SMTPUTF8, then the
undeliverable body part and headers MUST be encoded using a 7-bit
Content-Transfer-Encoding such as "base64" or "quoted-printable"
[<a href="./rfc2045" title=""Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies"">RFC2045</a>], as detailed in <a href="#section-4">Section 4</a>.
Otherwise, "8bit" Content-Transfer-Encoding can be used.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. UTF-8 Message Disposition Notifications</span>
Message Disposition Notifications [<a href="./rfc3798" title=""Message Disposition Notification"">RFC3798</a>] have a similar design and
structure to DSNs. As a result, they use the same basic return
format. When generating an MDN for a UTF-8 header message, the third
part of the multipart/report contains the returned content (message/
global) or header (message/global-headers), same as for DSNs. The
second part of the multipart/report uses a new media type, message/
global-disposition-notification, which has the syntax of message/
disposition-notification with two modifications. First, the charset
for message/global-disposition-notification is UTF-8, and thus any
field MAY contain UTF-8 characters when appropriate (see the ABNF
below). (In particular, the failure-field, the error-field, and the
warning-field MAY contain UTF-8. These fields SHOULD be in i-default
<span class="grey">Hansen, et al. Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
language [<a href="./rfc2277" title=""IETF Policy on Character Sets and Languages"">RFC2277</a>].) Second, systems generating a message/
global-disposition-notification body part (typically a mail user
agent) SHOULD use the UTF-8 address type for all addresses containing
characters outside the ASCII repertoire.
The MDN specification also defines the "Original-Recipient:" header
field, which is added with a copy of the contents of ORCPT at
delivery time. When generating an "Original-Recipient:" header
field, a delivery agent writing a UTF-8 header message in native
format SHOULD convert the utf-8-addr-xtext or the utf-8-addr-unitext
form of a UTF-8 address type in the ORCPT parameter to the
corresponding utf-8-address form.
The MDN specification also defines the "Disposition-Notification-To:"
header field, which is an address header field and thus follows the
same 8-bit rules as other address header fields such as "From:" and
"To:" when used in a UTF-8 header message.
; ABNF for "original-recipient-header", "original-recipient-field",
; and "final-recipient-field" from <a href="./rfc3798">RFC 3798</a> is implicitly updated
; as they use the updated "generic-address" as defined in
; <a href="#section-4">Section 4</a> of this document.
failure-field = "Failure" ":" *utf8-text
; "utf8-text" is defined in <a href="#section-4">Section 4</a> of this document.
error-field = "Error" ":" *utf8-text
; "utf8-text" is defined in <a href="#section-4">Section 4</a> of this document.
warning-field = "Warning" ":" *utf8-text
; "utf8-text" is defined in <a href="#section-4">Section 4</a> of this document.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. IANA Considerations</span>
This specification does not create any new IANA registries. However,
the following items have been registered as a result of this
document.
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. UTF-8 Mail Address Type Registration</span>
The mail address type registry was created by [<a href="./rfc3464" title=""An Extensible Message Format for Delivery Status Notifications"">RFC3464</a>]. The
registration template response follows:
(a) The address-type name.
UTF-8
<span class="grey">Hansen, et al. Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
(b) The syntax for mailbox addresses of this type, specified using
BNF, regular expressions, ASN.1, or other non-ambiguous language.
See <a href="#section-3">Section 3</a>.
(c) If addresses of this type are not composed entirely of graphic
characters from the ASCII repertoire, a specification for how
they are to be encoded as graphic ASCII characters in an
"Original-Recipient:" or "Final-Recipient:" DSN field.
This address type has 3 forms (as defined in <a href="#section-3">Section 3</a>):
utf-8-addr-xtext, utf-8-addr-unitext, and utf-8-address. Only
the first form is 7-bit safe.
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Update to 'smtp' Diagnostic Type Registration</span>
The mail diagnostic type registry was created by [<a href="./rfc3464" title=""An Extensible Message Format for Delivery Status Notifications"">RFC3464</a>] and
updated by [<a href="./rfc5337" title=""Internationalized Delivery Status and Disposition Notifications"">RFC5337</a>]. This specification replaces [<a href="./rfc5337" title=""Internationalized Delivery Status and Disposition Notifications"">RFC5337</a>]. The
registration for the 'smtp' diagnostic type has been updated to
reference <a href="./rfc6533">RFC 6533</a> in addition to [<a href="./rfc3464" title=""An Extensible Message Format for Delivery Status Notifications"">RFC3464</a>] and to remove the
reference to [<a href="./rfc5337" title=""Internationalized Delivery Status and Disposition Notifications"">RFC5337</a>].
When the 'smtp' diagnostic type is used in the context of a message/
delivery-status body part, it remains as presently defined. When the
'smtp' diagnostic type is used in the context of a message/
global-delivery-status body part, the codes remain the same, but the
text portion MAY contain UTF-8 characters.
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. message/global-headers</span>
Type name: message
Subtype name: global-headers
Required parameters: none
Optional parameters: none
Encoding considerations: This media type contains Internationalized
Email Headers [<a href="./rfc6532" title=""Internationalized Email Headers"">RFC6532</a>] with no message body. Whenever possible,
the 8-bit content transfer encoding SHOULD be used. When this
media type passes through a 7-bit-only SMTP infrastructure, it MAY
be encoded with the base64 or quoted-printable content transfer
encoding.
Security considerations: See <a href="#section-7">Section 7</a>.
<span class="grey">Hansen, et al. Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
Interoperability considerations: It is important that this media
type is not converted to a charset other than UTF-8. As a result,
implementations MUST NOT include a charset parameter with this
media type. Although it might be possible to down-convert this
media type to the text/rfc822-header media type, such conversion
is discouraged as it loses information.
Published specification: <a href="./rfc6533">RFC 6533</a>
Applications that use this media type: SMTPUTF8 servers and email
clients that support multipart/report generation or parsing.
Additional information:
Magic number(s): none
File extension(s): In the event this is saved to a file, the
extension ".u8hdr" is suggested.
Macintosh file type code(s): The 'TEXT' type code is suggested as
files of this type are typically used for diagnostic purposes
and suitable for analysis in a UTF-8-aware text editor. A
uniform type identifier (UTI) of
"public.utf8-email-message-header" is suggested. This type
conforms to "public.utf8-plain-text" and "public.plain-text".
Person & email address to contact for further information: See the
Authors' Addresses section of this document.
Intended usage: COMMON
Restrictions on usage: This media type contains textual data in the
UTF-8 charset. It typically contains octets with the 8th bit set.
As a result, a transfer encoding is required when a 7-bit
transport is used.
Author: See the Authors' Addresses section of this document.
Change controller: IETF Standards Process
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>. message/global-delivery-status</span>
Type name: message
Subtype name: global-delivery-status
Required parameters: none
<span class="grey">Hansen, et al. Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
Optional parameters: none
Encoding considerations: This media type contains delivery status
notification attributes in the UTF-8 charset. The 8-bit content
transfer encoding MUST be used with this content-type, unless it
is sent over a 7-bit transport environment, in which case quoted-
printable or base64 may be necessary.
Security considerations: See <a href="#section-7">Section 7</a>
Interoperability considerations: This media type provides
functionality similar to the message/delivery-status content-type
for email message return information. Clients of the previous
format will need to be upgraded to interpret the new format;
however, the new media type makes it simple to identify the
difference.
Published specification: <a href="./rfc6533">RFC 6533</a>
Applications that use this media type: SMTP servers and email
clients that support delivery status notification generation or
parsing.
Additional information:
Magic number(s): none
File extension(s): The extension ".u8dsn" is suggested.
Macintosh file type code(s): A uniform type identifier (UTI) of
"public.utf8-email-message-delivery-status" is suggested. This
type conforms to "public.utf8-plain-text".
Person & email address to contact for further information: See the
Authors' Addresses section of this document.
Intended usage: COMMON
Restrictions on usage: This is expected to be the second part of a
multipart/report.
Author: See the Authors' Addresses section of this document.
Change controller: IETF Standards Process
<span class="grey">Hansen, et al. Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
<span class="h3"><a class="selflink" id="section-6.5" href="#section-6.5">6.5</a>. message/global-disposition-notification</span>
Type name: message
Subtype name: global-disposition-notification
Required parameters: none
Optional parameters: none
Encoding considerations: This media type contains disposition
notification attributes in the UTF-8 charset. The 8-bit content
transfer encoding MUST be used with this content-type, unless it
is sent over a 7-bit transport environment, in which case quoted-
printable or base64 may be necessary.
Security considerations: See <a href="#section-7">Section 7</a>.
Interoperability considerations: This media type provides
functionality similar to the message/disposition-notification
content-type for email message disposition information. Clients
of the previous format will need to be upgraded to interpret the
new format; however, the new media type makes it simple to
identify the difference.
Published specification: <a href="./rfc6533">RFC 6533</a>
Applications that use this media type: Email clients or servers that
support message disposition notification generation or parsing.
Additional information:
Magic number(s): none
File extension(s): The extension ".u8mdn" is suggested.
Macintosh file type code(s): A uniform type identifier (UTI) of
"public.utf8-email-message-disposition-notification" is
suggested. This type conforms to "public.utf8-plain-text".
Person & email address to contact for further information: See the
Authors' Addresses section of this document.
Intended usage: COMMON
Restrictions on usage: This is expected to be the second part of a
multipart/report.
<span class="grey">Hansen, et al. Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
Author: See the Authors' Addresses section of this document.
Change controller: IETF Standards Process
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Security Considerations</span>
Automated use of report types without authentication presents several
security issues. Forging negative reports presents the opportunity
for denial-of-service attacks when the reports are used for automated
maintenance of directories or mailing lists. Forging positive
reports may cause the sender to incorrectly believe a message was
delivered when it was not.
Malicious users can generate report structures designed to trigger
coding flaws in report parsers. Report parsers need to use secure
coding techniques to avoid the risk of buffer overflow or denial-of-
service attacks against parser coding mistakes. Code reviews of such
parsers are also recommended.
Malicious users of the email system regularly send messages with
forged envelope return paths, and these messages trigger delivery
status reports that result in a large amount of unwanted traffic on
the Internet. Many users choose to ignore delivery status
notifications because they are usually the result of "blowback" from
forged messages and thus never notice when messages they sent go
undelivered. As a result, support for correlation of delivery status
and message disposition notification messages with sent messages has
become a critical feature of mail clients and possibly mail stores,
if the email infrastructure is to remain reliable. In the short
term, simply correlating Message-IDs may be sufficient to distinguish
true status notifications from those resulting from forged originator
addresses. But in the longer term, including cryptographic signature
material that can securely associate the status notification with the
original message is advisable.
As this specification permits UTF-8 in additional fields, the
security considerations of UTF-8 [<a href="./rfc3629" title=""UTF-8, a transformation format of ISO 10646"">RFC3629</a>] apply.
<span class="grey">Hansen, et al. Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. References</span>
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. Normative References</span>
[<a id="ref-ASCII">ASCII</a>] American National Standards Institute (formerly United
States of America Standards Institute), "USA Code for
Information Interchange", ANSI X3.4-1968, 1968.
ANSI X3.4-1968 has been replaced by newer versions with
slight modifications, but the 1968 version remains
definitive for the Internet.
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
[<a id="ref-RFC2277">RFC2277</a>] Alvestrand, H., "IETF Policy on Character Sets and
Languages", <a href="https://www.rfc-editor.org/bcp/bcp18">BCP 18</a>, <a href="./rfc2277">RFC 2277</a>, January 1998.
[<a id="ref-RFC3461">RFC3461</a>] Moore, K., "Simple Mail Transfer Protocol (SMTP) Service
Extension for Delivery Status Notifications (DSNs)",
<a href="./rfc3461">RFC 3461</a>, January 2003.
[<a id="ref-RFC3464">RFC3464</a>] Moore, K. and G. Vaudreuil, "An Extensible Message Format
for Delivery Status Notifications", <a href="./rfc3464">RFC 3464</a>,
January 2003.
[<a id="ref-RFC3629">RFC3629</a>] Yergeau, F., "UTF-8, a transformation format of ISO
10646", STD 63, <a href="./rfc3629">RFC 3629</a>, November 2003.
[<a id="ref-RFC3798">RFC3798</a>] Hansen, T. and G. Vaudreuil, "Message Disposition
Notification", <a href="./rfc3798">RFC 3798</a>, May 2004.
[<a id="ref-RFC5234">RFC5234</a>] Crocker, D. and P. Overell, "Augmented BNF for Syntax
Specifications: ABNF", STD 68, <a href="./rfc5234">RFC 5234</a>, January 2008.
[<a id="ref-RFC5321">RFC5321</a>] Klensin, J., "Simple Mail Transfer Protocol", <a href="./rfc5321">RFC 5321</a>,
October 2008.
[<a id="ref-RFC5322">RFC5322</a>] Resnick, P., Ed., "Internet Message Format", <a href="./rfc5322">RFC 5322</a>,
October 2008.
[<a id="ref-RFC5646">RFC5646</a>] Phillips, A. and M. Davis, "Tags for Identifying
Languages", <a href="https://www.rfc-editor.org/bcp/bcp47">BCP 47</a>, <a href="./rfc5646">RFC 5646</a>, September 2009.
[<a id="ref-RFC6522">RFC6522</a>] Kucherawy, M., Ed., "The Multipart/Report Media Type for
the Reporting of Mail System Administrative Messages", STD
73, <a href="./rfc6522">RFC 6522</a>, January 2012.
<span class="grey">Hansen, et al. Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
[<a id="ref-RFC6530">RFC6530</a>] Klensin, J. and Y. Ko, "Overview and Framework for
Internationalized Email", <a href="./rfc6530">RFC 6530</a>, February 2012.
[<a id="ref-RFC6531">RFC6531</a>] Yao, J. and W. Mao, "SMTP Extension for Internationalized
Email", <a href="./rfc6531">RFC 6531</a>, February 2012.
[<a id="ref-RFC6532">RFC6532</a>] Yang, A., Steele, S., and N. Freed, "Internationalized
Email Headers", <a href="./rfc6532">RFC 6532</a>, February 2012.
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. Informative References</span>
[<a id="ref-RFC2045">RFC2045</a>] Freed, N. and N. Borenstein, "Multipurpose Internet Mail
Extensions (MIME) Part One: Format of Internet Message
Bodies", <a href="./rfc2045">RFC 2045</a>, November 1996.
[<a id="ref-RFC2046">RFC2046</a>] Freed, N. and N. Borenstein, "Multipurpose Internet Mail
Extensions (MIME) Part Two: Media Types", <a href="./rfc2046">RFC 2046</a>,
November 1996.
[<a id="ref-RFC5337">RFC5337</a>] Newman, C. and A. Melnikov, "Internationalized Delivery
Status and Disposition Notifications", <a href="./rfc5337">RFC 5337</a>,
September 2008.
<span class="grey">Hansen, et al. Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Changes since <a href="./rfc5337">RFC 5337</a></span>
Changes were made to move from Experimental to Standards Track. The
most significant was the removal of an embedded alternative ASCII
address within a utf-8-address, and the reflections of the ABNF
changes in [<a href="./rfc6531" title=""SMTP Extension for Internationalized Email"">RFC6531</a>].
Fixed description of utf-8-addr-xtext and utf-8-addr-unitext.
References to Downgrade and uMailbox removed/fixed.
ABNF changes and fixed errata submitted by Alfred Hoenes.
Minor changes to MIME type references.
Other minor corrections.
<span class="h2"><a class="selflink" id="appendix-B" href="#appendix-B">Appendix B</a>. Acknowledgements</span>
Many thanks for input provided by Pete Resnick, James Galvin, Ned
Freed, John Klensin, Harald Alvestrand, Frank Ellermann, SM, Alfred
Hoenes, Kazunori Fujiwara, and members of the EAI working group to
help solidify this proposal.
<span class="grey">Hansen, et al. Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc6533">RFC 6533</a> Internationalized DSN and MDNs February 2012</span>
Authors' Addresses
Tony Hansen (editor)
AT&T Laboratories
200 Laurel Ave.
Middletown, NJ 07748
US
EMail: tony+eaidsn@maillennium.att.com
Chris Newman
Oracle
800 Royal Oaks
Monrovia, CA 91016-6347
US
EMail: chris.newman@oracle.com
Alexey Melnikov
Isode Ltd
5 Castle Business Village
36 Station Road
Hampton, Middlesex TW12 2BX
UK
EMail: Alexey.Melnikov@isode.com
Hansen, et al. Standards Track [Page 19]
</pre>
|