<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type='text/xsl' href='rfc2629.xslt' ?>
<?rfc symrefs="yes"?>
<?rfc sortrefs="no"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<?rfc-ext allow-markup-in-artwork="yes"?>
<?rfc-ext html-pretty-print="prettyprint https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"?>

<rfc number="2231" category="std" updates="2045, 2047, 2183" obsoletes="2184" xmlns:x="http://purl.org/net/xml2rfc/ext" xmlns:grddl='http://www.w3.org/2003/g/data-view#' grddl:transformation='rfc2629grddl.xslt'>
  <front>
    <title abbrev='MIME Value and Encoded Word Extensions'>MIME Parameter Value and Encoded Word Extensions: Character&#160;Sets,&#160;Languages,&#160;and&#160;Continuations</title>
    <author initials='N.' surname='Freed' fullname='Ned Freed'>
      <organization abbrev="Innosoft">Innosoft International, Inc.</organization>
      <address>
        <postal>
          <street>1050 Lakes Drive</street>
          <street>West Covina</street>
          <street>CA 91790</street>
          <country>USA</country>
        </postal>
        <phone>+1 626 919 3600</phone>
        <facsimile>+1 626 919 3614</facsimile>
        <email>ned.freed@innosoft.com</email></address>
    </author>
    <author initials='K.' surname='Moore' fullname='Keith Moore'>
      <organization>University of Tennessee</organization>
      <address>
      <postal>
        <street>Computer Science Dept.</street>
        <street>107 Ayres Hall</street>
        <street>Knoxville</street>
        <street>TN 37996-1301</street>
        <country>USA</country>
      </postal>
      <email>moore@cs.utk.edu</email></address>
    </author>
    <date year='1997' month='November' />
    <area>Applications</area>
    <keyword>MIME</keyword>
    <keyword>character encoding</keyword>
    <keyword>media type</keyword>
    <keyword>multipurpose internet mail extensions</keyword>
  </front>

  <middle>

<section title="Abstract">
<t>
   This memo defines extensions to the <xref x:fmt="none" target="RFC-2045">RFC 2045</xref> media type and <xref x:fmt="none" target="RFC-2183">RFC 2183</xref>
   disposition parameter value mechanisms to provide
  <list style="numbers">
    <t>a means to specify parameter values in character sets
          other than US-ASCII,</t>

    <t>to specify the language to be used should the value be
          displayed, and</t>

    <t>a continuation mechanism for long parameter values to
          avoid problems with header line wrapping.</t>
  </list>
</t>
<t>
   This memo also defines an extension to the encoded words defined in
   <xref x:fmt="none" target="RFC-2047">RFC 2047</xref> to allow the specification of the language to be used for
   display as well as the character set.
</t>
</section>
  
<section title="Introduction">
<t>
   The Multipurpose Internet Mail Extensions, or MIME [<xref x:fmt="none" target="RFC-2045">RFC-2045</xref>, <xref x:fmt="none" target="RFC-2046">RFC-2046</xref>,
   <xref x:fmt="none" target="RFC-2047">RFC-2047</xref>, <xref x:fmt="none" target="RFC-2048">RFC-2048</xref>, <xref x:fmt="none" target="RFC-2049">RFC-2049</xref>], define a message format that
   allows for:
  <list style="numbers">
    <t>textual message bodies in character sets other than
          US-ASCII,</t>
    <t>non-textual message bodies,</t>
    <t>multi-part message bodies, and</t>
    <t>textual header information in character sets other than
          US-ASCII.</t>
  </list>
</t>
<t>
   MIME is now widely deployed and is used by a variety of Internet
   protocols, including, of course, Internet email.  However, MIME's
   success has resulted in the need for additional mechanisms that were
   not provided in the original protocol specification.
</t>
<t>
   In particular, existing MIME mechanisms provide for named media type
   (content-type field) parameters as well as named disposition
   (content-disposition field).  A MIME media type may specify any
   number of parameters associated with all of its subtypes, and any
   specific subtype may specify additional parameters for its own use. A
   MIME disposition value may specify any number of associated
   parameters, the most important of which is probably the attachment
   disposition's filename parameter.
