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 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013
|
<pre>Network Working Group K. Murchison, Ed.
Request for Comments: 5536 Carnegie Mellon University
Obsoletes: <a href="./rfc1036">1036</a> C. Lindsey
Category: Standards Track University of Manchester
D. Kohn
Healing Thresholds
November 2009
<span class="h1">Netnews Article Format</span>
Abstract
This document specifies the syntax of Netnews articles in the context
of the Internet Message Format (<a href="./rfc5322">RFC 5322</a>) and Multipurpose Internet
Mail Extensions (MIME) (<a href="./rfc2045">RFC 2045</a>). This document obsoletes <a href="./rfc1036">RFC 1036</a>,
providing an updated specification to reflect current practice and
incorporating incremental changes specified in other documents.
Status of This Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Copyright Notice
Copyright (c) 2009 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 BSD License.
This document may contain material from IETF Documents or IETF
Contributions published or made publicly available before November
10, 2008. The person(s) controlling the copyright in some of this
material may not have granted the IETF Trust the right to allow
modifications of such material outside the IETF Standards Process.
Without obtaining an adequate license from the person(s) controlling
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
the copyright in such materials, this document may not be modified
outside the IETF Standards Process, and derivative works of it may
not be created outside the IETF Standards Process, except to format
it for publication as an RFC or to translate it into languages other
than English.
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-4">4</a>
<a href="#section-1.1">1.1</a>. Basic Concepts .............................................<a href="#page-4">4</a>
<a href="#section-1.2">1.2</a>. Scope ......................................................<a href="#page-4">4</a>
<a href="#section-1.3">1.3</a>. Requirements Notation ......................................<a href="#page-4">4</a>
<a href="#section-1.4">1.4</a>. Syntax Notation ............................................<a href="#page-5">5</a>
<a href="#section-1.5">1.5</a>. Definitions ................................................<a href="#page-5">5</a>
<a href="#section-1.6">1.6</a>. Structure of This Document .................................<a href="#page-7">7</a>
<a href="#section-2">2</a>. Format ..........................................................<a href="#page-7">7</a>
<a href="#section-2.1">2.1</a>. Base .......................................................<a href="#page-7">7</a>
<a href="#section-2.2">2.2</a>. Header Fields ..............................................<a href="#page-8">8</a>
<a href="#section-2.3">2.3</a>. MIME Conformance ...........................................<a href="#page-9">9</a>
<a href="#section-3">3</a>. News Header Fields ..............................................<a href="#page-9">9</a>
<a href="#section-3.1">3.1</a>. Mandatory Header Fields ...................................<a href="#page-10">10</a>
<a href="#section-3.1.1">3.1.1</a>. Date ...............................................<a href="#page-11">11</a>
<a href="#section-3.1.2">3.1.2</a>. From ...............................................<a href="#page-11">11</a>
<a href="#section-3.1.3">3.1.3</a>. Message-ID .........................................<a href="#page-11">11</a>
<a href="#section-3.1.4">3.1.4</a>. Newsgroups .........................................<a href="#page-13">13</a>
<a href="#section-3.1.5">3.1.5</a>. Path ...............................................<a href="#page-14">14</a>
<a href="#section-3.1.6">3.1.6</a>. Subject ............................................<a href="#page-16">16</a>
<a href="#section-3.2">3.2</a>. Optional Header Fields ....................................<a href="#page-16">16</a>
<a href="#section-3.2.1">3.2.1</a>. Approved ...........................................<a href="#page-17">17</a>
<a href="#section-3.2.2">3.2.2</a>. Archive ............................................<a href="#page-17">17</a>
<a href="#section-3.2.3">3.2.3</a>. Control ............................................<a href="#page-17">17</a>
<a href="#section-3.2.4">3.2.4</a>. Distribution .......................................<a href="#page-18">18</a>
<a href="#section-3.2.5">3.2.5</a>. Expires ............................................<a href="#page-19">19</a>
<a href="#section-3.2.6">3.2.6</a>. Followup-To ........................................<a href="#page-19">19</a>
<a href="#section-3.2.7">3.2.7</a>. Injection-Date .....................................<a href="#page-20">20</a>
<a href="#section-3.2.8">3.2.8</a>. Injection-Info .....................................<a href="#page-20">20</a>
<a href="#section-3.2.9">3.2.9</a>. Organization .......................................<a href="#page-22">22</a>
<a href="#section-3.2.10">3.2.10</a>. References ........................................<a href="#page-22">22</a>
<a href="#section-3.2.11">3.2.11</a>. Summary ...........................................<a href="#page-23">23</a>
<a href="#section-3.2.12">3.2.12</a>. Supersedes ........................................<a href="#page-23">23</a>
<a href="#section-3.2.13">3.2.13</a>. User-Agent ........................................<a href="#page-23">23</a>
<a href="#section-3.2.14">3.2.14</a>. Xref ..............................................<a href="#page-24">24</a>
<a href="#section-3.3">3.3</a>. Obsolete Header Fields ....................................<a href="#page-25">25</a>
<a href="#section-3.3.1">3.3.1</a>. Lines ..............................................<a href="#page-25">25</a>
<a href="#section-4">4</a>. Internationalization Considerations ............................<a href="#page-25">25</a>
<a href="#section-5">5</a>. Security Considerations ........................................<a href="#page-25">25</a>
<a href="#section-6">6</a>. IANA Considerations ............................................<a href="#page-26">26</a>
<a href="#section-7">7</a>. References .....................................................<a href="#page-31">31</a>
<a href="#section-7.1">7.1</a>. Normative References ......................................<a href="#page-31">31</a>
<a href="#section-7.2">7.2</a>. Informative References ....................................<a href="#page-32">32</a>
<a href="#appendix-A">Appendix A</a>. Acknowledgments ......................................<a href="#page-34">34</a>
<a href="#appendix-B">Appendix B</a>. Differences from <a href="./rfc1036">RFC 1036</a> and Its Derivatives ........<a href="#page-34">34</a>
<a href="#appendix-C">Appendix C</a>. Differences from <a href="./rfc5322">RFC 5322</a> ............................<a href="#page-35">35</a>
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Basic Concepts</span>
"Netnews" is a set of protocols for generating, storing, and
retrieving news "articles" (whose format is a subset of that for
Email messages), and for exchanging them amongst a readership that is
potentially widely distributed. It is organized around "newsgroups",
with the expectation that each reader will be able to see all
articles posted to each newsgroup in which he participates. These
protocols most commonly use a flooding algorithm, which propagates
copies throughout a network of participating servers. Typically,
only one copy is stored per server, and each server makes it
available on demand to readers who are able to access that server.
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>. Scope</span>
This document specifies the syntax of Netnews articles in the context
of the Internet Message Format [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] and Multipurpose Internet
Mail Extensions (MIME) [<a href="./rfc2045" title=""Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies"">RFC2045</a>]. This document obsoletes [<a href="./rfc1036" title=""Standard for interchange of USENET messages"">RFC1036</a>],
updating the syntax of Netnews articles to reflect current practice
and incorporating changes and clarifications specified in other
documents such as [<a href="#ref-Son-of-1036" title=""Son of 1036: News Article Format and Transmission"">Son-of-1036</a>].
This is the first in a set of documents that obsolete [<a href="./rfc1036" title=""Standard for interchange of USENET messages"">RFC1036</a>].
This document focuses on the syntax and semantics of Netnews
articles. [<a href="./rfc5537" title=""Netnews Architecture and Protocols"">RFC5537</a>] is also a Standards Track document and describes
the protocol issues of Netnews articles, independent of transport
protocols such as the Network News Transfer Protocol (NNTP)
[<a href="./rfc3977" title=""Network News Transfer Protocol (NNTP)"">RFC3977</a>]. [<a href="#ref-USEAGE" title=""Usenet Best Practice"">USEAGE</a>], "Usenet Best Practice", describes
implementation recommendations to improve interoperability and
usability.
This specification is intended as a definition of what article
content format is to be passed between systems. Although many news
systems locally store articles in this format (which eliminates the
need for translation between formats), local storage is outside of
the scope of this standard.
<span class="h3"><a class="selflink" id="section-1.3" href="#section-1.3">1.3</a>. Requirements Notation</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>].
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
<span class="h3"><a class="selflink" id="section-1.4" href="#section-1.4">1.4</a>. Syntax Notation</span>
Header fields defined in this specification use the Augmented Backus-
Naur Form (ABNF) notation (including the Core Rules) specified in
[<a href="./rfc5234" title=""Augmented BNF for Syntax Specifications: ABNF"">RFC5234</a>] as well as many constructs defined in [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>], [<a href="./rfc2045" title=""Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies"">RFC2045</a>]
as updated by [<a href="./rfc2231" title=""MIME Parameter Value and Encoded Word Extensions: Character Sets, Languages, and Continuations"">RFC2231</a>], and [<a href="./rfc3986" title=""Uniform Resource Identifier (URI): Generic Syntax"">RFC3986</a>]. Specifically:
token = <see <a href="./rfc2045#section-5.1">RFC 2045 Section 5.1</a>>
value = <see <a href="./rfc2045#section-5.1">RFC 2045 Section 5.1</a>>
parameter = <see <a href="./rfc2231#section-7">RFC 2231 Section 7</a>>
attribute = <see <a href="./rfc2231#section-7">RFC 2231 Section 7</a>>
FWS = <see <a href="./rfc5322#section-3.2.2">RFC 5322 Section 3.2.2</a>>
comment = <see <a href="./rfc5322#section-3.2.2">RFC 5322 Section 3.2.2</a>>
CFWS = <see <a href="./rfc5322#section-3.2.2">RFC 5322 Section 3.2.2</a>>
atext = <see <a href="./rfc5322#section-3.2.3">RFC 5322 Section 3.2.3</a>>
dot-atom-text = <see <a href="./rfc5322#section-3.2.3">RFC 5322 Section 3.2.3</a>>
phrase = <see <a href="./rfc5322#section-3.2.5">RFC 5322 Section 3.2.5</a>>
date-time = <see <a href="./rfc5322#section-3.3">RFC 5322 Section 3.3</a>>
mailbox = <see <a href="./rfc5322#section-3.4">RFC 5322 Section 3.4</a>>
mailbox-list = <see <a href="./rfc5322#section-3.4">RFC 5322 Section 3.4</a>>
address-list = <see <a href="./rfc5322#section-3.4">RFC 5322 Section 3.4</a>>
body = <see <a href="./rfc5322#section-3.5">RFC 5322 Section 3.5</a>>
fields = <see <a href="./rfc5322#section-3.6">RFC 5322 Section 3.6</a>>
IPv6address = <see <a href="./rfc3986#section-3.2.2">RFC 3986 Section 3.2.2</a>>
IPv4address = <see <a href="./rfc3986#section-3.2.2">RFC 3986 Section 3.2.2</a>>
ALPHA = <see <a href="./rfc5234#appendix-B.1">RFC 5234 Appendix B.1</a>>
CRLF = <see <a href="./rfc5234#appendix-B.1">RFC 5234 Appendix B.1</a>>
DIGIT = <see <a href="./rfc5234#appendix-B.1">RFC 5234 Appendix B.1</a>>
DQUOTE = <see <a href="./rfc5234#appendix-B.1">RFC 5234 Appendix B.1</a>>
SP = <see <a href="./rfc5234#appendix-B.1">RFC 5234 Appendix B.1</a>>
VCHAR = <see <a href="./rfc5234#appendix-B.1">RFC 5234 Appendix B.1</a>>
Additionally, <a href="#section-3.1.3">Section 3.1.3</a> specifies a stricter definition of
<msg-id> than the syntax in <a href="./rfc5322#section-3.6.4">Section 3.6.4 of [RFC5322]</a>.
<span class="h3"><a class="selflink" id="section-1.5" href="#section-1.5">1.5</a>. Definitions</span>
An "article" is the unit of Netnews, analogous to an [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>]
"message". A "proto-article" is one that has not yet been injected
into the news system. In contrast to an article, a proto-article may
lack some mandatory header fields.
A "message identifier" (<a href="#section-3.1.3">Section 3.1.3</a>) is a unique identifier for an
article, usually supplied by the user agent that posted it or,
failing that, by the "news server". It distinguishes the article
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
from every other article ever posted anywhere. Articles with the
same message identifier are treated as if they are the same article
regardless of any differences in the body or header fields.
A "newsgroup" is a forum having a name and that is intended for
articles on a specific topic. An article is "posted to" a single
newsgroup or several newsgroups. When an article is posted to more
than one newsgroup, it is said to be "crossposted"; note that this
differs from posting the same text as part of each of several
articles, one per newsgroup.
A newsgroup may be "moderated", in which case submissions are not
posted directly, but mailed to a "moderator" for consideration and
possible posting. Moderators are typically human but may be
implemented partially or entirely in software.
A "poster" is the person or software that composes and submits a
potentially compliant article to a user agent.
A "reader" is the person or software reading Netnews articles.
A "followup" is an article containing a response to the contents of
an earlier article, its "precursor". Every followup includes a
"References" header field identifying that precursor (but note that
non-followup articles may also use a References header field).
A "control message" is an article that is marked as containing
control information; a news server receiving such an article may
(subject to the policies observed at that site) take actions beyond
just filing and passing on the article.
A news server is software that may accept articles from a user agent,
and/or make articles available to user agents, and/or exchange
articles with other news servers.
A "user agent" is software that may help posters submit proto-
articles to a news server, and/or fetch articles from a news server
and present them to a reader, and/or assist the reader in creating
articles and followups.
The generic term "agent" is used when describing requirements that
apply to both user agents and news servers.
An agent is said to "generate" a construct if it did not exist before
the agent created it. Examples are when a user agent creates a
message from text and addressing information supplied by a user, or
when a news server creates an "Injection-Info" header field for a
newly posted message.
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
An agent is said to "accept" a construct if some other entity
generates it and passes it to the agent in question, and the agent
processes it without treating it as a format or protocol error.
<span class="h3"><a class="selflink" id="section-1.6" href="#section-1.6">1.6</a>. Structure of This Document</span>
This document uses a cite-by-reference methodology, rather than
repeating the contents of other standards, which could otherwise
result in subtle differences and interoperability challenges.
Although this document is as a result rather short, it requires
complete understanding and implementation of the normative references
to be compliant.
<a href="#section-2">Section 2</a> defines the format of Netnews articles. <a href="#section-3">Section 3</a> details
the header fields necessary to make an article suitable for the
Netnews environment.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Format</span>
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Base</span>
An article is said to be conformant to this specification if it
conforms to the format specified in <a href="./rfc5322#section-3">Section 3 of [RFC5322]</a> and to the
additional requirements of this specification.
An article that uses the obsolete syntax specified in <a href="./rfc5322#section-4">Section 4 of
[RFC5322]</a> is NOT conformant to this specification, except for the
following two cases:
o Articles are conformant if they use the <obs-phrase> construct
(use of a phrase like "John Q. Public" without the use of quotes,
see <a href="./rfc5322#section-4.1">Section 4.1 of [RFC5322]</a>), but agents MUST NOT generate
productions of such syntax.
o Articles are conformant if they use the "GMT" <zone>, as specified
in <a href="#section-3.1.1">Section 3.1.1</a>.
This document, and specifications that build upon it, specify how to
handle conformant articles. Handling of non-conformant articles is
outside the scope of this specification.
Agents conforming to this specification MUST generate only conformant
articles.
The text below uses ABNF to specify restrictions on the syntax
specified in [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>]; this grammar is intended to be more
restrictive than the [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] grammar. Articles must conform to the
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
ABNF specified in [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] and also to the restrictions specified
here, both those that are expressed as text and those that are
expressed as ABNF.
NOTE: Other specifications use the term "header" as a synonym for
what [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] calls "header field". This document follows the
terminology in <a href="./rfc5322#section-2">Section 2 of [RFC5322]</a> in using the terms "line",
"header field", "header field name", "header field body", and
"folding", based on a belief that consistent terminology among
specifications that depend on each other makes the specifications
easier to use in the long run.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Header Fields</span>
All header fields in a Netnews article are compliant with [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>];
this specification, however, is less permissive in what can be
generated and accepted by agents. The syntax allowed for Netnews
article headers is a strict subset of the Internet Message Format
headers, making all headers compliant with this specification
inherently compliant with [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>]. Note however that the converse
is not guaranteed to be true in all cases.
General rules that apply to all header fields (even those documented
in [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] and [<a href="./rfc2045" title=""Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies"">RFC2045</a>]) are listed below, and those that apply to
specific header fields are described in the relevant sections of this
document.
o All agents MUST generate header fields so that at least one space
immediately follows the ':' separating the header field name and
the header field body (for compatibility with deployed software,
including NNTP [<a href="./rfc3977" title=""Network News Transfer Protocol (NNTP)"">RFC3977</a>] servers). News agents MAY accept header
fields that do not contain the required space.
o Every line of a header field body (including the first and any
that are subsequently folded) MUST contain at least one non-
whitespace character.
NOTE: This means that no header field body defined by or
referenced by this document can be empty. As a result, rather
than using the <unstructured> syntax from <a href="./rfc5322#section-3.2.5">Section 3.2.5 of
[RFC5322]</a>, this document uses a stricter definition:
unstructured = *WSP VCHAR *( [FWS] VCHAR ) *WSP
NOTE: The [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] specification sometimes uses [FWS] at the
beginning or end of ABNF describing header field content. This
specification uses *WSP in such cases, also in cases where this
specification redefines constructs from [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>]. This is
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
done for consistency with the restriction described here, but
the restriction applies to all header fields, not just those
where ABNF is defined in this document.
o Compliant software MUST NOT generate (but MAY accept) header field
lines of more than 998 octets. This is the only limit on the
length of a header field line prescribed by this standard.
However, specific rules to the contrary may apply in particular
cases (for example, according to [<a href="./rfc2047" title=""MIME (Multipurpose Internet Mail Extensions) Part Three: Message Header Extensions for Non-ASCII Text"">RFC2047</a>], lines of a header
field containing encoded words are limited to 76 octets).
[<a href="#ref-USEAGE" title=""Usenet Best Practice"">USEAGE</a>] includes suggested limits for convenience of display by
user agents.
NOTE: As stated in [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>], there is NO restriction on the
number of lines into which a header field may be split, and
hence there is NO restriction on the total length of a header
field (in particular it may, by suitable folding, be made to
exceed the 998-octet restriction pertaining to a single header
field line).
o The character set for header fields is US-ASCII. Where the use of
non-ASCII characters is required, they MUST be encoded using the
MIME mechanisms defined in [<a href="./rfc2047" title=""MIME (Multipurpose Internet Mail Extensions) Part Three: Message Header Extensions for Non-ASCII Text"">RFC2047</a>] and [<a href="./rfc2231" title=""MIME Parameter Value and Encoded Word Extensions: Character Sets, Languages, and Continuations"">RFC2231</a>].
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. MIME Conformance</span>
User agents MUST meet the definition of MIME conformance in [<a href="./rfc2049" title=""Multipurpose Internet Mail Extensions (MIME) Part Five: Conformance Criteria and Examples"">RFC2049</a>]
and MUST also support [<a href="./rfc2231" title=""MIME Parameter Value and Encoded Word Extensions: Character Sets, Languages, and Continuations"">RFC2231</a>]. This level of MIME conformance
provides support for internationalization and multimedia in message
bodies [<a href="./rfc2045" title=""Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies"">RFC2045</a>], [<a href="./rfc2046" title=""Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types"">RFC2046</a>], and [<a href="./rfc2231" title=""MIME Parameter Value and Encoded Word Extensions: Character Sets, Languages, and Continuations"">RFC2231</a>], and support for
internationalization of header fields [<a href="./rfc2047" title=""MIME (Multipurpose Internet Mail Extensions) Part Three: Message Header Extensions for Non-ASCII Text"">RFC2047</a>] and [<a href="./rfc2231" title=""MIME Parameter Value and Encoded Word Extensions: Character Sets, Languages, and Continuations"">RFC2231</a>]. Note
that [<a href="#ref-Errata" title=""RFC Editor Errata"">Errata</a>] currently exist for [<a href="./rfc2045" title=""Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies"">RFC2045</a>], [<a href="./rfc2046" title=""Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types"">RFC2046</a>], [<a href="./rfc2047" title=""MIME (Multipurpose Internet Mail Extensions) Part Three: Message Header Extensions for Non-ASCII Text"">RFC2047</a>] and
[<a href="./rfc2231" title=""MIME Parameter Value and Encoded Word Extensions: Character Sets, Languages, and Continuations"">RFC2231</a>].
For the purposes of <a href="./rfc2047#section-5">Section 5 of [RFC2047]</a>, all header fields defined
in <a href="#section-3">Section 3</a> of this standard are to be considered as "extension
message header fields", permitting the use of [<a href="./rfc2047" title=""MIME (Multipurpose Internet Mail Extensions) Part Three: Message Header Extensions for Non-ASCII Text"">RFC2047</a>] encodings
within any <unstructured> header field, or within any <comment> or
<phrase> permitted within any structured header field.
User agents MAY accept and generate other MIME extension header
fields, and in particular SHOULD accept Content-Disposition [<a href="./rfc2183" title=""Communicating Presentation Information in Internet Messages: The Content-Disposition Header Field"">RFC2183</a>]
and Content-Language [<a href="./rfc3282" title=""Content Language Headers"">RFC3282</a>].
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. News Header Fields</span>
The following news header fields extend those defined in <a href="./rfc5322#section-3.6">Section 3.6
of [RFC5322]</a>:
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
fields =/ *( approved /
archive /
control /
distribution /
expires /
followup-to /
injection-date /
injection-info /
lines /
newsgroups /
organization /
path /
summary /
supersedes /
user-agent /
xref )
Each of these header fields MUST NOT occur more than once in a news
article.
The following header fields defined in this document do not allow
<comment>s (i.e., they use FWS rather than CFWS).
Control
Distribution
Followup-To
Lines
Newsgroups
Path
Supersedes
Xref
This also applies to the following header field defined in [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>]:
Message-ID
Most of these header fields are mainly of interest to news servers,
and news servers often need to process these fields very rapidly.
Thus, some header fields prohibit <comment>s.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Mandatory Header Fields</span>
Each Netnews article conformant with this specification MUST have
exactly one of each of the following header fields: Date, From,
Message-ID, Newsgroups, Path, and Subject.
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
<span class="h4"><a class="selflink" id="section-3.1.1" href="#section-3.1.1">3.1.1</a>. Date</span>
The Date header field is the same as that specified in Sections <a href="#section-3.3">3.3</a>
and 3.6.1 of [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>], with the added restrictions detailed above in
<a href="#section-2.2">Section 2.2</a>. However, the use of "GMT" as a time zone (part of
<obs-zone>), although deprecated, is widespread in Netnews articles
today. Therefore, agents MUST accept <date-time> constructs that use
the "GMT" zone.
orig-date = "Date:" SP date-time CRLF
NOTE: This specification does not change [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>], which says
that agents MUST NOT generate <date-time> constructs that include
any zone names defined by <obs-zone>.
Software that accepts dates with unknown timezones SHOULD treat such
timezones as equivalent to "-0000" when comparing dates, as specified
in <a href="./rfc5322#section-4.3">Section 4.3 of [RFC5322]</a>.
Also note that these requirements apply wherever <date-time> is used,
including Injection-Date and Expires (Sections <a href="#section-3.2.7">3.2.7</a> and <a href="#section-3.2.5">3.2.5</a>,
respectively).
<span class="h4"><a class="selflink" id="section-3.1.2" href="#section-3.1.2">3.1.2</a>. From</span>
The From header field is the same as that specified in <a href="./rfc5322#section-3.6.2">Section 3.6.2
of [RFC5322]</a>, with the added restrictions detailed above in
<a href="#section-2.2">Section 2.2</a>.
from = "From:" SP mailbox-list CRLF
<span class="h4"><a class="selflink" id="section-3.1.3" href="#section-3.1.3">3.1.3</a>. Message-ID</span>
The Message-ID header field contains a unique message identifier.
Netnews is more dependent on message identifier uniqueness and fast
comparison than Email is, and some news software and standards
[<a href="./rfc3977" title=""Network News Transfer Protocol (NNTP)"">RFC3977</a>] might have trouble with the full range of possible
<msg-id>s permitted by [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>]. This section therefore restricts
the syntax of <msg-id> as compared to <a href="./rfc5322#section-3.6.4">Section 3.6.4 of [RFC5322]</a>.
The global uniqueness requirement for <msg-id> in [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] is to be
understood as applying across all protocols using such message
identifiers, and across both Email and Netnews in particular.
message-id = "Message-ID:" SP *WSP msg-id *WSP CRLF
msg-id = "<" msg-id-core ">"
; maximum length is 250 octets
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
msg-id-core = id-left "@" id-right
id-left = dot-atom-text
id-right = dot-atom-text / no-fold-literal
no-fold-literal = "[" *mdtext "]"
mdtext = %d33-61 / ; The rest of the US-ASCII
%d63-90 / ; characters not including
%d94-126 ; ">", "[", "]", or "\"
The <msg-id> MUST NOT be more than 250 octets in length.
NOTE: The length restriction ensures that systems that accept
message identifiers as a parameter when referencing an article
(e.g., [<a href="./rfc3977" title=""Network News Transfer Protocol (NNTP)"">RFC3977</a>]) can rely on a bounded length.
Observe that <msg-id> includes the < and >.
Observe also that in contrast to the corresponding header field in
[<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>]:
o The syntax does not allow comments within the Message-ID header
field.
o There is no possibility for ">" or WSP to occur inside a <msg-id>.
o Even though commonly derived from <domain>s, <id-rights>s are
case-sensitive (and thus, once created, are not to be altered
during subsequent transmission or copying)
This is to simplify processing by news servers and to ensure
interoperability with existing implementations and compliance with
[<a href="./rfc3977" title=""Network News Transfer Protocol (NNTP)"">RFC3977</a>]. A simple comparison of octets will always suffice to
determine the identity of two <msg-id>s.
Also note that this updated ABNF applies wherever <msg-id> is used,
including the References header field discussed in <a href="#section-3.2.10">Section 3.2.10</a> and
the Supersedes header field discussed in <a href="#section-3.2.12">Section 3.2.12</a>.
Some software will try to match the <id-right> of a <msg-id> in a
case-insensitive fashion; some will match it in a case-sensitive
fashion. Implementations MUST NOT generate a Message-ID where the
only difference from another Message-ID is the case of characters in
the <id-right> part.
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
When generating a <msg-id>, implementations SHOULD use a domain name
as the <id-right>.
NOTE: <a href="./rfc5322#section-3.6.4">Section 3.6.4 of [RFC5322]</a> recommends that the <id-right>
should be a domain name or a domain literal. Domain literals are
troublesome since many IP addresses are not globally unique;
domain names are more likely to generate unique Message-IDs.
<span class="h4"><a class="selflink" id="section-3.1.4" href="#section-3.1.4">3.1.4</a>. Newsgroups</span>
The Newsgroups header field specifies the newsgroup(s) to which the
article is posted.
newsgroups = "Newsgroups:" SP newsgroup-list CRLF
newsgroup-list = *WSP newsgroup-name
*( [FWS] "," [FWS] newsgroup-name ) *WSP
newsgroup-name = component *( "." component )
component = 1*component-char
component-char = ALPHA / DIGIT / "+" / "-" / "_"
Not all servers support optional FWS in the list of newsgroups. In
particular, folding the Newsgroups header field over several lines
has been shown to harm propagation significantly. Optional FWS in
the <newsgroup-list> SHOULD NOT be generated, but MUST be accepted.
A <component> SHOULD NOT consist solely of digits and SHOULD NOT
contain uppercase letters. Such <component>s MAY be used only to
refer to existing groups that do not conform to this naming scheme,
but MUST NOT be used otherwise.
NOTE: All-digit <component>s conflict with one widely used storage
scheme for articles. Mixed-case groups cause confusion between
systems with case-sensitive matching and systems with case-
insensitive matching of <newsgroup-name>s.
<component>s beginning with underline ("_") are reserved for use by
future versions of this standard and SHOULD NOT be generated by user
agents (whether in header fields or in newgroup control messages as
defined by [<a href="./rfc5537" title=""Netnews Architecture and Protocols"">RFC5537</a>]). However, such names MUST be accepted by news
servers.
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
<component>s beginning with "+" and "-" are reserved for private use
and SHOULD NOT be generated by user agents (whether in header fields
or in newgroup control messages [<a href="./rfc5537" title=""Netnews Architecture and Protocols"">RFC5537</a>]) without a private prior
agreement to do so. However, such names MUST be accepted by news
servers.
The following <newsgroup-name>s are reserved and MUST NOT be used as
the name of a newsgroup:
o Groups whose first (or only) <component> is "example"
o The group "poster"
The following <newsgroup-name>s have been used for specific purposes
in various implementations and protocols and therefore MUST NOT be
used for the names of normal newsgroups. They MAY be used for their
specific purpose or by local agreement.
o Groups whose first (or only) component is "to"
o Groups whose first (or only) component is "control"
o Groups that contain (or consist only of) the component "all"
o Groups that contain (or consist only of) the component "ctl"
o The group "junk"
NOTE: "example.*" is reserved for examples in this and other
standards; "poster" has a special meaning in the Followup-To
header field; "to.*" is reserved for certain point-to-point
communications in conjunction with the "ihave" control message as
defined in [<a href="./rfc5537" title=""Netnews Architecture and Protocols"">RFC5537</a>]; "control.*" and "junk" have special meanings
in some news servers; "all" is used as a wildcard in some
implementations; and "ctl" was formerly used to indicate a
<control-command> within the Newsgroups header field.
<span class="h4"><a class="selflink" id="section-3.1.5" href="#section-3.1.5">3.1.5</a>. Path</span>
The Path header field indicates the route taken by an article since
its injection into the Netnews system. Each agent that processes an
article is required to prepend at least one <path-identity> to this
header field body. This is primarily so that news servers are able
to avoid sending articles to sites already known to have them, in
particular the site they came from. Additionally, it permits
gathering statistics and tracing the route articles take in moving
over the network.
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
path = "Path:" SP *WSP path-list tail-entry *WSP CRLF
path-list = *( path-identity [FWS] [path-diagnostic] "!" )
path-diagnostic = diag-match / diag-other / diag-deprecated
diag-match = "!" ; another "!"
diag-other = "!." diag-keyword [ "." diag-identity ] [FWS]
diag-deprecated = "!" IPv4address [FWS]
diag-keyword = 1*ALPHA ; see [<a href="./rfc5537" title=""Netnews Architecture and Protocols"">RFC5537</a>]
diag-identity = path-identity / IPv4address / IPv6address
tail-entry = path-nodot
; may be the string "not-for-mail"
path-identity = ( 1*( label "." ) toplabel ) / path-nodot
path-nodot = 1*( alphanum / "-" / "_" ) ; legacy names
label = alphanum [ *( alphanum / "-" ) alphanum ]
toplabel = ( [ label *( "-" ) ] ALPHA *( "-" ) label ) /
( label *( "-" ) ALPHA [ *( "-" ) label ] ) /
( label 1*( "-" ) label )
alphanum = ALPHA / DIGIT ; compare [<a href="./rfc3696" title=""Application Techniques for Checking and Transformation of Names"">RFC3696</a>]
A <path-identity> is a name identifying a site. It takes the form of
a domain name having two or more components separated by dots, or a
single name with no dots (<path-nodot>).
Each <path-identity> in the <path-list> (which does not include the
<tail-entry>) indicates, from right to left, the successive agents
through which the article has passed. The use of the <diag-match>,
which appears as "!!", indicates that the agent to its left verified
the identity of the agent to its right before accepting the article
(whereas the <path-delimiter> "!" implies no such claim).
NOTE: Historically, the <tail-entry> indicated the name of the
sender. If not used for this purpose, the string "not-for-mail"
is often used instead (since at one time the whole path could be
used as a mail address for the sender).
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
NOTE: Although case-insensitive, it is intended that the
<diag-keyword>s should be in uppercase, to distinguish them from
the <path-identity>s, which are traditionally in lowercase.
A <path-diagnostic> is an item inserted into the Path header field
for purposes other than to indicate the name of a site. The use of
these is described in [<a href="./rfc5537" title=""Netnews Architecture and Protocols"">RFC5537</a>].
NOTE: One usage of a <path-diagnostic> is to record an IP address.
The fact that <IPv6address>es are allowed means that the colon (:)
is permitted; note that this may cause interoperability problems
at older sites that regard ":" as a <path-delimiter> and have
neighbors whose names have 4 or fewer characters, and where all
the characters are valid HEX digits.
NOTE: Although <IPv4address>es have occasionally been used in the
past (usually with a diagnostic intent), their continued use is
deprecated (though it is still acceptable in the form of the
<diag-deprecated>).
<span class="h4"><a class="selflink" id="section-3.1.6" href="#section-3.1.6">3.1.6</a>. Subject</span>
The Subject header field is the same as that specified in <a href="./rfc5322#section-3.6.5">Section</a>
<a href="./rfc5322#section-3.6.5">3.6.5 of [RFC5322]</a>, with the added restrictions detailed above in
<a href="#section-2.2">Section 2.2</a>. Further discussion of the content of the Subject header
field appears in [<a href="./rfc5537" title=""Netnews Architecture and Protocols"">RFC5537</a>] and [<a href="#ref-USEAGE" title=""Usenet Best Practice"">USEAGE</a>].
subject = "Subject:" SP unstructured CRLF
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Optional Header Fields</span>
None of the header fields appearing in this section are required to
appear in every article, but some of them may be required in certain
types of articles. Further discussion of these requirements appears
in [<a href="./rfc5537" title=""Netnews Architecture and Protocols"">RFC5537</a>] and [<a href="#ref-USEAGE" title=""Usenet Best Practice"">USEAGE</a>].
The header fields Comments, Keywords, Reply-To, and Sender are used
in Netnews articles in the same circumstances and with the same
meanings as those specified in [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>], with the added restrictions
detailed above in <a href="#section-2.2">Section 2.2</a>. Multiple occurrences of the Keywords
header field are not permitted.
comments = "Comments:" SP unstructured CRLF
keywords = "Keywords:" SP phrase *("," phrase) CRLF
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
reply-to = "Reply-To:" SP address-list CRLF
sender = "Sender:" SP mailbox CRLF
The MIME header fields MIME-Version, Content-Type, Content-Transfer-
Encoding, Content-Disposition, and Content-Language are used in
Netnews articles in the same circumstances and with the same meanings
as those specified in [<a href="./rfc2045" title=""Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies"">RFC2045</a>], [<a href="./rfc2183" title=""Communicating Presentation Information in Internet Messages: The Content-Disposition Header Field"">RFC2183</a>], and [<a href="./rfc3282" title=""Content Language Headers"">RFC3282</a>], with the
added restrictions detailed above in <a href="#section-2.2">Section 2.2</a>.
All remaining news header fields are described below.
<span class="h4"><a class="selflink" id="section-3.2.1" href="#section-3.2.1">3.2.1</a>. Approved</span>
The Approved header field indicates the mailing addresses (and
possibly the full names) of the persons or entities approving the
article for posting. Its principal uses are in moderated articles
and in group control messages; see [<a href="./rfc5537" title=""Netnews Architecture and Protocols"">RFC5537</a>].
approved = "Approved:" SP mailbox-list CRLF
<span class="h4"><a class="selflink" id="section-3.2.2" href="#section-3.2.2">3.2.2</a>. Archive</span>
The Archive header field provides an indication of the poster's
intent regarding preservation of the article in publicly accessible
long-term or permanent storage.
archive = "Archive:" SP [CFWS] ("no" / "yes")
*( [CFWS] ";" [CFWS] archive-param ) [CFWS] CRLF
archive-param = parameter
The presence of an Archive header field in an article with a field
body of "no" indicates that the poster does not permit redistribution
from publicly accessible long-term or permanent archives. A field
body of "yes" indicates that the poster permits such redistribution.
No <parameter>s are currently defined; if present, they can be
ignored. Further discussion of the use of the Archive header field
appears in [<a href="#ref-USEAGE" title=""Usenet Best Practice"">USEAGE</a>].
<span class="h4"><a class="selflink" id="section-3.2.3" href="#section-3.2.3">3.2.3</a>. Control</span>
The Control header field marks the article as a control message and
specifies the desired actions (in addition to the usual actions of
storing and/or relaying the article).
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
control = "Control:" SP *WSP control-command *WSP CRLF
control-command = verb *( 1*WSP argument )
verb = token
argument = 1*( %x21-7E )
The verb indicates what action should be taken, and the argument(s)
(if any) supply details. In some cases, the <body> (as defined in
[<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>]) of the article may also contain details. The legal verbs
and respective arguments are discussed in the companion document,
[<a href="./rfc5537" title=""Netnews Architecture and Protocols"">RFC5537</a>].
An article with a Control header field MUST NOT also have a
Supersedes header field.
<span class="h4"><a class="selflink" id="section-3.2.4" href="#section-3.2.4">3.2.4</a>. Distribution</span>
The Distribution header field specifies geographic or organizational
limits on an article's propagation.
distribution = "Distribution:" SP dist-list CRLF
dist-list = *WSP dist-name
*( [FWS] "," [FWS] dist-name ) *WSP
dist-name = ALPHA / DIGIT
*( ALPHA / DIGIT / "+" / "-" / "_" )
The <dist-name>s "world" and "local" are reserved. "world" indicates
unlimited distribution and SHOULD NOT be used explicitly, since it is
the default when the Distribution header field is absent entirely.
"local" is reserved for indicating distribution only to the local
site, as defined by local software configuration.
"All" MUST NOT be used as a <dist-name>. <dist-name>s SHOULD contain
at least three characters, except when they are two-letter country
codes drawn from [<a href="#ref-ISO3166-1" title=""ISO 3166-1:1997. Codes for the representation of names of countries and their subdivisions -- Part 1: Country codes"">ISO3166-1</a>]. <dist-name>s are case-insensitive
(i.e., "US", "Us", "uS", and "us" all specify the same distribution).
Optional FWS in the <dist-list> SHOULD NOT be generated, but MUST be
accepted.
<span class="grey">Murchison, 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="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
<span class="h4"><a class="selflink" id="section-3.2.5" href="#section-3.2.5">3.2.5</a>. Expires</span>
The Expires header field specifies a date and time when the poster
deems the article to be no longer relevant and could usefully be
removed ("expired").
NOTE: This header field is useful when the poster desires an
unusually long or an unusually short expiry time.
expires = "Expires:" SP date-time CRLF
See the remarks under <a href="#section-3.1.1">Section 3.1.1</a> regarding the syntax of
<date-time> and the requirements and recommendations to which it is
subject.
NOTE: The Expires header field is also sometimes used in Email
with a similar meaning; see [<a href="./rfc2156" title=""MIXER (Mime Internet X.400 Enhanced Relay): Mapping between X.400 and RFC 822/MIME"">RFC2156</a>].
<span class="h4"><a class="selflink" id="section-3.2.6" href="#section-3.2.6">3.2.6</a>. Followup-To</span>
The Followup-To header field specifies to which newsgroup(s) the
poster has requested that followups are to be posted. The
Followup-To header field SHOULD NOT appear in a message, unless its
content is different from the content of the Newsgroups header field.
followup-to = "Followup-To:" SP ( newsgroup-list / poster-text )
CRLF
poster-text = *WSP %d112.111.115.116.101.114 *WSP
; "poster" in lowercase
The syntax is the same as that of the Newsgroups (<a href="#section-3.1.4">Section 3.1.4</a>)
header field, with the exception that the keyword "poster" requests
that followups should be emailed directly to the article's poster
(using the addresses contained in the Reply-To header field if one
exists, otherwise using the addresses contained in the From header
field) rather than posted to any newsgroups. Agents MUST generate
the keyword "poster" in lowercase, but MAY choose to recognize case-
insensitive forms such as "Poster".
As in the Newsgroups (<a href="#section-3.1.4">Section 3.1.4</a>) header field, optional FWS in
the <newsgroup-list> SHOULD NOT be generated, but MUST be accepted.
<span class="grey">Murchison, et al. Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
<span class="h4"><a class="selflink" id="section-3.2.7" href="#section-3.2.7">3.2.7</a>. Injection-Date</span>
The Injection-Date header field contains the date and time that the
article was injected into the network. Its purpose is to enable news
servers, when checking for "stale" articles, to use a <date-time>
that was added by a news server at injection time rather than one
added by the user agent at message composition time.
This header field MUST be inserted whenever an article is injected.
However, software that predates this standard does not use this
header, and therefore agents MUST accept articles without the
Injection-Date header field.
injection-date = "Injection-Date:" SP date-time CRLF
See the remarks under <a href="#section-3.1.1">Section 3.1.1</a> regarding the syntax of
<date-time> and the requirements and recommendations to which it is
subject.
NOTE: Since clocks on various agents are not necessarily
synchronized, the <date-time> in this header field might not be a
later value than that in the Date header field. Agents MUST NOT
alter a pre-existing Date header field when adding an Injection-
Date header field.
This header field is intended to replace the currently used but
undocumented "NNTP-Posting-Date" header field, whose use is now
deprecated.
<span class="h4"><a class="selflink" id="section-3.2.8" href="#section-3.2.8">3.2.8</a>. Injection-Info</span>
The Injection-Info header field contains information provided by the
injecting news server as to how an article entered the Netnews
system; it assists in tracing the article's true origin. It can also
specify one or more addresses where complaints concerning the poster
of the article may be sent.
injection-info = "Injection-Info:" SP [CFWS] path-identity
[CFWS] *( ";" [CFWS] parameter ) [CFWS] CRLF
NOTE: The syntax of <parameter> (<a href="./rfc2045#section-5.1">Section 5.1 of [RFC2045]</a>, as
amended by [<a href="./rfc2231" title=""MIME Parameter Value and Encoded Word Extensions: Character Sets, Languages, and Continuations"">RFC2231</a>]), taken in conjunction with the folding rules
of [<a href="./rfc0822" title=""Standard for the format of ARPA Internet text messages"">RFC0822</a>] (note: not [<a href="./rfc2822" title=""Internet Message Format"">RFC2822</a>] or [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>]), effectively
allows [CFWS] to occur on either side of the "=" inside a
<parameter>.
<span class="grey">Murchison, et al. Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
The following table gives the <attribute> and the format of the
<value> for each <parameter> defined for use with this header field.
At most, one occurrence of each such <parameter> is allowed.
<attribute> format of <value>
-------------------- -----------------
"posting-host" a <host-value>
"posting-account" any <value>
"logging-data" any <value>
"mail-complaints-to" an <address-list>
where
host-value = dot-atom-text / IPv4address / IPv6address /
(dot-atom-text ":" ( IPv4address / IPv6address ))
NOTE: Since any such <host-value> or <address-list> also has to be
a syntactically correct <value>, it will usually be necessary to
encapsulate it as a <quoted-string>, for example:
posting-host = "posting.example.com:192.0.2.1"
Other <attribute>s SHOULD NOT be used unless defined in extensions to
this standard. If non-standards-based <attribute>s are used, they
MUST begin with an "x-".
Although comments and folding of whitespace are permitted throughout
the Injection-Info header field, folding SHOULD NOT be used within
any <parameter>. Folding SHOULD only occur before or after the ";"
separating <parameter>s, and comments SHOULD only be used following
the last <parameter>.
NOTE: Some of this information has previously been sent in non-
standardized header fields such as NNTP-Posting-Host, X-Trace,
X-Complaints-To, and others. Once a news server generates an
Injection-Info header field, it should have no need to send these
non-standard header fields.
The "posting-host" <parameter> specifies the Fully Qualified Domain
Name (FQDN) and/or IP address (IPv4address or IPv6address) of the
host from which the news server received the article.
NOTE: If the "posting-host" <parameter> fails to deterministically
identify the host (e.g., dynamic IP address allocation), the
"posting-account" or "logging-data" <parameter> may provide
additional information about the true origin of the article.
<span class="grey">Murchison, et al. Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
The "posting-account" <parameter> identifies the source from which
that news server received the article, in a notation that can be
interpreted by the news server administrator. This notation can
include any information the administrator deems pertinent. In order
to limit the exposure of personal data, it SHOULD be given in a form
that cannot be interpreted by other sites. However, to make it
useful for rate limiting and abuse detection, two messages posted
from the same source SHOULD have the same value of "posting-account",
and two messages from different sources SHOULD have differing values
of "posting-account". The exact definition of "source" is left to
the discretion of the news server administrator.
The "logging-data" <parameter> contains information (typically a
session number or other non-persistent means of identifying a posting
account) that will enable the true origin of the article to be
determined by reference to logging information kept by the news
server.
The "mail-complaints-to" <parameter> specifies one or more mailboxes
for sending complaints concerning the behavior of the poster of the
article.
It is a matter of local policy which of the above <parameter>s to
include. Some pieces of information have privacy implications; this
is discussed in [<a href="#ref-USEAGE" title=""Usenet Best Practice"">USEAGE</a>].
<span class="h4"><a class="selflink" id="section-3.2.9" href="#section-3.2.9">3.2.9</a>. Organization</span>
The Organization header field is a short phrase identifying the
poster's organization.
organization = "Organization:" SP unstructured CRLF
NOTE: There is no "s" in Organization.
<span class="h4"><a class="selflink" id="section-3.2.10" href="#section-3.2.10">3.2.10</a>. References</span>
The References header field is the same as that specified in <a href="./rfc5322#section-3.6.4">Section</a>
<a href="./rfc5322#section-3.6.4">3.6.4 of [RFC5322]</a>, with the added restrictions detailed above in
<a href="#section-2.2">Section 2.2</a> and those listed below:
o The updated <msg-id> construct defined in <a href="#section-3.1.3">Section 3.1.3</a> MUST be
used.
o Message identifiers MUST be separated with CFWS.
<span class="grey">Murchison, et al. Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
o Comments in CFWS between message identifiers can cause
interoperability problems, so comments SHOULD NOT be generated but
MUST be accepted.
references = "References:" SP [CFWS] msg-id *(CFWS msg-id)
[CFWS] CRLF
<span class="h4"><a class="selflink" id="section-3.2.11" href="#section-3.2.11">3.2.11</a>. Summary</span>
The Summary header field is a short phrase summarizing the article's
content.
summary = "Summary:" SP unstructured CRLF
<span class="h4"><a class="selflink" id="section-3.2.12" href="#section-3.2.12">3.2.12</a>. Supersedes</span>
The Supersedes header field contains a message identifier specifying
an article to be superseded upon the arrival of this one. An article
containing a Supersedes header field is equivalent to a "cancel"
[<a href="./rfc5537" title=""Netnews Architecture and Protocols"">RFC5537</a>] control message for the specified article, followed
immediately by the new article without the Supersedes header field.
supersedes = "Supersedes:" SP *WSP msg-id *WSP CRLF
NOTE: There is no "c" in Supersedes.
NOTE: The Supersedes header field defined here has no connection
with the Supersedes header field that sometimes appears in Email
messages converted from X.400 according to [<a href="./rfc2156" title=""MIXER (Mime Internet X.400 Enhanced Relay): Mapping between X.400 and RFC 822/MIME"">RFC2156</a>]; in
particular, the syntax here permits only one <msg-id> in contrast
to the multiple <msg-id>s in that Email version.
<span class="h4"><a class="selflink" id="section-3.2.13" href="#section-3.2.13">3.2.13</a>. User-Agent</span>
The User-Agent header field contains information about the user agent
(typically a newsreader) generating the article, for statistical
purposes and tracing of standards violations to specific software in
need of correction. It is intended that this header field be
suitable for use in Email.
user-agent = "User-Agent:" SP 1*product [CFWS] CRLF
product = [CFWS] token [ [CFWS] "/" product-version ]
product-version = [CFWS] token
<span class="grey">Murchison, et al. Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
This header field MAY contain multiple <product> tokens identifying
the user agent and any subproducts that form a significant part of
it, listed in order of their significance for identifying the
application.
NOTE: Some of this information has previously been sent in non-
standardized header fields such as X-Newsreader, X-Mailer,
X-Posting-Agent, X-Http-User-Agent, and others. Once a user agent
generates a User-Agent header field, it should have no need to
send these non-standard header fields.
NOTE: [<a href="./rfc2616" title=""Hypertext Transfer Protocol -- HTTP/1.1"">RFC2616</a>] describes a similar facility for the HTTP
protocol. The Netnews article format differs in that "{" and "}"
are allowed in tokens (<product> and <product-version>) and
comments are permitted wherever white space is allowed.
<span class="h4"><a class="selflink" id="section-3.2.14" href="#section-3.2.14">3.2.14</a>. Xref</span>
The Xref header field indicates where an article was filed by the
last news server to process it. User agents often use the
information in the Xref header field to avoid multiple processing of
crossposted articles.
xref = "Xref:" SP *WSP server-name
1*( FWS location ) *WSP CRLF
server-name = path-identity
location = newsgroup-name ":" article-locator
article-locator = 1*( %x21-27 / %x29-3A / %x3C-7E )
; US-ASCII printable characters
; except '(' and ';'
The <server-name> is included so that software can determine which
news server generated the header field. The locations specify where
the article is filed -- i.e., under which newsgroups (which may
differ from those in the Newsgroups header field), and where under
those newsgroups. The exact form of an <article-locator> is
implementation-specific.
NOTE: The traditional form of an <article-locator> (as required by
[<a href="./rfc3977" title=""Network News Transfer Protocol (NNTP)"">RFC3977</a>]) is a decimal number, with articles in each newsgroup
numbered consecutively starting from 1.
<span class="grey">Murchison, et al. Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. Obsolete Header Fields</span>
The header fields Date-Received, Posting-Version, and Relay-Version
defined in [<a href="./rfc0850" title=""Standard for interchange of USENET messages"">RFC0850</a>], as well as Also-Control, Article-Names,
Article-Updates, and See-Also defined in [<a href="#ref-Son-of-1036" title=""Son of 1036: News Article Format and Transmission"">Son-of-1036</a>] are declared
obsolete. See the cited specification documents for further
information on their original use.
These header fields MUST NOT be generated and SHOULD be ignored.
<span class="h4"><a class="selflink" id="section-3.3.1" href="#section-3.3.1">3.3.1</a>. Lines</span>
The Lines header field indicates the number of lines in the <body>
(as defined in [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>]) of the article.
lines = "Lines:" SP *WSP 1*DIGIT *WSP CRLF
The line count is the number of CRLF separators in the <body>.
Historically, this header field was used by the NNTP [<a href="./rfc3977" title=""Network News Transfer Protocol (NNTP)"">RFC3977</a>]
overview facility, but its use for this purpose is now deprecated.
As a result, this header field is to be regarded as obsolescent, and
it is likely to be removed entirely in a future version of this
standard. All agents SHOULD ignore it and SHOULD NOT generate it.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Internationalization Considerations</span>
Internationalization of Netnews article header fields and bodies is
provided using the MIME mechanisms discussed in <a href="#section-2.3">Section 2.3</a>. Note
that the generation of internationalized <newsgroup-name>s for use in
header fields is not addressed in this document.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Security Considerations</span>
The Netnews article format specified in this document does not
provide any security services, such as confidentiality,
authentication of sender, or non-repudiation. Instead, such services
need to be layered above, using such protocols as S/MIME [<a href="./rfc3851" title=""Secure/Multipurpose Internet Mail Extensions (S/MIME) Version 3.1 Message Specification"">RFC3851</a>] or
PGP/MIME (Pretty Good Privacy / MIME) [<a href="./rfc3156" title=""MIME Security with OpenPGP"">RFC3156</a>], or below, using
secure versions of news transport protocols. Additionally, several
currently non-standardized protocols such as [<a href="#ref-PGPVERIFY" title=""Authentication of Usenet Group Changes (pgpverify)"">PGPVERIFY</a>] may be
standardized in the near future.
Message identifiers (<a href="#section-3.1.3">Section 3.1.3</a>) in Netnews articles are required
to be unique; articles may be refused (in server-to-server transfer)
if the identifier has already been seen. If a malicious agent can
predict the identifier of an article, it can preempt the article by
posting its own article (possibly to a quite different group) with
<span class="grey">Murchison, et al. Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
the same message identifier, thereby preventing the target article
from propagating. Therefore, agents that generate message
identifiers for Netnews articles SHOULD ensure that they are
unpredictable.
MIME security considerations are discussed in [<a href="./rfc2046" title=""Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types"">RFC2046</a>]. Note that
the full range of encodings allowed for parameters in [<a href="./rfc2046" title=""Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types"">RFC2046</a>] and
[<a href="./rfc2231" title=""MIME Parameter Value and Encoded Word Extensions: Character Sets, Languages, and Continuations"">RFC2231</a>] permits constructs that simple parsers may fail to parse
correctly; examples of hard-to-parse constructs are:
Content-Type: multipart/mixed
(; boundary=foo ; xyz=");bOuNdArY*=''next%20part(")
Content-Type: multipart/digest;
boundary (not=me) = ("yes ;-) simple (foo;bar") ; x-foo = xyzzy
Such deficiencies in parsing may be used as part of an attack.
Further security considerations are discussed in [<a href="./rfc5537" title=""Netnews Architecture and Protocols"">RFC5537</a>].
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. IANA Considerations</span>
IANA has registered the following header fields in the Permanent
Message Header Field Repository, in accordance with the procedures
set out in [<a href="./rfc3864" title=""Registration Procedures for Message Header Fields"">RFC3864</a>].
Header field name: Also-Control
Applicable protocol: netnews
Status: obsoleted
Author/change controller: IETF
Specification document(s): [<a href="#ref-Son-of-1036" title=""Son of 1036: News Article Format and Transmission"">Son-of-1036</a>] (<a href="#section-6.15">Section 6.15</a>)
Header field name: Approved
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2.1">Section 3.2.1</a>)
Header field name: Archive
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2.2">Section 3.2.2</a>)
<span class="grey">Murchison, et al. Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
Header field name: Article-Names
Applicable protocol: netnews
Status: obsoleted
Author/change controller: IETF
Specification document(s): [<a href="#ref-Son-of-1036" title=""Son of 1036: News Article Format and Transmission"">Son-of-1036</a>] (<a href="#section-6.17">Section 6.17</a>)
Header field name: Article-Updates
Applicable protocol: netnews
Status: obsoleted
Author/change controller: IETF
Specification document(s): [<a href="#ref-Son-of-1036" title=""Son of 1036: News Article Format and Transmission"">Son-of-1036</a>] (<a href="#section-6.18">Section 6.18</a>)
Header field name: Comments
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2">Section 3.2</a>),
[<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] (<a href="#section-3.6.5">Section 3.6.5</a>)
Header field name: Control
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2.3">Section 3.2.3</a>)
Header field name: Date
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.1.1">Section 3.1.1</a>),
[<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] (<a href="#section-3.6.1">Section 3.6.1</a>)
Header field name: Date-Received
Applicable protocol: netnews
Status: obsoleted
Author/change controller: IETF
Specification document(s): [<a href="./rfc0850" title=""Standard for interchange of USENET messages"">RFC0850</a>] (<a href="#section-2.2.4">Section 2.2.4</a>)
Header field name: Distribution
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2.4">Section 3.2.4</a>)
<span class="grey">Murchison, et al. Standards Track [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
Header field name: Expires
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2.5">Section 3.2.5</a>)
Header field name: Followup-To
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2.6">Section 3.2.6</a>)
Header field name: From
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.1.2">Section 3.1.2</a>),
[<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] (<a href="#section-3.6.2">Section 3.6.2</a>)
Header field name: Injection-Date
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2.7">Section 3.2.7</a>)
Header field name: Injection-Info
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2.8">Section 3.2.8</a>)
Header field name: Keywords
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2">Section 3.2</a>),
[<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] (<a href="#section-3.6.5">Section 3.6.5</a>)
Header field name: Lines
Applicable protocol: netnews
Status: deprecated
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.3.1">Section 3.3.1</a>)
Related information: [<a href="./rfc3977" title=""Network News Transfer Protocol (NNTP)"">RFC3977</a>] (<a href="#section-8.1">Section 8.1</a>)
<span class="grey">Murchison, et al. Standards Track [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
Header field name: Message-ID
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.1.3">Section 3.1.3</a>)
Related information: [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] (<a href="#section-3.6.4">Section 3.6.4</a>)
Header field name: Newsgroups
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.1.4">Section 3.1.4</a>)
Header field name: NNTP-Posting-Date
Applicable protocol: netnews
Status: obsoleted
Author/change controller: IETF
Specification document(s): none
Header field name: NNTP-Posting-Host
Applicable protocol: netnews
Status: obsoleted
Author/change controller: IETF
Specification document(s): [<a href="./rfc2980" title=""Common NNTP Extensions"">RFC2980</a>] (<a href="#section-3.4.1">Section 3.4.1</a>)
Header field name: Organization
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2.9">Section 3.2.9</a>)
Header field name: Path
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.1.5">Section 3.1.5</a>)
Header field name: Posting-Version
Applicable protocol: netnews
Status: obsoleted
Author/change controller: IETF
Specification document(s): [<a href="./rfc0850" title=""Standard for interchange of USENET messages"">RFC0850</a>] (<a href="#section-2.1.2">Section 2.1.2</a>)
<span class="grey">Murchison, et al. Standards Track [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
Header field name: References
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2.10">Section 3.2.10</a>),
[<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] (<a href="#section-3.6.4">Section 3.6.4</a>)
Header field name: Relay-Version
Applicable protocol: netnews
Status: obsoleted
Author/change controller: IETF
Specification document(s): [<a href="./rfc0850" title=""Standard for interchange of USENET messages"">RFC0850</a>] (<a href="#section-2.1.1">Section 2.1.1</a>)
Header field name: Reply-To
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2">Section 3.2</a>),
[<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] (<a href="#section-3.6.2">Section 3.6.2</a>)
Header field name: See-Also
Applicable protocol: netnews
Status: obsoleted
Author/change controller: IETF
Specification document(s): [<a href="#ref-Son-of-1036" title=""Son of 1036: News Article Format and Transmission"">Son-of-1036</a>] (<a href="#section-6.16">Section 6.16</a>)
Header field name: Sender
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2">Section 3.2</a>),
[<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] (<a href="#section-3.6.2">Section 3.6.2</a>)
Header field name: Subject
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.1.6">Section 3.1.6</a>),
[<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] (<a href="#section-3.6.5">Section 3.6.5</a>)
Header field name: Summary
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2.11">Section 3.2.11</a>)
<span class="grey">Murchison, et al. Standards Track [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
Header field name: Supersedes
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2.12">Section 3.2.12</a>)
Header field name: User-Agent
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2.13">Section 3.2.13</a>)
Related information: [<a href="./rfc2616" title=""Hypertext Transfer Protocol -- HTTP/1.1"">RFC2616</a>] (<a href="#section-14.43">Section 14.43</a>)
Header field name: Xref
Applicable protocol: netnews
Status: standard
Author/change controller: IETF
Specification document(s): This document (<a href="#section-3.2.14">Section 3.2.14</a>)
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. References</span>
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. Normative 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-RFC2047">RFC2047</a>] Moore, K., "MIME (Multipurpose Internet Mail
Extensions) Part Three: Message Header Extensions for
Non-ASCII Text", <a href="./rfc2047">RFC 2047</a>, November 1996.
[<a id="ref-RFC2049">RFC2049</a>] Freed, N. and N. Borenstein, "Multipurpose Internet
Mail Extensions (MIME) Part Five: Conformance Criteria
and Examples", <a href="./rfc2049">RFC 2049</a>, November 1996.
[<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-RFC2183">RFC2183</a>] Troost, R., Dorner, S., and K. Moore, "Communicating
Presentation Information in Internet Messages: The
Content-Disposition Header Field", <a href="./rfc2183">RFC 2183</a>,
August 1997.
<span class="grey">Murchison, et al. Standards Track [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
[<a id="ref-RFC2231">RFC2231</a>] Freed, N. and K. Moore, "MIME Parameter Value and
Encoded Word Extensions: Character Sets, Languages,
and Continuations", <a href="./rfc2231">RFC 2231</a>, November 1997.
[<a id="ref-RFC3282">RFC3282</a>] Alvestrand, H., "Content Language Headers", <a href="./rfc3282">RFC 3282</a>,
May 2002.
[<a id="ref-RFC3986">RFC3986</a>] Berners-Lee, T., Fielding, R., and L. Masinter,
"Uniform Resource Identifier (URI): Generic Syntax",
STD 66, <a href="./rfc3986">RFC 3986</a>, January 2005.
[<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-RFC5322">RFC5322</a>] Resnick, P., Ed., "Internet Message Format", <a href="./rfc5322">RFC 5322</a>,
October 2008.
[<a id="ref-RFC5537">RFC5537</a>] Allbery, R., Ed. and C. Lindsey, "Netnews Architecture
and Protocols", <a href="./rfc5537">RFC 5537</a>, November 2009.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Informative References</span>
[<a id="ref-Errata">Errata</a>] "RFC Editor Errata",
<<a href="http://www.rfc-editor.org/errata.php">http://www.rfc-editor.org/errata.php</a>>.
[<a id="ref-ISO3166-1">ISO3166-1</a>] International Organization for Standardization, "ISO
3166-1:1997. Codes for the representation of names of
countries and their subdivisions -- Part 1: Country
codes", 1997.
[<a id="ref-PGPVERIFY">PGPVERIFY</a>] Lawrence, D., "Authentication of Usenet Group Changes
(pgpverify)", June 1999,
<<a href="ftp://ftp.isc.org/pub/pgpcontrol/README.html">ftp://ftp.isc.org/pub/pgpcontrol/README.html</a>>.
[<a id="ref-RFC0822">RFC0822</a>] Crocker, D., "Standard for the format of ARPA Internet
text messages", STD 11, <a href="./rfc822">RFC 822</a>, August 1982.
[<a id="ref-RFC0850">RFC0850</a>] Horton, M., "Standard for interchange of USENET
messages", <a href="./rfc850">RFC 850</a>, June 1983.
[<a id="ref-RFC1036">RFC1036</a>] Horton, M. and R. Adams, "Standard for interchange of
USENET messages", <a href="./rfc1036">RFC 1036</a>, December 1987.
[<a id="ref-RFC2156">RFC2156</a>] Kille, S., "MIXER (Mime Internet X.400 Enhanced
Relay): Mapping between X.400 and <a href="./rfc822">RFC 822</a>/MIME",
<a href="./rfc2156">RFC 2156</a>, January 1998.
<span class="grey">Murchison, et al. Standards Track [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
[<a id="ref-RFC2616">RFC2616</a>] Fielding, R., Gettys, J., Mogul, J., Frystyk, H.,
Masinter, L., Leach, P., and T. Berners-Lee,
"Hypertext Transfer Protocol -- HTTP/1.1", <a href="./rfc2616">RFC 2616</a>,
June 1999.
[<a id="ref-RFC2822">RFC2822</a>] Resnick, P., "Internet Message Format", <a href="./rfc2822">RFC 2822</a>,
April 2001.
[<a id="ref-RFC2980">RFC2980</a>] Barber, S., "Common NNTP Extensions", <a href="./rfc2980">RFC 2980</a>,
October 2000.
[<a id="ref-RFC3156">RFC3156</a>] Elkins, M., Del Torto, D., Levien, R., and T.
Roessler, "MIME Security with OpenPGP", <a href="./rfc3156">RFC 3156</a>,
August 2001.
[<a id="ref-RFC3696">RFC3696</a>] Klensin, J., "Application Techniques for Checking and
Transformation of Names", <a href="./rfc3696">RFC 3696</a>, February 2004.
[<a id="ref-RFC3851">RFC3851</a>] Ramsdell, B., "Secure/Multipurpose Internet Mail
Extensions (S/MIME) Version 3.1 Message
Specification", <a href="./rfc3851">RFC 3851</a>, July 2004.
[<a id="ref-RFC3864">RFC3864</a>] Klyne, G., Nottingham, M., and J. Mogul, "Registration
Procedures for Message Header Fields", <a href="https://www.rfc-editor.org/bcp/bcp90">BCP 90</a>,
<a href="./rfc3864">RFC 3864</a>, September 2004.
[<a id="ref-RFC3977">RFC3977</a>] Feather, C., "Network News Transfer Protocol (NNTP)",
<a href="./rfc3977">RFC 3977</a>, October 2006.
[<a id="ref-Son-of-1036">Son-of-1036</a>] Spencer, H., "Son of 1036: News Article Format and
Transmission", Work in Progress, May 2009.
[<a id="ref-USEAGE">USEAGE</a>] Lindsey, C., <a style="text-decoration: none" href='https://www.google.com/search?sitesearch=datatracker.ietf.org%2Fdoc%2Fhtml%2F&q=inurl:draft-+%22Usenet+Best+Practice%22'>"Usenet Best Practice"</a>, Work in Progress,
March 2005.
<span class="grey">Murchison, et al. Standards Track [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Acknowledgments</span>
As this document is the result of an eight-year effort, the number of
people that have contributed to its content are too numerous to
mention individually. Many thanks go out to all past and present
members of the USEFOR Working Group of the Internet Engineering Task
Force (IETF) and its accompanying mailing list.
<span class="h2"><a class="selflink" id="appendix-B" href="#appendix-B">Appendix B</a>. Differences from <a href="./rfc1036">RFC 1036</a> and Its Derivatives</span>
This appendix contains a list of changes that have been made in the
Netnews article format from earlier standards, specifically
[<a href="./rfc1036" title=""Standard for interchange of USENET messages"">RFC1036</a>].
o The [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] conventions for parenthesis-enclosed <comment>s in
header fields are supported in all newly defined header fields and
in header fields inherited from [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>]. They are, however,
still disallowed for performance and/or compatibility reasons in
the Control, Distribution, Followup-To, Lines, Message-ID,
Newsgroups, Path, Supersedes, and Xref header fields.
o Multiple addresses are allowed in the From header field.
o [FWS] is permitted in Newsgroups header fields.
o An enhanced syntax for the Path header field enables the injection
point of, and the route taken by, an article to be determined with
more precision.
o Only one (1) message identifier is allowed in the Supersedes
header field.
o MIME is recognized as an integral part of Netnews.
o There is a new Injection-Date header field to make the rejection
of stale articles more precise and to minimize spurious
rejections.
o There are several new optional header fields defined, notably
Archive, Injection-Info, and User-Agent, leading to increased
functionality.
o Certain header fields, notably Lines, have been deprecated or made
obsolete (<a href="#section-3.3">Section 3.3</a>).
o The convention to interpret subjects starting with the word "cmsg"
as a control message was removed.
<span class="grey">Murchison, et al. Standards Track [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
o There are numerous other small changes, clarifications, and
enhancements.
<span class="h2"><a class="selflink" id="appendix-C" href="#appendix-C">Appendix C</a>. Differences from <a href="./rfc5322">RFC 5322</a></span>
This appendix lists the differences between the syntax allowed by the
Netnews article format (this document) as compared to the Internet
Message Format, as specified in [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>].
The Netnews article format is a strict subset of the Internet Message
Format; all Netnews articles conform to the syntax of [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>].
The following restrictions are important:
o A SP (space) is REQUIRED after the colon (':') following a header
field name.
o A slightly restricted syntax of <msg-id> (to be used by the
Message-ID, References, and Supersedes header fields) is defined.
o The length of a <msg-id> MUST NOT exceed 250 octets.
o Comments are not allowed in the Message-ID header field.
o The CFWS between <msg-id>s in the References header field is not
optional.
o It is legal for a parser to reject obsolete syntax, except that:
* The <obs-phrase> construct MUST be accepted.
* The obsolete <zone> "GMT" MUST be accepted within a
<date-time>.
o Every line of a header field body (including the first and any
that are subsequently folded) MUST contain at least one non-
whitespace character. This means that an empty header field body
is illegal.
<span class="grey">Murchison, et al. Standards Track [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc5536">RFC 5536</a> Netnews Article Format November 2009</span>
Authors' Addresses
Kenneth Murchison (editor)
Carnegie Mellon University
5000 Forbes Avenue
Cyert Hall 285
Pittsburgh, PA 15213
U.S.A.
Phone: +1 412 268 2638
EMail: murch@andrew.cmu.edu
Charles H. Lindsey
University of Manchester
5 Clerewood Avenue
Heald Green
Cheadle
Cheshire SK8 3JU
U.K.
Phone: +44 161 436 6131
EMail: chl@clerew.man.ac.uk
Dan Kohn
Healing Thresholds
211 N End Ave Apt 22E
New York, NY 10282
U.S.A.
Phone: +1 415 233 1000
EMail: dan@dankohn.com
Murchison, et al. Standards Track [Page 36]
</pre>
|