home *** CD-ROM | disk | FTP | other *** search
/ ftp.uv.es / 2014.11.ftp.uv.es.tar / ftp.uv.es / pub / unix / pine4.10.tar.gz / pine4.10.tar / pine4.10 / imap / docs / rfc / rfc2234.txt < prev    next >
Text File  |  1997-11-18  |  24KB  |  788 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                     D. Crocker, Ed.
  8. Request for Comments: 2234                       Internet Mail Consortium
  9. Category: Standards Track                                      P. Overell
  10.                                                       Demon Internet Ltd.
  11.                                                             November 1997
  12.  
  13.  
  14.              Augmented BNF for Syntax Specifications: ABNF
  15.  
  16.  
  17. Status of this Memo
  18.  
  19.    This document specifies an Internet standards track protocol for the
  20.    Internet community, and requests discussion and suggestions for
  21.    improvements.  Please refer to the current edition of the "Internet
  22.    Official Protocol Standards" (STD 1) for the standardization state
  23.    and status of this protocol.  Distribution of this memo is unlimited.
  24.  
  25. Copyright Notice
  26.  
  27.    Copyright (C) The Internet Society (1997).  All Rights Reserved.
  28.  
  29. TABLE OF CONTENTS
  30.  
  31.    1. INTRODUCTION ..................................................  2
  32.  
  33.    2. RULE DEFINITION ...............................................  2
  34.    2.1 RULE NAMING ..................................................  2
  35.    2.2 RULE FORM ....................................................  3
  36.    2.3 TERMINAL VALUES ..............................................  3
  37.    2.4 EXTERNAL ENCODINGS ...........................................  5
  38.  
  39.    3. OPERATORS .....................................................  5
  40.    3.1 CONCATENATION    RULE1     RULE2 .............................  5
  41.    3.2 ALTERNATIVES RULE1 / RULE2 ...................................  6
  42.    3.3 INCREMENTAL ALTERNATIVES   RULE1 =/ RULE2 ....................  6
  43.    3.4 VALUE RANGE ALTERNATIVES   %C##-## ...........................  7
  44.    3.5 SEQUENCE GROUP (RULE1 RULE2) .................................  7
  45.    3.6 VARIABLE REPETITION *RULE ....................................  8
  46.    3.7 SPECIFIC REPETITION NRULE ....................................  8
  47.    3.8 OPTIONAL SEQUENCE [RULE] .....................................  8
  48.    3.9 ; COMMENT ....................................................  8
  49.    3.10 OPERATOR PRECEDENCE .........................................  9
  50.  
  51.    4. ABNF DEFINITION OF ABNF .......................................  9
  52.  
  53.    5. SECURITY CONSIDERATIONS ....................................... 10
  54.  
  55.  
  56.  
  57.  
  58. Crocker & Overell           Standards Track                     [Page 1]
  59.  
  60. RFC 2234             ABNF for Syntax Specifications        November 1997
  61.  
  62.  
  63.    6. APPENDIX A - CORE ............................................. 11
  64.    6.1 CORE RULES ................................................... 11
  65.    6.2 COMMON ENCODING .............................................. 12
  66.  
  67.    7. ACKNOWLEDGMENTS ............................................... 12
  68.  
  69.    8. REFERENCES .................................................... 13
  70.  
  71.    9. CONTACT ....................................................... 13
  72.  
  73.    10. FULL COPYRIGHT STATEMENT ..................................... 14
  74.  
  75. 1.   INTRODUCTION
  76.  
  77.    Internet technical specifications often need to define a format
  78.    syntax and are free to employ whatever notation their authors deem
  79.    useful.  Over the years, a modified version of Backus-Naur Form
  80.    (BNF), called Augmented BNF (ABNF), has been popular among many
  81.    Internet specifications.  It balances compactness and simplicity,
  82.    with reasonable representational power.  In the early days of the
  83.    Arpanet, each specification contained its own definition of ABNF.
  84.    This included the email specifications, RFC733 and then RFC822 which
  85.    have come to be the common citations for defining ABNF.  The current
  86.    document separates out that definition, to permit selective
  87.    reference.  Predictably, it also provides some modifications and
  88.    enhancements.
  89.  
  90.    The differences between standard BNF and ABNF involve naming rules,
  91.    repetition, alternatives, order-independence, and value ranges.
  92.    Appendix A (Core) supplies rule definitions and encoding for a core
  93.    lexical analyzer of the type common to several Internet
  94.    specifications.  It is provided as a convenience and is otherwise
  95.    separate from the meta language defined in the body of this document,
  96.    and separate from its formal status.
  97.  
  98. 2.   RULE DEFINITION
  99.  
  100. 2.1  Rule Naming
  101.  
  102.    The name of a rule is simply the name itself; that is, a sequence of
  103.    characters, beginning with  an alphabetic character, and followed by
  104.    a combination of alphabetics, digits and hyphens (dashes).
  105.  
  106.         NOTE:     Rule names are case-insensitive
  107.  
  108.    The names <rulename>, <Rulename>, <RULENAME> and <rUlENamE> all refer
  109.    to the same rule.
  110.  
  111.  
  112.  
  113.  
  114. Crocker & Overell           Standards Track                     [Page 2]
  115.  
  116. RFC 2234             ABNF for Syntax Specifications        November 1997
  117.  
  118.  
  119.    Unlike original BNF, angle brackets ("<", ">") are not  required.
  120.    However, angle brackets may be used around a rule name whenever their
  121.    presence will facilitate discerning the use of  a rule name.  This is
  122.    typically restricted to rule name references in free-form prose, or
  123.    to distinguish partial rules that combine into a string not separated
  124.    by white space, such as shown in the discussion about repetition,
  125.    below.
  126.  
  127. 2.2  Rule Form
  128.  
  129.    A rule is defined by the following sequence:
  130.  
  131.         name =  elements crlf
  132.  
  133.    where <name> is the name of the rule, <elements> is one or more rule
  134.    names or terminal specifications and <crlf> is the end-of- line
  135.    indicator, carriage return followed by line feed.  The equal sign
  136.    separates the name from the definition of the rule.  The elements
  137.    form a sequence of one or more rule names and/or value definitions,
  138.    combined according to the various operators, defined in this
  139.    document, such as alternative and repetition.
  140.  
  141.    For visual ease, rule definitions are left aligned.  When a rule
  142.    requires multiple lines, the continuation lines are indented.  The
  143.    left alignment and indentation are relative to the first lines of the
  144.    ABNF rules and need not match the left margin of the document.
  145.  
  146. 2.3  Terminal Values
  147.  
  148.    Rules resolve into a string of terminal values, sometimes called
  149.    characters.  In ABNF a character is merely a non-negative integer.
  150.    In certain contexts a specific mapping (encoding) of values into a
  151.    character set (such as ASCII) will be specified.
  152.  
  153.    Terminals are specified by one or more numeric characters with the
  154.    base interpretation of those characters indicated explicitly.  The
  155.    following bases are currently defined:
  156.  
  157.         b           =  binary
  158.  
  159.         d           =  decimal
  160.  
  161.         x           =  hexadecimal
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170. Crocker & Overell           Standards Track                     [Page 3]
  171.  
  172. RFC 2234             ABNF for Syntax Specifications        November 1997
  173.  
  174.  
  175.    Hence:
  176.  
  177.         CR          =  %d13
  178.  
  179.         CR          =  %x0D
  180.  
  181.    respectively specify the decimal and hexadecimal representation of
  182.    [US-ASCII] for carriage return.
  183.  
  184.    A concatenated string of such values is specified compactly, using a
  185.    period (".") to indicate separation of characters within that value.
  186.    Hence:
  187.  
  188.         CRLF        =  %d13.10
  189.  
  190.    ABNF permits specifying literal text string directly, enclosed in
  191.    quotation-marks.  Hence:
  192.  
  193.         command     =  "command string"
  194.  
  195.    Literal text strings are interpreted as a concatenated set of
  196.    printable characters.
  197.  
  198.         NOTE:     ABNF strings are case-insensitive and
  199.                   the character set for these strings is us-ascii.
  200.  
  201.    Hence:
  202.  
  203.         rulename = "abc"
  204.  
  205.    and:
  206.  
  207.         rulename = "aBc"
  208.  
  209.    will match "abc", "Abc", "aBc", "abC", "ABc", "aBC", "AbC" and "ABC".
  210.  
  211.                 To specify a rule which IS case SENSITIVE,
  212.                    specify the characters individually.
  213.  
  214.    For example:
  215.  
  216.         rulename    =  %d97 %d98 %d99
  217.  
  218.    or
  219.  
  220.         rulename    =  %d97.98.99
  221.  
  222.  
  223.  
  224.  
  225.  
  226. Crocker & Overell           Standards Track                     [Page 4]
  227.  
  228. RFC 2234             ABNF for Syntax Specifications        November 1997
  229.  
  230.  
  231.    will match only the string which comprises only lowercased
  232.    characters, abc.
  233.  
  234. 2.4  External Encodings
  235.  
  236.    External representations of terminal value characters will vary
  237.    according to constraints in the storage or transmission environment.
  238.    Hence, the same ABNF-based grammar may have multiple external
  239.    encodings, such as one for a 7-bit US-ASCII environment, another for
  240.    a binary octet environment and still a different one when 16-bit
  241.    Unicode is used.  Encoding details are beyond the scope of ABNF,
  242.    although Appendix A (Core) provides definitions for a 7-bit US-ASCII
  243.    environment as has been common to much of the Internet.
  244.  
  245.    By separating external encoding from the syntax, it is intended that
  246.    alternate encoding environments can be used for the same syntax.
  247.  
  248. 3.   OPERATORS
  249.  
  250. 3.1  Concatenation                                  Rule1 Rule2
  251.  
  252.    A rule can define a simple, ordered string of values -- i.e., a
  253.    concatenation of contiguous characters -- by listing a sequence of
  254.    rule names.  For example:
  255.  
  256.         foo         =  %x61           ; a
  257.  
  258.         bar         =  %x62           ; b
  259.  
  260.         mumble      =  foo bar foo
  261.  
  262.         So that the rule <mumble> matches the lowercase string "aba".
  263.  
  264.         LINEAR WHITE SPACE:  Concatenation is at the core of the ABNF
  265.         parsing model.  A string of contiguous characters (values) is
  266.         parsed according to the rules defined in ABNF.  For Internet
  267.         specifications, there is some history of permitting linear white
  268.         space (space and horizontal tab) to be freelyPand
  269.         implicitlyPinterspersed around major constructs, such as
  270.         delimiting special characters or atomic strings.
  271.  
  272.         NOTE:     This specification for ABNF does not
  273.                   provide for implicit specification of linear white
  274.                   space.
  275.  
  276.    Any grammar which wishes to permit linear white space around
  277.    delimiters or string segments must specify it explicitly.  It is
  278.    often useful to provide for such white space in "core" rules that are
  279.  
  280.  
  281.  
  282. Crocker & Overell           Standards Track                     [Page 5]
  283.  
  284. RFC 2234             ABNF for Syntax Specifications        November 1997
  285.  
  286.  
  287.    then used variously among higher-level rules.  The "core" rules might
  288.    be formed into a lexical analyzer or simply be part of the main
  289.    ruleset.
  290.  
  291. 3.2  Alternatives                               Rule1 / Rule2
  292.  
  293.    Elements separated by forward slash ("/") are alternatives.
  294.    Therefore,
  295.  
  296.         foo / bar
  297.  
  298.    will accept <foo> or <bar>.
  299.  
  300.         NOTE:     A quoted string containing alphabetic
  301.                   characters is special form for specifying alternative
  302.                   characters and is interpreted as a non-terminal
  303.                   representing the set of combinatorial strings with the
  304.                   contained characters, in the specified order but with
  305.                   any mixture of upper and lower case..
  306.  
  307. 3.3  Incremental Alternatives                    Rule1 =/ Rule2
  308.  
  309.    It is sometimes convenient to specify a list of alternatives in
  310.    fragments.  That is, an initial rule may match one or more
  311.    alternatives, with later rule definitions adding to the set of
  312.    alternatives.  This is particularly useful for otherwise- independent
  313.    specifications which derive from the same parent rule set, such as
  314.    often occurs with parameter lists.  ABNF permits this incremental
  315.    definition through the construct:
  316.  
  317.         oldrule     =/ additional-alternatives
  318.  
  319.    So that the rule set
  320.  
  321.         ruleset     =  alt1 / alt2
  322.  
  323.         ruleset     =/ alt3
  324.  
  325.         ruleset     =/ alt4 / alt5
  326.  
  327.    is the same as specifying
  328.  
  329.         ruleset     =  alt1 / alt2 / alt3 / alt4 / alt5
  330.  
  331.  
  332.  
  333.  
  334.  
  335.  
  336.  
  337.  
  338. Crocker & Overell           Standards Track                     [Page 6]
  339.  
  340. RFC 2234             ABNF for Syntax Specifications        November 1997
  341.  
  342.  
  343. 3.4  Value Range Alternatives                           %c##-##
  344.  
  345.    A range of alternative numeric values can be specified compactly,
  346.    using dash ("-") to indicate the range of alternative values.  Hence:
  347.  
  348.         DIGIT       =  %x30-39
  349.  
  350.    is equivalent to:
  351.  
  352.         DIGIT       =  "0" / "1" / "2" / "3" / "4" / "5" / "6" /
  353.  
  354.                            "7" / "8" / "9"
  355.  
  356.    Concatenated numeric values and numeric value ranges can not be
  357.    specified in the same string.  A numeric value may use the dotted
  358.    notation for concatenation or it may use the dash notation to specify
  359.    one value range.  Hence, to specify one printable character, between
  360.    end of line sequences, the specification could be:
  361.  
  362.         char-line = %x0D.0A %x20-7E %x0D.0A
  363.  
  364. 3.5  Sequence Group                             (Rule1 Rule2)
  365.  
  366.    Elements enclosed in parentheses are treated as a single element,
  367.    whose contents are STRICTLY ORDERED.   Thus,
  368.  
  369.         elem (foo / bar) blat
  370.  
  371.    which matches (elem foo blat) or (elem bar blat).
  372.  
  373.         elem foo / bar blat
  374.  
  375.    matches (elem foo) or (bar blat).
  376.  
  377.         NOTE:     It is strongly advised to use grouping
  378.                   notation, rather than to rely on proper reading of
  379.                   "bare" alternations, when alternatives consist of
  380.                   multiple rule names or literals.
  381.  
  382.    Hence it is recommended that instead of the above form, the form:
  383.  
  384.         (elem foo) / (bar blat)
  385.  
  386.    be used.  It will avoid misinterpretation by casual readers.
  387.  
  388.    The sequence group notation is also used within free text to set off
  389.    an element sequence from the prose.
  390.  
  391.  
  392.  
  393.  
  394. Crocker & Overell           Standards Track                     [Page 7]
  395.  
  396. RFC 2234             ABNF for Syntax Specifications        November 1997
  397.  
  398.  
  399. 3.6  Variable Repetition                                *Rule
  400.  
  401.    The operator "*" preceding an element indicates repetition. The full
  402.    form is:
  403.  
  404.         <a>*<b>element
  405.  
  406.    where <a> and <b> are optional decimal values, indicating at least
  407.    <a> and at most <b> occurrences of element.
  408.  
  409.    Default values are 0 and infinity so that *<element> allows any
  410.    number, including zero; 1*<element> requires at  least  one;
  411.    3*3<element> allows exactly 3 and 1*2<element> allows one or two.
  412.  
  413. 3.7  Specific Repetition                                  nRule
  414.  
  415.    A rule of the form:
  416.  
  417.         <n>element
  418.  
  419.    is equivalent to
  420.  
  421.         <n>*<n>element
  422.  
  423.    That is, exactly  <N>  occurrences  of <element>. Thus 2DIGIT is a
  424.    2-digit number, and 3ALPHA is a string of three alphabetic
  425.    characters.
  426.  
  427. 3.8  Optional Sequence                                   [RULE]
  428.  
  429.    Square brackets enclose an optional element sequence:
  430.  
  431.         [foo bar]
  432.  
  433.    is equivalent to
  434.  
  435.         *1(foo bar).
  436.  
  437. 3.9  ; Comment
  438.  
  439.    A semi-colon starts a comment that continues to the end of line.
  440.    This is a simple way of including useful notes in parallel with the
  441.    specifications.
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450. Crocker & Overell           Standards Track                     [Page 8]
  451.  
  452. RFC 2234             ABNF for Syntax Specifications        November 1997
  453.  
  454.  
  455. 3.10 Operator Precedence
  456.  
  457.    The various mechanisms described above have the following precedence,
  458.    from highest (binding tightest) at the top, to lowest and loosest at
  459.    the bottom:
  460.  
  461.         Strings, Names formation
  462.         Comment
  463.         Value range
  464.         Repetition
  465.         Grouping, Optional
  466.         Concatenation
  467.         Alternative
  468.  
  469.    Use of the alternative operator, freely mixed with concatenations can
  470.    be confusing.
  471.  
  472.         Again, it is recommended that the grouping operator be used to
  473.         make explicit concatenation groups.
  474.  
  475. 4.   ABNF DEFINITION OF ABNF
  476.  
  477.    This syntax uses the rules provided in Appendix A (Core).
  478.  
  479.         rulelist       =  1*( rule / (*c-wsp c-nl) )
  480.  
  481.         rule           =  rulename defined-as elements c-nl
  482.                                ; continues if next line starts
  483.                                ;  with white space
  484.  
  485.         rulename       =  ALPHA *(ALPHA / DIGIT / "-")
  486.  
  487.         defined-as     =  *c-wsp ("=" / "=/") *c-wsp
  488.                                ; basic rules definition and
  489.                                ;  incremental alternatives
  490.  
  491.         elements       =  alternation *c-wsp
  492.  
  493.         c-wsp          =  WSP / (c-nl WSP)
  494.  
  495.         c-nl           =  comment / CRLF
  496.                                ; comment or newline
  497.  
  498.         comment        =  ";" *(WSP / VCHAR) CRLF
  499.  
  500.         alternation    =  concatenation
  501.                           *(*c-wsp "/" *c-wsp concatenation)
  502.  
  503.  
  504.  
  505.  
  506. Crocker & Overell           Standards Track                     [Page 9]
  507.  
  508. RFC 2234             ABNF for Syntax Specifications        November 1997
  509.  
  510.  
  511.         concatenation  =  repetition *(1*c-wsp repetition)
  512.  
  513.         repetition     =  [repeat] element
  514.  
  515.         repeat         =  1*DIGIT / (*DIGIT "*" *DIGIT)
  516.  
  517.         element        =  rulename / group / option /
  518.                           char-val / num-val / prose-val
  519.  
  520.         group          =  "(" *c-wsp alternation *c-wsp ")"
  521.  
  522.         option         =  "[" *c-wsp alternation *c-wsp "]"
  523.  
  524.         char-val       =  DQUOTE *(%x20-21 / %x23-7E) DQUOTE
  525.                                ; quoted string of SP and VCHAR
  526.                                   without DQUOTE
  527.  
  528.         num-val        =  "%" (bin-val / dec-val / hex-val)
  529.  
  530.         bin-val        =  "b" 1*BIT
  531.                           [ 1*("." 1*BIT) / ("-" 1*BIT) ]
  532.                                ; series of concatenated bit values
  533.                                ; or single ONEOF range
  534.  
  535.         dec-val        =  "d" 1*DIGIT
  536.                           [ 1*("." 1*DIGIT) / ("-" 1*DIGIT) ]
  537.  
  538.         hex-val        =  "x" 1*HEXDIG
  539.                           [ 1*("." 1*HEXDIG) / ("-" 1*HEXDIG) ]
  540.  
  541.         prose-val      =  "<" *(%x20-3D / %x3F-7E) ">"
  542.                                ; bracketed string of SP and VCHAR
  543.                                   without angles
  544.                                ; prose description, to be used as
  545.                                   last resort
  546.  
  547.  
  548. 5.   SECURITY CONSIDERATIONS
  549.  
  550.    Security is truly believed to be irrelevant to this document.
  551.  
  552.  
  553.  
  554.  
  555.  
  556.  
  557.  
  558.  
  559.  
  560.  
  561.  
  562. Crocker & Overell           Standards Track                    [Page 10]
  563.  
  564. RFC 2234             ABNF for Syntax Specifications        November 1997
  565.  
  566.  
  567. 6.   APPENDIX A - CORE
  568.  
  569.    This Appendix is provided as a convenient core for specific grammars.
  570.    The definitions may be used as a core set of rules.
  571.  
  572. 6.1  Core Rules
  573.  
  574.    Certain  basic  rules  are  in uppercase, such as SP, HTAB, CRLF,
  575.    DIGIT, ALPHA, etc.
  576.  
  577.         ALPHA          =  %x41-5A / %x61-7A   ; A-Z / a-z
  578.  
  579.         BIT            =  "0" / "1"
  580.  
  581.         CHAR           =  %x01-7F
  582.                                ; any 7-bit US-ASCII character,
  583.                                   excluding NUL
  584.  
  585.         CR             =  %x0D
  586.                                ; carriage return
  587.  
  588.         CRLF           =  CR LF
  589.                                ; Internet standard newline
  590.  
  591.         CTL            =  %x00-1F / %x7F
  592.                                ; controls
  593.  
  594.         DIGIT          =  %x30-39
  595.                                ; 0-9
  596.  
  597.         DQUOTE         =  %x22
  598.                                ; " (Double Quote)
  599.  
  600.         HEXDIG         =  DIGIT / "A" / "B" / "C" / "D" / "E" / "F"
  601.  
  602.         HTAB           =  %x09
  603.                                ; horizontal tab
  604.  
  605.         LF             =  %x0A
  606.                                ; linefeed
  607.  
  608.         LWSP           =  *(WSP / CRLF WSP)
  609.                                ; linear white space (past newline)
  610.  
  611.         OCTET          =  %x00-FF
  612.                                ; 8 bits of data
  613.  
  614.         SP             =  %x20
  615.  
  616.  
  617.  
  618. Crocker & Overell           Standards Track                    [Page 11]
  619.  
  620. RFC 2234             ABNF for Syntax Specifications        November 1997
  621.  
  622.  
  623.                                ; space
  624.  
  625.         VCHAR          =  %x21-7E
  626.                                ; visible (printing) characters
  627.  
  628.         WSP            =  SP / HTAB
  629.                                ; white space
  630.  
  631. 6.2  Common Encoding
  632.  
  633.    Externally, data are represented as "network virtual ASCII", namely
  634.    7-bit US-ASCII in an 8-bit field, with the high (8th) bit set to
  635.    zero.  A string of values is in "network byte order" with the
  636.    higher-valued bytes represented on the left-hand side and being sent
  637.    over the network first.
  638.  
  639. 7.   ACKNOWLEDGMENTS
  640.  
  641.    The syntax for ABNF was originally specified in RFC 733.  Ken L.
  642.    Harrenstien, of SRI International, was responsible for re-coding the
  643.    BNF into an augmented BNF that makes the representation smaller and
  644.    easier to understand.
  645.  
  646.    This recent project began as a simple effort to cull out the portion
  647.    of RFC 822 which has been repeatedly cited by non-email specification
  648.    writers, namely the description of augmented BNF.  Rather than simply
  649.    and blindly converting the existing text into a separate document,
  650.    the working group chose to give careful consideration to the
  651.    deficiencies, as well as benefits, of the existing specification and
  652.    related specifications available over the last 15 years and therefore
  653.    to pursue enhancement.  This turned the project into something rather
  654.    more ambitious than first intended.  Interestingly the result is not
  655.    massively different from that original, although decisions such as
  656.    removing the list notation came as a surprise.
  657.  
  658.    The current round of specification was part of the DRUMS working
  659.    group, with significant contributions from Jerome Abela , Harald
  660.    Alvestrand, Robert Elz, Roger Fajman, Aviva Garrett, Tom Harsch, Dan
  661.    Kohn, Bill McQuillan, Keith Moore, Chris Newman , Pete Resnick and
  662.    Henning Schulzrinne.
  663.  
  664.  
  665.  
  666.  
  667.  
  668.  
  669.  
  670.  
  671.  
  672.  
  673.  
  674. Crocker & Overell           Standards Track                    [Page 12]
  675.  
  676. RFC 2234             ABNF for Syntax Specifications        November 1997
  677.  
  678.  
  679. 8.   REFERENCES
  680.  
  681.    [US-ASCII]     Coded Character Set--7-Bit American Standard Code for
  682.    Information Interchange, ANSI X3.4-1986.
  683.  
  684.    [RFC733]  Crocker, D., Vittal, J., Pogran, K., and D. Henderson,
  685.    "Standard for the Format of ARPA Network Text Message," RFC 733,
  686.    November 1977.
  687.  
  688.    [RFC822]  Crocker, D., "Standard for the Format of ARPA Internet Text
  689.    Messages", STD 11, RFC 822, August 1982.
  690.  
  691. 9.   CONTACT
  692.  
  693.    David H. Crocker                 Paul Overell
  694.  
  695.    Internet Mail Consortium         Demon Internet Ltd
  696.    675 Spruce Dr.                   Dorking Business Park
  697.    Sunnyvale, CA 94086 USA          Dorking
  698.                                     Surrey, RH4 1HN
  699.                                     UK
  700.  
  701.    Phone:    +1 408 246 8253
  702.    Fax:      +1 408 249 6205
  703.    EMail:    dcrocker@imc.org       paulo@turnpike.com
  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. Crocker & Overell           Standards Track                    [Page 13]
  731.  
  732. RFC 2234             ABNF for Syntax Specifications        November 1997
  733.  
  734.  
  735. 10.  Full Copyright Statement
  736.  
  737.    Copyright (C) The Internet Society (1997).  All Rights Reserved.
  738.  
  739.    This document and translations of it may be copied and furnished to
  740.    others, and derivative works that comment on or otherwise explain it
  741.    or assist in its implementation may be prepared, copied, published
  742.    and distributed, in whole or in part, without restriction of any
  743.    kind, provided that the above copyright notice and this paragraph are
  744.    included on all such copies and derivative works.  However, this
  745.    document itself may not be modified in any way, such as by removing
  746.    the copyright notice or references to the Internet Society or other
  747.    Internet organizations, except as needed for the purpose of
  748.    developing Internet standards in which case the procedures for
  749.    copyrights defined in the Internet Standards process must be
  750.    followed, or as required to translate it into languages other than
  751.    English.
  752.  
  753.    The limited permissions granted above are perpetual and will not be
  754.    revoked by the Internet Society or its successors or assigns.
  755.  
  756.    This document and the information contained herein is provided on an
  757.    "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
  758.    TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
  759.    BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
  760.    HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
  761.    MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  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. Crocker & Overell           Standards Track                    [Page 14]
  787.  
  788.