</t>
<t>
   These parameter names and values end up appearing in the content-type
   and content-disposition header fields in Internet email.  This
   inherently imposes three crucial limitations:
  <list style="numbers">
    <t>Lines in Internet email header fields are folded
          according to <xref x:fmt="none" target="RFC-822">RFC 822</xref> folding rules.  This makes long
          parameter values problematic.</t>
    <t>MIME headers, like the <xref x:fmt="none" target="RFC-822">RFC 822</xref> headers they often
          appear in, are limited to 7bit US-ASCII, and the
          encoded-word mechanisms of <xref x:fmt="none" target="RFC-2047">RFC 2047</xref> are not available
          to parameter values.  This makes it impossible to have
          parameter values in character sets other than US-ASCII
          without specifying some sort of private per-parameter
          encoding.</t>
    <t>It has recently become clear that character set
          information is not sufficient to properly display some
          sorts of information -- language information is also
          needed <xref target="RFC-2130"/>.  For example, support for
          handicapped users may require reading text string
          aloud. The language the text is written in is needed
          for this to be done correctly.  Some parameter values
          may need to be displayed, hence there is a need to
          allow for the inclusion of language information.</t>
  </list>
</t>
<t>
   The last problem on this list is also an issue for the encoded words
   defined by <xref x:fmt="none" target="RFC-2047">RFC 2047</xref>, as encoded words are intended primarily for
   display purposes.
</t>
<t>
   This document defines extensions that address all of these
   limitations. All of these extensions are implemented in a fashion
   that is completely compatible at a syntactic level with existing MIME
   implementations. In addition, the extensions are designed to have as
   little impact as possible on existing uses of MIME.
</t>
<t>
   IMPORTANT NOTE:  These mechanisms end up being somewhat gibbous when
   they actually are used. As such, these mechanisms should not be used
   lightly; they should be reserved for situations where a real need for
   them exists.
</t>

<section title="Requirements notation">
<t>
   This document occasionally uses terms that appear in capital letters.
   When the terms "MUST", "SHOULD", "MUST NOT", "SHOULD NOT", and "MAY"
   appear capitalized, they are being used to indicate particular
   requirements of this specification. A discussion of the meanings of
   these terms appears in <xref target="RFC-2119"/>.
</t>
</section>
</section>
  
<section title="Parameter Value Continuations">
<t>
   Long MIME media type or disposition parameter values do not interact
   well with header line wrapping conventions.  In particular, proper
   header line wrapping depends on there being places where linear
   whitespace (LWSP) is allowed, which may or may not be present in a
   parameter value, and even if present may not be recognizable as such
   since specific knowledge of parameter value syntax may not be
   available to the agent doing the line wrapping. The result is that
   long parameter values may end up getting truncated or otherwise
   damaged by incorrect line wrapping implementations.
</t>
<t>
   A mechanism is therefore needed to break up parameter values into
   smaller units that are amenable to line wrapping. Any such mechanism
   MUST be compatible with existing MIME processors. This means that
  <list style="numbers">
    <t>the mechanism MUST NOT change the syntax of MIME media
          type and disposition lines, and</t>
    <t>the mechanism MUST NOT depend on parameter ordering
          since MIME states that parameters are not order
          sensitive.  Note that while MIME does prohibit
          modification of MIME headers during transport, it is
          still possible that parameters will be reordered when
          user agent level processing is done.</t>
  </list>
</t>
<t>
   The obvious solution, then, is to use multiple parameters to contain
   a single parameter value and to use some kind of distinguished name
   to indicate when this is being done.  And this obvious solution is
   exactly what is specified here: The asterisk character ("*") followed
   by a decimal count is employed to indicate that multiple parameters
   are being used to encapsulate a single parameter value.  The count
   starts at 0 and increments by 1 for each subsequent section of the
   parameter value.  Decimal values are used and neither leading zeroes
   nor gaps in the sequence are allowed.
</t>
<t>
   The original parameter value is recovered by concatenating the
   various sections of the parameter, in order.  For example, the
   content-type field
