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 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509
|
<pre>Network Working Group J. Palme
Request for Comments: 2076 Stockholm University/KTH
Category: Informational February 1997
<span class="h1">Common Internet Message Headers</span>
Status of this Memo
This memo provides information for the Internet community. This memo
does not specify an Internet standard of any kind. Distribution of
this memo is unlimited.
Abstract
This memo contains a table of commonly occurring headers in headings
of e-mail messages. The document compiles information from other RFCs
such as <a href="./rfc822">RFC 822</a>, <a href="./rfc1036">RFC 1036</a>, <a href="./rfc1123">RFC 1123</a>, <a href="./rfc1327">RFC 1327</a>, <a href="./rfc1496">RFC 1496</a>, <a href="./rfc1521">RFC 1521</a>,
<a href="./rfc1766">RFC 1766</a>, <a href="./rfc1806">RFC 1806</a>, <a href="./rfc1864">RFC 1864</a> and <a href="./rfc1911">RFC 1911</a>. A few commonly occurring
headers which are not defined in RFCs are also included. For each
header, the memo gives a short description and a reference to the RFC
in which the header is defined.
Table of contents
<a href="#section-1">1</a>. Introduction.............................................. <a href="#page-2">2</a>
<a href="#section-2">2</a>. Use of gatewaying headers................................. <a href="#page-3">3</a>
<a href="#section-3">3</a>. Table of headers.......................................... <a href="#page-3">3</a>
<a href="#section-3.1">3.1</a> Phrases used in the tables.......................... <a href="#page-3">3</a>
<a href="#section-3.2">3.2</a> Trace information................................... <a href="#page-5">5</a>
<a href="#section-3.3">3.3</a> Format and control information...................... <a href="#page-5">5</a>
<a href="#section-3.4">3.4</a> Sender and recipient indication..................... <a href="#page-6">6</a>
<a href="#section-3.5">3.5</a> Response control.................................... <a href="#page-9">9</a>
<a href="#section-3.6">3.6</a> Message identification and referral headers......... <a href="#page-11">11</a>
<a href="#section-3.7">3.7</a> Other textual headers............................... <a href="#page-12">12</a>
<a href="#section-3.8">3.8</a> Headers containing dates and times.................. <a href="#page-13">13</a>
<a href="#section-3.9">3.9</a> Quality information................................. <a href="#page-13">13</a>
<a href="#section-3.10">3.10</a> Language information............................... <a href="#page-14">14</a>
<a href="#section-3.11">3.11</a> Size information................................... <a href="#page-14">14</a>
<a href="#section-3.12">3.12</a> Conversion control................................. <a href="#page-15">15</a>
<a href="#section-3.13">3.13</a> Encoding information............................... <a href="#page-15">15</a>
<a href="#section-3.14">3.14</a> Resent-headers..................................... <a href="#page-16">16</a>
<a href="#section-3.15">3.15</a> Security and reliability........................... <a href="#page-16">16</a>
<a href="#section-3.16">3.16</a> Miscellaneous...................................... <a href="#page-16">16</a>
<a href="#section-4">4</a>. Acknowledgments........................................... <a href="#page-18">18</a>
<span class="grey">Palme Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
<a href="#section-5">5</a>. References................................................ <a href="#page-18">18</a>
<a href="#section-6">6</a>. Author's Address.......................................... <a href="#page-20">20</a>
<a href="#appendix-A">Appendix A</a>:
Headers sorted by Internet RFC document in which they appear. 21
<a href="#appendix-B">Appendix B</a>:
Alphabetical index........................................... <a href="#page-25">25</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
Many different Internet standards and RFCs define headers which may
occur on Internet Mail Messages and Usenet News Articles. The
intention of this document is to list all such headers in one
document as an aid to people developing message systems or interested
in Internet Mail standards.
The document contains all headers which the author has found in the
following Internet standards: , <a href="./rfc822">RFC 822</a> [<a href="#ref-2" title=""Standard for the format of ARPA Standard, Internet text messages."">2</a>], <a href="./rfc1036">RFC 1036</a> [<a href="#ref-3" title=""Standard for Not an offi- interchange of USENET messages"">3</a>], <a href="./rfc1123">RFC 1123</a>
[<a href="#ref-5" title=""Requirements for Standard, Internet Hosts -- Application and Support"">5</a>], <a href="./rfc1327">RFC 1327</a> [<a href="#ref-7" title=""Mapping between Proposed X.400(1988) / ISO 10021 and RFC 822"">7</a>], <a href="./rfc1496">RFC 1496</a> [<a href="#ref-8" title=""Rules for Proposed Downgrading Messages from X.400/88 to standard, X.400/84 When MIME Content-Types are Present elective in the Messages"">8</a>], <a href="./rfc1521">RFC 1521</a> [<a href="#ref-11" title=""MIME (Multipurpose Draft Internet Mail Extensions) Part One: Standard, Mechanisms for Specifying and Describing the elective Format of Internet Message Bodies"">11</a>], <a href="./rfc1766">RFC 1766</a> [<a href="#ref-12" title=""Tags for the Identification Proposed of Languages"">12</a>], <a href="./rfc1806">RFC</a>
<a href="./rfc1806">1806</a> [<a href="#ref-14" title=""Communicating Experimental Presentation Information in Internet Messages: The Content-Disposition Header"">14</a>], <a href="./rfc1864">RFC 1864</a>[<a href="#ref-17" title="RFC 1864">17</a>] and <a href="./rfc1911">RFC 1911</a>[<a href="#ref-20" title="RFC 1911">20</a>]. Note in particular that
heading attributes defined in PEM (<a href="./rfc1421">RFC 1421</a>-1424) and MOSS (<a href="./rfc1848">RFC 1848</a>
[<a href="#ref-16" title=""MIME Object Security Services"">16</a>]) are not included. PEM and MOSS headers only appear inside the
body of a message, and thus are not headers in the <a href="./rfc822">RFC 822</a> sense.
Mail attributes in envelopes, i.e. attributes controlling the message
transport mechanism between mail and news servers, are not included.
This means that attributes from SMTP [1], UUCP [<a href="#ref-18" title="RFC 976">18</a>] and NNTP [<a href="#ref-15" title=""Network News Transfer Proposed Protocol: "">15</a>] are
mainly not covered either. Headings used only in HTTP [<a href="#ref-19" title="R. Headering">19</a>] are not
included yet, but may be included in future version of this memo. A
few additional headers which often can be found in e-mail headings
but are not part of any Internet standard are also included.
For each header, the document gives a short description and a
reference to the Internet standard or RFC, in which they are defined.
The header names given here are spelled the same way as when they are
actually used. This is usually American but sometimes English
spelling. One header in particular, "Organisation/Organization",
occurs in e-mail headers sometimes with the English and other times
with the American spelling.
The following words are used in this memo with the meaning specified
below:
heading Formatted text at the top of a message, ended by a
blank line
header = heading One field in the heading, beginning with a field
field name, colon, and followed by the field value(s)
<span class="grey">Palme Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
It is my intention to continue updating this document after its
publication as an RFC. The latest version, which may be more up-to-
date (but also less fully checked out) will be kept available for
downloading from URL
<a href="http://www.dsv.su.se/~jpalme/ietf-mail-attributes.pdf">http://www.dsv.su.se/~jpalme/ietf-mail-attributes.pdf</a>.
Please e-mail me (Jacob Palme <jpalme@dsv.su.se>) if you have noted
headers which should be included in this memo but are not.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Use of gatewaying headers</span>
<a href="./rfc1327">RFC 1327</a> defines a number of new headers in Internet mail, which are
defined to map headers which X.400 has but which were previously not
standardized in Internet mail. The fact that a header occurs in <a href="./rfc1327">RFC</a>
<a href="./rfc1327">1327</a> indicates that it is recommended for use in gatewaying messages
between X.400 and Internet mail, but does not mean that the header is
recommended for messages wholly within Internet mail. Some of these
headers may eventually see widespread implementation and use in
Internet mail, but at the time of this writing (1996) they are not
widely implemented or used.
Headers defined only in <a href="./rfc1036">RFC 1036</a> for use in Usenet News sometimes
appear in mail messages, either because the messages have been
gatewayed from Usenet News to e-mail, or because the messages were
written in combined clients supporting both e-mail and Usenet News in
the same client. These headers are not standardized for use in
Internet e-mail and should be handled with caution by e-mail agents.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Table of headers</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a> Phrases used in the tables</span>
"not for general Used to mark headers which are defined in RFC
usage" 1327 for use in messages from or to Internet
mail/X.400 gateways. These headers have not
been standardized for general usage in the
exchange of messages between Internet mail-
based systems.
<span class="grey">Palme Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
"not standardized Used to mark headers defined only in <a href="./rfc1036">RFC 1036</a>
for use in e-mail" for use in Usenet News. These headers have no
standard meaning when appearing in e-mail,
some of them may even be used in different
ways by different software. When appearing in
e-mail, they should be handled with caution.
Note that <a href="./rfc1036">RFC 1036</a>, although generally used as
a de-facto standard for Usenet News, is not an
official IETF standard or even on the IETF
standards track.
"non-standard" This header is not specified in any of
referenced RFCs which define Internet
protocols, including Internet Standards, draft
standards or proposed standards. The header
appears here because it often appears in e-
mail or Usenet News. Usage of these headers is
not in general recommended. Some header
proposed in ongoing IETF standards development
work, but not yet accepted, are also marked in
this way.
"discouraged" This header, which is non-standard, is known
to create problems and should not be
generated. Handling of such headers in
incoming mail should be done with great
caution.
"controversial" The meaning and usage of this header is
controversial, i.e. different implementors
have chosen to implement the header in
different ways. Because of this, such headers
should be handled with caution and
understanding of the different possible
interpretations.
"experimental" This header is used for newly defined headers,
which are to be tried out before entering the
IETF standards track. These should only be
used if both communicating parties agree on
using them. In practice, some experimental
protocols become de-facto-standards before
they are made into IETF standards.
<span class="grey">Palme Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a> Trace information</span>
Used to convey the information Return-Path: <a href="./rfc821">RFC 821</a>,
from the MAIL FROM envelope <a href="./rfc1123">RFC 1123</a>: 5.2.13.
attribute in final delivery, when
the message leaves the SMTP
environment in which "MAIL FROM"
is used.
Trace of MTAs which a message has Received: <a href="./rfc822">RFC 822</a>: 4.3.2,
passed. <a href="./rfc1123">RFC 1123</a>: 5.2.8.
List of MTAs passed. Path: <a href="./rfc1036">RFC 1036</a>: 2.1.6,
only in Usenet
News, not in e-
mail.
Trace of distribution lists DL-Expansion- <a href="./rfc1327">RFC 1327</a>, not for
passed. History- general usage.
Indication:
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a> Format and control information</span>
An indicator that this message is MIME-Version: <a href="./rfc1521">RFC 1521</a>: 3.
formatted according to the MIME
standard, and an indication of
which version of MIME is
utilized.
Special Usenet News actions only. Control: <a href="./rfc1036">RFC 1036</a>: 2.1.6,
only in Usenet
News, not in e-
mail.
Special Usenet News actions and a Also-Control: son-of-RFC1036
normal article at the same time. [<a href="#ref-21" title=""son-of-RFC1036"">21</a>], non-
standard, only in
Usenet News, not
in e-mail
Which body part types occur in Original- <a href="./rfc1327">RFC 1327</a>, not for
this message. Encoded- general usage.
Information-
Types:
<span class="grey">Palme Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
Controls whether this message may Alternate- <a href="./rfc1327">RFC 1327</a>, not for
be forwarded to alternate Recipient: general usage.
recipients such as a postmaster
if delivery is not possible to
the intended recipient. Default:
Allowed.
Whether recipients are to be told Disclose- <a href="./rfc1327">RFC 1327</a>, not for
the names of other recipients of Recipients: general usage.
the same message. This is
primarily an X.400 facility. In
X.400, this is an envelope
attribute and refers to
disclosure of the envelope
recipient list. Disclosure of
other recipients is in Internet
mail done via the To:, cc: and
bcc: headers.
Whether a MIME body part is to be Content- <a href="./rfc1806">RFC 1806</a>,
shown inline or is an attachment; Disposition: experimental
can also indicate a suggested
filename for use when saving an
attachment to a file.
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a> Sender and recipient indication</span>
Authors or persons taking From: <a href="./rfc822">RFC 822</a>: 4.4.1,
responsibility for the message. <a href="./rfc1123">RFC 1123</a>: 5.2.15-
16, 5.3.7,
Note difference from the "From " <a href="./rfc1036">RFC 1036</a> 2.1.1
header (not followed by ":")
below.
(1) This header should never From not standardized
appear in e-mail being sent, and for use in e-mail
should thus not appear in this
memo. It is however included,
since people often ask about it.
<span class="grey">Palme Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
This header is used in the so-
called Unix mailbox format, also
known as Berkely mailbox format
or the MBOX format. This is a
format for storing a set of
messages in a file. A line
beginning with "From " is used to
separate successive messages in
such files.
This header will thus appear when
you use a text editor to look at
a file in the Unix mailbox
format. Some mailers also use
this format when printing
messages on paper.
The information in this header
should NOT be used to find an
address to which replies to a
message are to be sent.
(2) Used in Usenet News mail From <a href="./rfc976">RFC 976</a>: 2.4 for
transport, to indicate the path or use in Usenet News
through which an article has gone >From
when transferred to a new host.
Sometimes called "From_" header.
Name of the moderator of the Approved: <a href="./rfc1036">RFC 1036</a>: 2.2.11,
newsgroup to which this article not standardized
is sent; necessary on an article for use in e-mail.
sent to a moderated newsgroup to
allow its distribution to the
newsgroup members. Also used on
certain control messages, which
are only performed if they are
marked as Approved.
The person or agent submitting Sender: <a href="./rfc822">RFC 822</a>: 4.4.2,
the message to the network, if <a href="./rfc1123">RFC 1123</a>: 5.2.15-
other than shown by the From: 16, 5.3.7.
header.
Primary recipients. To: <a href="./rfc822">RFC 822</a>: 4.5.1,
<a href="./rfc1123">RFC 1123</a>: 5.2.15-
16, 5.3.7.
<span class="grey">Palme Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
Secondary, informational cc: <a href="./rfc822">RFC 822</a>: 4.5.2,
recipients. (cc = Carbon Copy) <a href="./rfc1123">RFC 1123</a>. 5.2.15-
16, 5.3.7.
Recipients not to be disclosed to bcc: <a href="./rfc822">RFC 822</a>: 4.5.3,
other recipients. (bcc = Blind <a href="./rfc1123">RFC 1123</a>: 5.2.15-
Carbon Copy). 16, 5.3.7.
Primary recipients, who are For-Handling: Non-standard
requested to handle the
information in this message
or its attachments.
Primary recipients, who are For-Comment: Non-standard
requested to comment on the
information in this message
or its attachments.
In Usenet News: group(s) to which Newsgroups: <a href="./rfc1036">RFC 1036</a>: 2.1.3,
this article was posted. not standardized
Some systems provide this header and controversial
also in e-mail although it is not for use in e-mail.
standardized there.
Unfortunately, the header can
appear in e-mail with two
different and contradictory
meanings:
(a) Indicating the newsgroup
recipient of an article/message
sent to both e-mail and Usenet
News recipients.
(b) In a personally addressed
reply to an article in a news-
group, indicating the newsgroup
in which this discussion
originated.
<span class="grey">Palme Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
Inserted by Sendmail when there Apparently- Non-standard,
is no "To:" recipient in the To: discouraged,
original message, listing mentioned in
recipients derived from the <a href="./rfc1211">RFC 1211</a>.
envelope into the message
heading. This behavior is not
quite proper, MTAs should not
modify headings (except inserting
Received lines), and it can in
some cases cause Bcc recipients
to be wrongly divulged to non-Bcc
recipients.
Geographical or organizational Distribution: <a href="./rfc1036">RFC 1036</a>: 2.2.7,
limitation on where this article not standardized
can be distributed. for use in e-mail.
Fax number of the originator. Fax:, Non-standard.
Telefax:
Phone number of the originator. Phone: Non-standard.
Information about the client Mail-System- Non-standard.
software of the originator. Version:,
Mailer:,
Originating-
Client:, X-
Mailer, X-
Newsreader
<span class="h3"><a class="selflink" id="section-3.5" href="#section-3.5">3.5</a> Response control</span>
This header is meant to indicate Reply-To: <a href="./rfc822">RFC 822</a>: 4.4.3,
where the sender wants replies to <a href="./rfc1036">RFC 1036</a>: 2.2.1
go. Unfortunately, this is controversial.
ambiguous, since there are
different kinds of replies, which
the sender may wish to go to
different addresses. In
particular, there are personal
replies intended for only one
person, and group replies,
intended for the whole group of
people who read the replied-to
message (often a mailing list,
anewsgroup name cannot appear
here because of different syntax,
see "Followup-To" below.).
<span class="grey">Palme Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
Some mail systems use this header
to indicate a better form of the
e-mail address of the sender.
Some mailing list expanders puts
the name of the list in this
header. These practices are
controversial. The personal
opinion of the author of this RFC
is that this header should be
avoided except in special cases,
but this is a personal opinion
not shared by all specialists in
the area.
Used in Usenet News to indicate Followup-To: <a href="./rfc1036">RFC 1036</a>: 2.2.3,
that future discussions (=follow- not standardized
up) on an article should go to a for use in e-mail.
different set of newsgroups than
the replied-to article. The most
common usage is when an article
is posted to several newsgroups,
and further discussions is to
take place in only one of them.
In e-mail, this header may occur
in a message which is sent to
both e-mail and Usenet News, to
show where follow-up in Usenet
news is wanted. The header does
not say anything about where
follow-up in e-mail is to be
sent.
Note that the value of this
header must always be one or more
newsgroup names, never e-mail
addresses.
Address to which notifications Errors-To:, Non-standard,
are to be sent and a request to Return- discouraged.
get delivery notifications. Receipt-To:
Internet standards recommend,
however, the use of RCPT TO and
Return-Path, not Errors-To, for
where delivery notifications are
to be sent.
<span class="grey">Palme Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
Whether non-delivery report is Prevent- <a href="./rfc1327">RFC 1327</a>, not for
wanted at delivery error. Default NonDelivery- general usage.
is to want such a report. Report:
Whether a delivery report is Generate- <a href="./rfc1327">RFC 1327</a>, not for
wanted at successful delivery. Delivery- general usage.
Default is not to generate such a Report:
report.
Indicates whether the content of Content- <a href="./rfc1327">RFC 1327</a>, not for
a message is to be returned with Return: general usage.
non-delivery notifications.
Possible future change of name X400-Content- non-standard
for "Content-Return:" Return:
<span class="h3"><a class="selflink" id="section-3.6" href="#section-3.6">3.6</a> Message identification and referral headers</span>
Unique ID of this message. Message-ID: <a href="./rfc822">RFC 822</a>: 4.6.1
<a href="./rfc1036">RFC 1036</a>: 2.1.5.
Unique ID of one body part of the Content-ID: <a href="./rfc1521">RFC 1521</a>: 6.1.
content of a message.
Base to be used for resolving Content-Base: Non-standard
relative URIs within this content
part.
URI with which the content of Content- Non-standard
this content part might be Location:
retrievable.
Reference to message which this In-Reply-To: <a href="./rfc822">RFC 822</a>: 4.6.2.
message is a reply to.
In e-mail: reference to other References: <a href="./rfc822">RFC 822</a>: 4.6.3
related messages, in Usenet News: <a href="./rfc1036">RFC 1036</a>: 2.1.5.
reference to replied-to-articles.
References to other related See-Also: Son-of-RFC1036
articles in Usenet News. [<a href="#ref-21" title=""son-of-RFC1036"">21</a>], non-standard
Reference to previous message Obsoletes: <a href="./rfc1327">RFC 1327</a>, not for
being corrected and replaced. general usage.
Compare to "Supersedes:" below.
This field may in the future be
replaced with "Supersedes:".
<span class="grey">Palme Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
Commonly used in Usenet News in Supersedes: son-of-RFC1036
similar ways to the "Obsoletes" [<a href="#ref-21" title=""son-of-RFC1036"">21</a>], non-standard
header described above. In Usenet
News, however, Supersedes causes
a full deletion of the replaced
article in the server, while
"Supersedes" and "Obsoletes" in e-
mail is implemented in the client
and often does not remove the old
version of the text.
Only in Usenet News, similar to Article- son-of-RFC1036
"Supersedes:" but does not cause Updates: [<a href="#ref-21" title=""son-of-RFC1036"">21</a>], non-standard
the referenced article to be
physically deleted.
Reference to specially important Article- son-of-RFC1036
articles for a particular Usenet Names: [<a href="#ref-21" title=""son-of-RFC1036"">21</a>], non-standard
Newsgroup.
<span class="h3"><a class="selflink" id="section-3.7" href="#section-3.7">3.7</a> Other textual headers</span>
Search keys for data base Keywords: <a href="./rfc822">RFC 822</a>: 4.7.1
retrieval. <a href="./rfc1036">RFC 1036</a>: 2.2.9.
Title, heading, subject. Often Subject: <a href="./rfc822">RFC 822</a>: 4.7.1
used as thread indicator for <a href="./rfc1036">RFC 1036</a>: 2.1.4.
messages replying to or
commenting on other messages.
Comments on a message. Comments: <a href="./rfc822">RFC 822</a>: 4.7.2.
Description of a particular body Content- <a href="./rfc1521">RFC 1521</a>: 6.2.
part of a message. Description:
Organization to which the sender Organization: <a href="./rfc1036">RFC 1036</a>: 2.2.8,
of this article belongs. not standardized
for use in e-mail.
See Organization above. Organisation: Non-standard.
Short text describing a longer Summary: <a href="./rfc1036">RFC 1036</a>: 2.2.10,
article. Warning: Some mail not standardized
systems will not display this for use in e-mail,
text to the recipient. Because of discouraged.
this, do not use this header for
text which you want to ensure
that the recipient gets.
<span class="grey">Palme Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
A text string which identifies Content- <a href="./rfc1327">RFC 1327</a>, not for
the content of a message. Identifier: general usage.
<span class="h3"><a class="selflink" id="section-3.8" href="#section-3.8">3.8</a> Headers containing dates and times</span>
The time when a message was Delivery- <a href="./rfc1327">RFC 1327</a>, not for
delivered to its recipient. Date: general usage.
In Internet, the date when a Date: <a href="./rfc822">RFC 822</a>: 5.1,
message was written, in X.400, <a href="./rfc1123">RFC 1123</a>: 5.2.14
the time a message was submitted. <a href="./rfc1036">RFC 1036</a>: 2.1.2.
Some Internet mail systems also
use the date when the message was
submitted.
A suggested expiration date. Can Expires: <a href="./rfc1036">RFC 1036</a>: 2.2.4,
be used both to limit the time of not standardized
an article which is not for use in e-mail.
meaningful after a certain date,
and to extend the storage of
important articles.
Time at which a message loses its Expiry-Date: <a href="./rfc1327">RFC 1327</a>, not for
validity. This field may in the general usage.
future be replaced by "Expires:".
Latest time at which a reply is Reply-By: <a href="./rfc1327">RFC 1327</a>, not for
requested (not demanded). general usage.
<span class="h3"><a class="selflink" id="section-3.9" href="#section-3.9">3.9</a> Quality information</span>
Can be "normal", "urgent" or "non- Priority: <a href="./rfc1327">RFC 1327</a>, not for
urgent" and can influence general usage.
transmission speed and delivery.
Sometimes used as a priority Precedence: Non-standard,
value which can influence controversial,
transmission speed and delivery. discouraged.
Common values are "bulk" and
"first-class". Other uses is to
control automatic replies and to
control return-of-content
facilities, and to stop mailing
list loops.
<span class="grey">Palme Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
A hint from the originator to the Importance: <a href="./rfc1327">RFC 1327</a> and
recipients about how important a <a href="./rfc1911">RFC 1911</a>,
message is. Values: High, normal experimental
or low. Not used to control
transmission speed.
How sensitive it is to disclose Sensitivity: <a href="./rfc1327">RFC 1327</a> and
this message to other people than <a href="./rfc1911">RFC 1911</a>,
the specified recipients. Values: experimental
Personal, private, company
confidential. The absence of this
header in messages gatewayed from
X.400 indicates that the message
is not sensitive.
Body parts are missing. Incomplete- <a href="./rfc1327">RFC 1327</a>, not for
Copy: general usage.
<span class="h3"><a class="selflink" id="section-3.10" href="#section-3.10">3.10</a> Language information</span>
Can include a code for the Language: <a href="./rfc1327">RFC 1327</a>, not for
natural language used in a general usage.
message, e.g. "en" for English.
Can include a code for the Content- <a href="./rfc1766">RFC 1766</a>, proposed
natural language used in a Language: standard.
message, e.g. "en" for English.
<span class="h3"><a class="selflink" id="section-3.11" href="#section-3.11">3.11</a> Size information</span>
Inserted by certain mailers to Content- Non-standard,
indicate the size in bytes of the Length: discouraged.
message text. This is part of a
format some mailers use when
showing a message to its users,
and this header should not be
used when sending a message
through the net. The use of this
header in transmission of a
message can cause several
robustness and interoperability
problems.
Size of the message. Lines: <a href="./rfc1036">RFC 1036</a>: 2.2.12,
not standardized
for use in e-mail.
<span class="grey">Palme Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
<span class="h3"><a class="selflink" id="section-3.12" href="#section-3.12">3.12</a> Conversion control</span>
The body of this message may not Conversion: <a href="./rfc1327">RFC 1327</a>, not for
be converted from one character general usage.
set to another. Values:
Prohibited and allowed.
Non-standard variant of Content- Non-standard.
Conversion: with the same values. Conversion:
The body of this message may not Conversion- <a href="./rfc1327">RFC 1327</a>, not for
be converted from one character With-Loss: general usage.
set to another if information
will be lost. Values: Prohibited
and allowed.
<span class="h3"><a class="selflink" id="section-3.13" href="#section-3.13">3.13</a> Encoding information</span>
Format of content (character set Content-Type: <a href="./rfc1049">RFC 1049</a>,
etc.) Note that the values for <a href="./rfc1123">RFC 1123</a>: 5.2.13,
this header are defined in <a href="./rfc1521">RFC 1521</a>: 4.
different ways in <a href="./rfc1049">RFC 1049</a> and in <a href="./rfc1766">RFC 1766</a>: 4.1
MIME (<a href="./rfc1521">RFC 1521</a>), look for the
"MIME-version" header to
understand if Content-Type is to
be interpreted according to <a href="./rfc1049">RFC</a>
<a href="./rfc1049">1049</a> or according to MIME. The
MIME definition should be used in
generating mail.
<a href="./rfc1766">RFC 1766</a> defines a parameter
"difference" to this header.
Information from the SGML entity Content-SGML- non-standard
declaration corresponding to the Entity:
entity contained in the body of
the body part.
Coding method used in a MIME Content- <a href="./rfc1521">RFC 1521</a>: 5.
message body. Transfer-
Encoding:
Only used with the value Message-Type: <a href="./rfc1327">RFC 1327</a>, not for
"Delivery Report" to indicates general usage.
that this is a delivery report
gatewayed from X.400.
<span class="grey">Palme Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
Used in several different ways by Encoding: <a href="./rfc1154">RFC 1154</a>,
different mail systems. Some use <a href="./rfc1505">RFC 1505</a>,
it for a kind of content-type experimental.
information, some for encoding
and length information, some for
a kind of boundary information,
some in other ways.
<span class="h3"><a class="selflink" id="section-3.14" href="#section-3.14">3.14</a> Resent-headers</span>
When manually forwarding a Resent-Reply- <a href="./rfc822">RFC 822</a>: C.3.3.
message, headers referring to the To:,
forwarding, not to the original Resent-From:,
message. Note: MIME specifies Resent-
another way of resending Sender:,
messages, using the "Message" Resent-From:,
Content-Type. Resent-Date:,
Resent-To:,
Resent-cc:,
Resent-bcc:,
Resent-
Message-ID:
<span class="h3"><a class="selflink" id="section-3.15" href="#section-3.15">3.15</a> Security and reliability</span>
Checksum of content to ensure Content-MD5: <a href="./rfc1864">RFC 1864</a>, proposed
that it has not been modified. standard.
Used in Usenet News to store Xref: <a href="./rfc1036">RFC 1036</a>: 2.2.13,
information to avoid showing a only in Usenet
reader the same article twice if News, not in e-
it was sent to more than one mail.
newsgroup. Only for local usage
within one Usenet News server,
should not be sent between
servers.
<span class="h3"><a class="selflink" id="section-3.16" href="#section-3.16">3.16</a> Miscellaneous</span>
Name of file in which a copy of Fcc: Non-standard.
this message is stored.
Has been automatically forwarded. Auto- <a href="./rfc1327">RFC 1327</a>, not for
Forwarded: general usage.
<span class="grey">Palme Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
Can be used in Internet mail to Discarded- <a href="./rfc1327">RFC 1327</a>, not for
indicate X.400 IPM extensions X400-IPMS- general usage.
which could not be mapped to Extensions:
Internet mail format.
Can be used in Internet mail to Discarded- <a href="./rfc1327">RFC 1327</a>, not for
indicate X.400 MTS extensions X400-MTS- general usage.
which could not be mapped to Extensions:
Internet mail format.
This field is used by some mail Status: Non-standard,
delivery systems to indicate the should never
status of delivery for this appear in mail in
message when stored. Common transit.
values of this field are:
U message is not downloaded
and not deleted.
R message is read or
downloaded.
O message is old but not
deleted.
D to be deleted.
N new (a new message also
sometimes is distinguished
by not having any "Status:"
header.
Combinations of these characters
can occur, such as "Status: OR"
to indicate that a message is
downloaded but not deleted.
<span class="grey">Palme Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Acknowledgments</span>
Harald Tveit Alvestrand, Ned Freed, Olle Jdrnefors, Keith Moore, Nick
Smith and several other people have helped me with compiling this
list. I especially thank Ned Freed and Olle Jdrnefors for their
thorough review and many helpful suggestions for improvements. I
alone take responsibility for any errors which may still be in the
list.
An earlier version of this list has been published as part of [<a href="#ref-13" title=""Electronic Mail"">13</a>].
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. References</span>
Ref. Author, title IETF status
(July 1996)
----- --------------------------------------------- -----------
[1] J. Postel: "Simple Mail Transfer Protocol", Standard,
STD 10, <a href="./rfc821">RFC 821</a>, August 1982. Recommended
[<a id="ref-2">2</a>] D. Crocker: "Standard for the format of ARPA Standard,
Internet text messages." STD 11, <a href="./rfc822">RFC 822</a>, Recommended
August 1982.
[<a id="ref-3">3</a>] M.R. Horton, R. Adams: "Standard for Not an offi-
interchange of USENET messages", <a href="./rfc1036">RFC 1036</a>, cial IETF
December 1987. standard,
but in
reality a de-
facto
standard for
Usenet News
[<a id="ref-4">4</a>] M. Sirbu: "A Content-Type header header for Standard,
internet messages", <a href="./rfc1049">RFC 1049</a>, March 1988. Recommended,
but can in
the future
be expected
to be
replaced by
MIME
[<a id="ref-5">5</a>] R. Braden (editor): "Requirements for Standard,
Internet Hosts -- Application and Support", Required
STD-3, <a href="./rfc1123">RFC 1123</a>, October 1989.
[<a id="ref-6">6</a>] D. Robinson, R. Ullman: "Encoding Header Non-standard
Header for Internet Messages", <a href="./rfc1154">RFC 1154</a>,
April 1990.
<span class="grey">Palme Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
[<a id="ref-7">7</a>] S. Hardcastle-Kille: "Mapping between Proposed
X.400(1988) / ISO 10021 and <a href="./rfc822">RFC 822</a>", RFC standard,
1327 May 1992. elective
[<a id="ref-8">8</a>] H. Alvestrand & J. Romaguera: "Rules for Proposed
Downgrading Messages from X.400/88 to standard,
X.400/84 When MIME Content-Types are Present elective
in the Messages", <a href="./rfc1496">RFC 1496</a>, August 1993.
[<a id="ref-9">9</a>] A. Costanzo: "Encoding Header Header for Non-standard
Internet Messages", <a href="./rfc1154">RFC 1154</a>, April 1990.
[<a id="ref-10">10</a>] A. Costanzo, D. Robinson: "Encoding Header Experimental
Header for Internet Messages", <a href="./rfc1505">RFC 1505</a>,
August 1993.
[<a id="ref-11">11</a>] N. Borenstein & N. Freed: "MIME (Multipurpose Draft
Internet Mail Extensions) Part One: Standard,
Mechanisms for Specifying and Describing the elective
Format of Internet Message Bodies", <a href="./rfc1521">RFC 1521</a>,
Sept 1993.
[<a id="ref-12">12</a>] H. Alvestrand: "Tags for the Identification Proposed
of Languages", <a href="./rfc1766">RFC 1766</a>, February 1995. standard,
elective
[<a id="ref-13">13</a>] J. Palme: "Electronic Mail", Artech House Non-standard
publishers, London-Boston January 1995.
[<a id="ref-14">14</a>] R. Troost, S. Dorner: "Communicating Experimental
Presentation Information in Internet
Messages: The Content-Disposition Header",
<a href="./rfc1806">RFC 1806</a>, June 1995.
[<a id="ref-15">15</a>] B. Kantor, P. Lapsley, "Network News Transfer Proposed
Protocol: "A Proposed Standard for the Stream- standard
Based Transmission of News", <a href="./rfc977">RFC 977</a>, January
1986.
[<a id="ref-16">16</a>] 1848 PS S. Crocker, N. Freed, J. Galvin, Proposed
S. Murphy, "MIME Object Security Services", standard
<a href="./rfc1848">RFC 1848</a>, March 1995.
[<a id="ref-17">17</a>] J. Myers, M. Rose: The Content-MD5 Header Draft
Header, <a href="./rfc1864">RFC 1864</a>, October 1995. standard
<span class="grey">Palme Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
[<a id="ref-18">18</a>] M. Horton, UUCP mail interchange format Not an offi-
standard, <a href="./rfc976">RFC 976</a>, Januari 1986. cial IETF
standard,
but in
reality a de-
facto
standard for
Usenet News
[<a id="ref-19">19</a>] T. Berners-Lee, R. Headering, H. Frystyk: Not an official
Hypertext Transfer Protocol -- HTTP/1.0, IETF standard,
<a href="./rfc1945">RFC 1945</a>, May 1996. but the defacto
standard until
the next
version is
published
[<a id="ref-20">20</a>] G. Vaudreuil: Voice Profile for Internet Experimental
Mail, <a href="./rfc1911">RFC 1911</a>, February 1996.
[<a id="ref-21">21</a>] H. Spencer: News Article Format and Not even an
Transmission, June 1994, RFC, but
<a href="FTP://zoo.toronto.edu/pub/news.ps">FTP://zoo.toronto.edu/pub/news.ps</a> still widely
<a href="FTP://zoo.toronto.edu/pub/news.txt.Z">FTP://zoo.toronto.edu/pub/news.txt.Z</a> used and
partly
This document is often referenced under the almost a de-
name "son-of-RFC1036". facto
standard for
Usenet News
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Author's Address</span>
Jacob Palme Phone: +46-8-16 16 67
Stockholm University/KTH Fax: +46-8-783 08 29
Electrum 230 E-mail: jpalme@dsv.su.se
S-164 40 Kista, Sweden
<span class="grey">Palme Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
Appendix A:
Headers sorted by Internet RFC document in which they appear.
<a href="./rfc822">RFC 822</a>
-------
bcc
cc
Comments
Date
From
In-Reply-To
Keywords
Message-ID
Received
References
Reply-To
Resent-
Resent-bcc
Resent-cc
Resent-Date
Resent-From
Resent-From
Resent-Message-ID
Resent-Reply-To
Resent-To
Return-Path
Sender
Sender
Subject
To
<a href="./rfc976">RFC 976</a>
-------
"From " (followed by space, not colon (:")
<span class="grey">Palme Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
<a href="./rfc1036">RFC 1036</a>
--------
Approved
Control
Distribution
Expires
Followup-To
Lines
Newsgroups
Organization
Path
Summary
Xref
<a href="./rfc1049">RFC 1049</a>
--------
Content-Type
<a href="./rfc1327">RFC 1327</a>
--------
Alternate-recipient
Auto-Forwarded
Autoforwarded
Content-Identifier
Content-Return
Conversion
Conversion-With-Loss
Delivery-Date
Discarded-X400-IPMS-Extensions
Discarded-X400-MTS-Extensions
Disclose-Recipients
DL-Expansion-History
Expiry-Date
Generate-Delivery-Report
Importance
Incomplete-Copy
Language
Message-Type Delivery
Obsoletes
Original-Encoded-Information-Types
Prevent-NonDelivery-Report
Priority
Reply-By
Report
Sensitivity
<span class="grey">Palme Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
<a href="./rfc1505">RFC 1505</a>
--------
Encoding
<a href="./rfc1521">RFC 1521</a>
--------
Content-Description
Content-ID
Content-Transfer-Encoding
Content-Type
MIME-Version
<a href="./rfc1806">RFC 1806</a>
--------
Content-Disposition
<a href="./rfc1864">RFC 1864</a>
--------
Content-MD5
<a href="./rfc1911">RFC 1911</a>
--------
Importance
Sensitivity
son-of-RFC1036 [<a href="#ref-21" title=""son-of-RFC1036"">21</a>]
-------------------
Also-Control
Article-Names
Article-Updates
See-Also
Supersedes
<span class="grey">Palme Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
Not Internet standard
---------------------
Apparently-to
Content-Base
Content-Length
Content-Location
Content-SGML-Entity
Encoding
Errors-To
Return-Receipt-To
Fax
"From " (not followed by ":")
Telefax
Fcc
For-Comment
For-Handling
Mail-System-Version
Mailer
Organisation
Originating-Client
Phone
Status
Supersedes
X400-Content-Return
X-Mailer
X-Newsreader
<span class="grey">Palme Informational [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
Appendix B:
Alphabetical index
Section Heading-header
------- --------------
3.3 Also-Control
3.3 Alternate-Recipient
3.4 Apparently-To
3.4 Approved
3.6 Article-Names
3.6 Article-Updates
3.16 Auto-Forwarded
3.4 bcc
3.4 cc
Client, see Originating-Client
3.7 Comments
3.6 Content-Base
3.12 Content-Conversion
3.7 Content-Description
3.3 Content-Disposition
3.6 Content-ID
3.7 Content-Identifier
3.10 Content-Language see also Language
3.11 Content-Length
3.6 Content-Location
3.15 Content-MD5
3.4 Content-Return
3.13 Content-SGML-Entity
3.13 Content-Transfer-Encoding
3.13 Content-Type
3.3 Control
3.12 Conversion
3.12 Conversion-With-Loss
3.8 Date
3.8 Delivery-Date
Delivery-Report, see Generate-Delivery-Report, Prevent-
Delivery-Report, Non-Delivery-Report, Content-Type
Description, see Content-Description
3.16 Discarded-X400-IPMS-Extensions
3.16 Discarded-X400-MTS-Extensions
3.3 Disclose-Recipients
Disposition, see Content-Disposition
3.4 Distribution
3.2 DL-Expansion-History-Indication
3.13 Encoding see also Content-Transfer-Encoding
3.4 Errors-To
<span class="grey">Palme Informational [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
3.8 Expires
Extension see Discarded-X400-IPMS-Extensions, Discarded-
X400-MTS-Extensions
3.4 Fax
3.16 Fcc
3.4 Followup-To
Forwarded, see Auto-Forwarded
3.4 For-Comment
3.4 For-Handling
3.4 From
3.4 Generate-Delivery-Report
History, see DL-Expansion-History-Indication
ID, see Content-ID and Message-ID
Identifier, see Content-ID and Message-ID
3.9 Importance
3.6 In-Reply-To
3.9 Incomplete-Copy
3.7 Keywords
3.10 Language see also Content-Language
Length see Content-Length
3.11 Lines
3.4 Mail-System-Version see also X-mailer
3.4 Mailer
MD5 see Content-MD5
3.6 Message-ID
3.13 Message-Type
3.3 MIME-Version
3.4 Newsgroups
Newsreader, see X-Newsreader
3.6 Obsoletes
3.7 Organisation
3.7 Organization
3.3 Original-Encoded-Information-Types
3.4 Originating-Client
3.2 Path
3.4 Phone
3.9 Precedence
3.4 Prevent-NonDelivery-Report
3.9 Priority
3.2 Received
Recipient, see To, cc, bcc, Alternate-Recipient, Disclose-
Recipient
3.6 References
3.8 Reply-By
3.4 Reply-To, see also In-Reply-To, References
3.14 Resent-
Return see also Content-Return
3.2 Return-Path
<span class="grey">Palme Informational [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc2076">RFC 2076</a> Internet Message Headers February 1997</span>
3.5 Return-Receipt-To
3.6 See-Also
3.4 Sender
3.9 Sensitivity
3.16 Status
3.7 Subject
3.7 Summary
3.6 Supersedes
3.4 Telefax
3.4 To
Transfer-Encoding see Content-Transfer-Encoding
Type see Content-Type, Message-Type, Original-Encoded-
Information-Types
Version, see MIME-Version, X-Mailer
3.4 X400-Content-Return
3.4 X-Mailer see also Mail-System-Version
3.4 X-Newsreader
3.15 Xref
Palme Informational [Page 27]
</pre>
|