</t>
<figure><artwork type="example">
      Content-Type: message/external-body; access-type=URL;
       URL*0="ftp://";
       URL*1="cs.utk.edu/pub/moore/bulk-mailer/bulk-mailer.tar"
</artwork></figure>
<t>
   is semantically identical to
</t>
<figure><artwork type="example">
      Content-Type: message/external-body; access-type=URL;
        URL="ftp://cs.utk.edu/pub/moore/bulk-mailer/bulk-mailer.tar"
</artwork></figure>
<t>
   Note that quotes around parameter values are part of the value
   syntax; they are NOT part of the value itself.  Furthermore, it is
   explicitly permitted to have a mixture of quoted and unquoted
   continuation fields.
</t>
</section>
  
<section title="Parameter Value Character Set and Language Information">
<t>
   Some parameter values may need to be qualified with character set or
   language information.  It is clear that a distinguished parameter
   name is needed to identify when this information is present along
   with a specific syntax for the information in the value itself.  In
   addition, a lightweight encoding mechanism is needed to accommodate 8
   bit information in parameter values.
</t>
<t>
   Asterisks ("*") are reused to provide the indicator that language and
   character set information is present and encoding is being used. A
   single quote ("'") is used to delimit the character set and language
   information at the beginning of the parameter value. Percent signs
   ("%") are used as the encoding flag, which agrees with <xref x:fmt="none" target="RFC-2047">RFC 2047</xref>.
</t>
<t>
   Specifically, an asterisk at the end of a parameter name acts as an
   indicator that character set and language information may appear at
   the beginning of the parameter value. A single quote is used to
   separate the character set, language, and actual value information in
   the parameter value string, and an percent sign is used to flag
   octets encoded in hexadecimal.  For example:
</t>
<figure><artwork type="example">
        Content-Type: application/x-stuff;
         title*=us-ascii'en-us'This%20is%20%2A%2A%2Afun%2A%2A%2A
</artwork></figure>
<t>
   Note that it is perfectly permissible to leave either the character
   set or language field blank.  Note also that the single quote
   delimiters MUST be present even when one of the field values is
   omitted.  This is done when either character set, language, or both
   are not relevant to the parameter value at hand.  This MUST NOT be
   done in order to indicate a default character set or language --
   parameter field definitions MUST NOT assign a default character set
   or language.
</t>
<section title="Combining Character Set, Language, and Parameter Continuations">
<t>
   Character set and language information may be combined with the
   parameter continuation mechanism. For example:
</t>
<figure><artwork type="example">
   Content-Type: application/x-stuff
    title*0*=us-ascii'en'This%20is%20even%20more%20
    title*1*=%2A%2A%2Afun%2A%2A%2A%20
    title*2="isn't it!"
</artwork></figure>
<t>
   Note that:
  <list style="numbers">
    <t>Language and character set information only appear at
          the beginning of a given parameter value.</t>
    <t>Continuations do not provide a facility for using more
          than one character set or language in the same
          parameter value.</t>
    <t>A value presented using multiple continuations may
          contain a mixture of encoded and unencoded segments.</t>
    <t>The first segment of a continuation MUST be encoded if
          language and character set information are given.</t>
    <t>If the first segment of a continued parameter value is
          encoded the language and character set field delimiters
          MUST be present even when the fields are left blank.</t>
  </list>
</t>
</section>
</section>

<section title="Language specification in Encoded Words">
<t>
   <xref x:fmt="none" target="RFC-2047">RFC 2047</xref> provides support for non-US-ASCII character sets in <xref x:fmt="none" target="RFC-822">RFC 822</xref>
   message header comments, phrases, and any unstructured text field.
   This is done by defining an encoded word construct which can appear
   in any of these places.  Given that these are fields intended for
   display, it is sometimes necessary to associate language information
   with encoded words as well as just the character set.  This
   specification extends the definition of an encoded word to allow the
   inclusion of such information.  This is simply done by suffixing the
   character set specification with an asterisk followed by the language
   tag.  For example:
</t>
<figure><artwork type="example">
          From: =?US-ASCII*EN?Q?Keith_Moore?= &lt;moore@cs.utk.edu>
</artwork></figure>
</section>  

<section title="IMAP4 Handling of Parameter Values">
<t>
   IMAP4 <xref target="RFC-2060"/> servers SHOULD decode parameter value continuations
   when generating the BODY and BODYSTRUCTURE fetch attributes.
</t>
</section>

<section title="Modifications to MIME ABNF">
<figure><preamble>
   The ABNF for MIME parameter values given in <xref x:fmt="none" target="RFC-2045">RFC 2045</xref> is:
</preamble><artwork type="abnf">
   parameter := attribute "=" value

   attribute := token
                ; Matching of attributes
                ; is ALWAYS case-insensitive.
</artwork></figure>

<figure><preamble>
   This specification changes this ABNF to:
</preamble><artwork type="abnf">
   parameter := regular-parameter / extended-parameter

   regular-parameter := regular-parameter-name "=" value

   regular-parameter-name := attribute [section]

   attribute := 1*attribute-char

   attribute-char := &lt;any (US-ASCII) CHAR except SPACE, CTLs,
                     "*", "'", "%", or tspecials>

   section := initial-section / other-sections

   initial-section := "*0"

   other-sections := "*" ("1" / "2" / "3" / "4" / "5" /
                          "6" / "7" / "8" / "9") *DIGIT)

   extended-parameter := (extended-initial-name "="
                          extended-value) /
                         (extended-other-names "="
                          extended-other-values)

   extended-initial-name := attribute [initial-section] "*"

   extended-other-names := attribute other-sections "*"

   extended-initial-value := [charset] "'" [language] "'"
                             extended-other-values

   extended-other-values := *(ext-octet / attribute-char)

   ext-octet := "%" 2(DIGIT / "A" / "B" / "C" / "D" / "E" / "F")

   charset := &lt;registered character set name>

   language := &lt;registered language tag <xref target="RFC-1766"/>>
</artwork></figure>

<figure><preamble>
   The ABNF given in <xref x:fmt="none" target="RFC-2047">RFC 2047</xref> for encoded-words is:
</preamble><artwork type="abnf">
   encoded-word := "=?" charset "?" encoding "?" encoded-text "?="
</artwork></figure>

<figure><preamble>
   This specification changes this ABNF to:
</preamble><artwork type="abnf">
   encoded-word := "=?" charset ["*" language] "?" encoded-text "?="
</artwork></figure>
</section>

<section title="Character sets which allow specification of language">
<t>
   In the future it is likely that some character sets will provide
   facilities for inline language labeling. Such facilities are
   inherently more flexible than those defined here as they allow for
   language switching in the middle of a string.
   If and when such facilities are developed they SHOULD be used in
   preference to the language labeling facilities specified here. Note
   that all the mechanisms defined here allow for the omission of
   language labels so as to be able to accommodate this possible future
   usage.
</t>
</section>

<section title="Security Considerations">
<t>
   This RFC does not discuss security issues and is not believed to
   raise any security issues not already endemic in electronic mail and
   present in fully conforming implementations of MIME.
</t>
</section>
  </middle>  
  <back>
  
<references>

<reference anchor='RFC-822'>
  <front>
    <title abbrev='Standard for ARPA Internet Text Messages'>Standard for the format of ARPA Internet text messages</title>
    <author initials='D.H.' surname='Crocker' fullname='David H. Crocker'>
      <organization>University of Delaware, Dept. of Electrical Engineering</organization>
      <address>
        <email>DCrocker@UDel-Relay</email>
      </address>
    </author>
    <date month='August' day='13' year='1982' />
  </front>
  <seriesInfo name='STD' value='11' />
  <seriesInfo name='RFC' value='822' />
</reference>

<reference anchor='RFC-1766'>
  <front>
    <title>Tags for the Identification of Languages</title>
    <author initials='H.T.' surname='Alvestrand' fullname='Harald Tveit Alvestrand'>
      <organization>UNINETT</organization>
      <address>
        <email>Harald.T.Alvestrand@uninett.no</email>
      </address>
    </author>
    <date month='March' year='1995'></date>
  </front>
  <seriesInfo name='RFC' value='1766' />
</reference>

<reference anchor='RFC-2045'>
  <front>
    <title abbrev='Internet Message Bodies'>Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies</title>
    <author initials='N.' surname='Freed' fullname='Ned Freed'>
      <organization>Innosoft International, Inc.</organization>
      <address>
      <postal>
      <street>1050 East Garvey Avenue South</street>
      <city>West Covina</city>
      <region>CA</region>
      <code>91790</code>
      <country>US</country></postal>
      <phone>+1 818 919 3600</phone>
      <facsimile>+1 818 919 3614</facsimile>
      <email>ned@innosoft.com</email></address>
    </author>
    <author initials='N.' surname='Borenstein' fullname='Nathaniel S. Borenstein'>
      <organization>First Virtual Holdings</organization>
      <address>
      <postal>
      <street>25 Washington Avenue</street>
      <city>Morristown</city>
      <region>NJ</region>
      <code>07960</code>
      <country>US</country></postal>
      <phone>+1 201 540 8967</phone>
      <facsimile>+1 201 993 3032</facsimile>
      <email>nsb@nsb.fv.com</email></address>
    </author>
    <date month='November' year='1996' />
  </front>
  <seriesInfo name='RFC' value='2045' />
</reference>

<reference anchor='RFC-2046'>
  <front>
    <title abbrev='Media Types'>Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types</title>
      <author initials='N.' surname='Freed' fullname='Ned Freed'>
      <organization>Innosoft International, Inc.</organization>
      <address>
      <postal>
      <street>1050 East Garvey Avenue South</street>
      <city>West Covina</city>
      <region>CA</region>
      <code>91790</code>
      <country>US</country></postal>
      <phone>+1 818 919 3600</phone>
      <facsimile>+1 818 919 3614</facsimile>
      <email>ned@innosoft.com</email></address>
    </author>
    <author initials='N.' surname='Borenstein' fullname='Nathaniel S. Borenstein'>
      <organization>First Virtual Holdings</organization>
      <address>
      <postal>
      <street>25 Washington Avenue</street>
      <city>Morristown</city>
      <region>NJ</region>
      <code>07960</code>
      <country>US</country></postal>
      <phone>+1 201 540 8967</phone>
      <facsimile>+1 201 993 3032</facsimile>
      <email>nsb@nsb.fv.com</email></address>
    </author>
    <date month='November' year='1996' />
  </front>
  <seriesInfo name='RFC' value='2046' />
</reference>

<reference anchor="RFC-2047">
  <front>
  <title abbrev="Message Header Extensions">MIME (Multipurpose Internet Mail Extensions) Part Three: Message Header Extensions for Non-ASCII Text</title>
    <author initials="K." surname="Moore" fullname="Keith Moore">
    <organization>University of Tennessee</organization>
    <address>
    <postal>
    <street>107 Ayres Hall</street>
    <street>Knoxville TN 37996-1301</street></postal>
    <email>moore@cs.utk.edu</email></address>
  </author>
  <date month="November" year="1996"/>
  <area>Applications</area>
  <keyword>Amercian Standard Code for Information Interchange</keyword>
  <keyword>mail</keyword>
  <keyword>multipurpose internet mail extensions</keyword>
  </front>
  <seriesInfo name="RFC" value="2047"/>
</reference>

<reference anchor='RFC-2048'>

<front>
  <title abbrev='MIME Registration Procedures'>Multipurpose Internet Mail Extensions (MIME) Part Four: Registration Procedures</title>
  <author initials='N.' surname='Freed' fullname='Ned Freed'>
  <organization>Innosoft International, Inc.</organization>
  <address>
  <postal>
  <street>1050 East Garvey Avenue South</street>
  <street>West Covina</street>
  <street>CA 91790</street>
  
  <country>USA</country></postal>
  <phone>+1 818 919 3600</phone>
  <facsimile>+1 818 919 3614</facsimile>
  <email>ned@innosoft.com</email></address></author>
  <author initials='J.' surname='Klensin' fullname='John Klensin'>
  <organization>MCI</organization>
  <address>
  <postal>
  <street>2100 Reston Parkway</street>
  <street>Reston</street>
  
  <street>VA 22091</street></postal>
  <phone>+1 703 715-7361</phone>
  <facsimile>+1 703 715-7436</facsimile>
  <email>klensin@mci.net</email></address></author>
  <author initials='J.' surname='Postel' fullname='Jon Postel'>
  <organization>USC/Information Sciences Institute</organization>
  <address>
  <postal>
  <street>4676 Admiralty Way</street>
  <street>Marina del Rey</street>
  
  <street>CA  90292</street>
  <country>USA</country></postal>
  <phone>+1 310 822 1511</phone>
  <facsimile>+1 310 823 6714</facsimile>
  <email>Postel@ISI.EDU</email></address></author>
  <date year='1996' month='November' />
  <area>Applications</area>
  <keyword>mail</keyword>
  <keyword>media type</keyword>
  
  <keyword>multipurpose internet mail extensions</keyword>

  </front>
  <seriesInfo name='RFC' value='2048' />
</reference>

<reference anchor="RFC-2049">
  <front>
    <title abbrev="MIME Conformance">Multipurpose Internet Mail Extensions (MIME) Part Five: Conformance Criteria and Examples</title>
    <author initials="N." surname="Freed" fullname="Ned Freed">
    <organization>Innosoft International, Inc.</organization>
    <address>
    <postal>
    <street>1050 East Garvey Avenue South</street>
    <street>West Covina</street>
    <street>CA 91790</street>
    <country>USA</country></postal>
    <phone>+1 818 919 3600</phone>
    <facsimile>+1 818 919 3614</facsimile>
    <email>ned@innosoft.com</email></address></author>
    <author initials="N.S." surname="Borenstein" fullname="Nathaniel S. Borenstein">
    <organization>First Virtual Holdings</organization>
    <address>
    <postal>
    <street>25 Washington Avenue</street>
    <street>Morristown</street>
    <street>NJ 07960</street>
    <country>USA</country></postal>
    <phone>+1 201 540 8967</phone>
    <facsimile>+1 201 993 3032</facsimile>
    <email>nsb@nsb.fv.com</email></address></author>
    <date month="November" year="1996"/>
    <area>Applications</area>
    <keyword>mail</keyword>
    <keyword>multipurpose internet mail extensions</keyword>
  </front>
  <seriesInfo name="RFC" value="2049"/>
</reference>

<reference anchor='RFC-2060'>
  <front>
    <title abbrev='IMAP4rev1'>Internet Message Access Protocol - Version 4rev1</title>
    <author initials='M.' surname='Crispin' fullname='Mark R. Crispin'>
    <organization>University of Washington, Networks and Distributed Computing</organization>
    <address>
    <postal>
    <street>4545 15th Aveneue NE</street>
    <city>Seattle</city>
    <region>WA</region>
    
    <code>98105-4527</code>
    <country>US</country></postal>
    <phone>+1 206 543 5762</phone>
    <email>MRC@CAC.Washington.EDU</email></address></author>
    <date year='1996' month='December' />
  
  </front>
  <seriesInfo name='RFC' value='2060' />
</reference>

<reference anchor="RFC-2119">
  <front>
    <title abbrev="RFC Key Words">Key words for use in RFCs to Indicate Requirement Levels</title>
    <author initials="S." surname="Bradner" fullname="Scott Bradner">
      <organization>Harvard University</organization>
      <address><email>sob@harvard.edu</email></address>
    </author>
    <date month="March" year="1997"/>
    <area>General</area>
    <keyword>keyword</keyword>
  </front>
  <seriesInfo name="RFC" value="2119"/>
</reference>

<reference anchor='RFC-2130'>

<front>
<title abbrev='Character Set Workshop Report'>The Report of the IAB Character Set Workshop held 29 February - 1 March, 1996</title>
<author initials='C.' surname='Weider' fullname='Chris Weider'>
<organization>Microsoft Corp.</organization>
<address>
<postal>
<street>1 Microsoft Way</street>
<street>Redmond</street>
<street>WA 98052</street>

<country>USA</country></postal>
<email>cweider@microsoft.com</email></address></author>
<author initials='C.' surname='Preston' fullname='Cecilia Preston'>
<organization>Preston &amp; Lynch</organization>
<address>
<postal>
<street>PO Box 8310</street>
<street>Emeryville</street>
<street>CA 94662</street>

<country>USA</country></postal>
<email>cecilia@well.com</email></address></author>
<author initials='K.' surname='Simonsen' fullname='Keld Simonsen'>
<organization>DKUUG</organization>
<address>
<postal>
<street>Freubjergvey 3</street>
<street>DK-2100 Kxbenhavn X</street>
<street>Danmark</street></postal>
<email>Keld@dkuug.dk</email></address></author>

<author initials='H.T.' surname='Alvestrand' fullname='Harald T. Alvestrand'>
<organization>UNINETT</organization>
<address>
<postal>
<street>P.O.Box 6883 Elgeseter</street>
<street>N-7002 TRONDHEIM</street>
<country>NORWAY</country></postal>
<email>Harald.T.Alvestrand@uninett.no</email></address></author>
<author initials='R.' surname='Atkinson' fullname='Randall Atkinson'>
<organization>cisco Systems</organization>
<address>

<postal>
<street>170 West Tasman Drive</street>
<street>San Jose</street>
<street>CA 95134-1706</street>
<country>USA</country></postal>
<email>rja@cisco.com</email></address></author>
<author initials='M.' surname='Crispin' fullname='Mark Crispin'>
<organization>Networks &amp; Distributed Computing</organization>
<address>

<postal>
<street>University of Washington</street>
<street>4545 15th Avenue</street>
<street>Seattle</street>
<street>WA  98105-4527</street>
<country>USA</country></postal>
<email>mrc@cac.washington.edu</email></address></author>
<author initials='P.' surname='Svanberg' fullname='Peter Svanberg'>
<organization>Dept. of Numberical Analysis and Computing Science (Nada)</organization>
<address>

<postal>
<street>Royal Institute of Technology</street>
<street>SE-100 44 STOCKHOLM</street>
<country>SWEDEN</country></postal>
<email>psv@nada.kth.se</email></address></author>
<date year='1997' month='April' />
<area>Applications</area>
  </front>
  <seriesInfo name='RFC' value='2130' />
</reference>


<reference anchor="RFC-2183">
<front>
<title abbrev="Content-Disposition">Communicating Presentation Information in Internet Messages: The Content-Disposition Header Field</title>
<author initials="R." surname="Troost" fullname="Rens Troost">
<organization>New Century Systems</organization>
<address>
<postal>
<street>324 East 41st Street #804</street>
<street>New York</street>
<street>NY</street>
<street>10017</street>
<country>USA</country></postal>
<phone>+1 (212) 557-2050</phone>
<facsimile>+1 (212) 557-2049</facsimile>
<email>rens@century.com</email></address></author>
<author initials="S." surname="Dorner" fullname="Steve Dorner">
<organization>QUALCOMM Incorporated</organization>
<address>
<postal>
<street>6455 Lusk Boulevard</street>
<street>San Diego</street>
<street>CA 92121</street>
<country>USA</country></postal>
<email>sdorner@qualcomm.com</email></address></author>
<author initials="K." surname="Moore" fullname="Keith Moore">
<organization>Department of Computer Science</organization>
<address>
<postal>
<street>University of Tennessee</street>
<street>Knoxville</street>
<street>107 Ayres Hall</street>
<street>Knoxville TN  37996-1301</street>
<country>USA</country></postal>
<phone>+1 (423) 974-5067</phone>
<facsimile>+1 (423) 974-8296</facsimile>
<email>moore@cs.utk.edu</email></address></author>
<date month="August" year="1997"/>
<area>Applications</area>
<keyword>MIME</keyword>
<keyword>internet message</keyword>
<keyword>multipurpose internet mail extensions</keyword>
</front>
<seriesInfo name="RFC" value="2183"/>
</reference>

</references>

  
  </back>

</rfc>