home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1997 December / Internet_Info_CD-ROM_Walnut_Creek_December_1997.iso / rfc / rfc1343 < prev    next >
Text File  |  1992-06-11  |  29KB  |  652 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.             Network Working Group               N. Borenstein, Bellcore
  8.             Request for Comments: 1343                        June 1992
  9.  
  10.                         A User Agent Configuration Mechanism
  11.  
  12.                        For Multimedia Mail Format Information
  13.  
  14.  
  15.           Status of This Memo
  16.  
  17.             This is an informational memo for  the  Internet  community,
  18.             and  requests  discussion  and suggestions for improvements.
  19.             This  memo  does   not   specify   an   Internet   standard.
  20.             Distribution of this memo is unlimited.
  21.  
  22.           Abstract
  23.  
  24.             This memo suggests a  file  format  to  be  used  to  inform
  25.             multiple   mail   reading  user  agent  programs  about  the
  26.             locally-installed facilities for handling  mail  in  various
  27.             formats.  The  mechanism is explicitly designed to work with
  28.             mail systems based Internet mail as defined  by  RFC's  821,
  29.             822,  934,  1049,  1113,  and the Multipurpose Internet Mail
  30.             Extensions, known as MIME.  However, with some extensions it
  31.             could  probably be made to work for X.400-based mail systems
  32.             as well.  The format and mechanism are proposed in a  manner
  33.             that  is  generally  operating-system independent.  However,
  34.             certain  implementation  details  will  inevitably   reflect
  35.             operating  system differences, some of which will have to be
  36.             handled in a uniform manner for each operating system.  This
  37.             memo  makes  such  situations explicit, and, in an appendix,
  38.             suggests  a  standard  behavior  under  the  UNIX  operating
  39.             system.
  40.  
  41.           Introduction
  42.  
  43.             The electronic mail world is in the midst  of  a  transition
  44.             from  single-part  text-only mail to multi-part, multi-media
  45.             mail.  In support of this transition, various extensions  to
  46.             RFC  821  and  RFC  822  have  been proposed and/or adopted,
  47.             notably including  MIME  [RFC-1341].  Various  parties  have
  48.             demonstrated  extremely  high-functionality multimedia mail,
  49.             but the problem of mail interchange between  different  user
  50.             agents has been severe.  In general, only text messages have
  51.             been shared between user agents  that  were  not  explicitly
  52.             designed   to   work   together.   This  limitation  is  not
  53.             compatible with a smooth transition to  a  multi-media  mail
  54.             world.
  55.  
  56.             One approach to this transition is to modify diverse sets of
  57.             mail  reading user agents so that, when they need to display
  58.             mail of an  unfamiliar  (non-text)  type,  they  consult  an
  59.             external  file  for information on how to display that file.
  60.             That file might say, for example, that if  the  content-type
  61.  
  62.  
  63.  
  64.             Borenstein                                          [Page 1]
  65.  
  66.  
  67.  
  68.  
  69.             RFC 1343       Multimedia Mail Configuration       June 1992
  70.  
  71.  
  72.             of  a  message  is "foo" it can be displayed to the user via
  73.             the "displayfoo" program.
  74.  
  75.             This approach means that, with a  one-time  modification,  a
  76.             wide  variety  of  mail  reading  programs  can be given the
  77.             ability to display a  wide  variety  of  types  of  message.
  78.             Moreover,  extending  the  set of media types supported at a
  79.             site becomes a simple matter  of  installing  a  binary  and
  80.             adding  a  single  line to a configuration file.  Crucial to
  81.             this scheme, however, is that all of the user  agents  agree
  82.             on  a common representation and source for the configuration
  83.             file.  This memo proposes such a common representation.
  84.  
  85.           Location of Configuration Information
  86.  
  87.             Each  user  agent  must  clearly  obtain  the  configuration
  88.             information  from a common location, if the same information
  89.             is to be  used  to  configure  all  user  agents.   However,
  90.             individual  users  should  be  able to override or augment a
  91.             site's configuration.  The configuration information  should
  92.             therefore  be  obtained  from a designated set of locations.
  93.             The overall  configuration  will  be  obtained  through  the
  94.             virtual  concatenation  of  several individual configuration
  95.             files known as mailcap files.  The configuration information
  96.             will  be obtained from the FIRST matching entry in a mailcap
  97.             file, where "matching" depends on both a  matching  content-
  98.             type   specification,   an   entry   containing   sufficient
  99.             information for the purposes of the  application  doing  the
  100.             searching, and the success of any test in the "test=" field,
  101.             if present.
  102.  
  103.             The precise location of  the  mailcap  files  is  operating-
  104.             system dependent.  A standard location for UNIX is specified
  105.             in Appendix A.
  106.  
  107.           Overall Format of a Mailcap File
  108.  
  109.             Each mailcap file consists of a set of entries that describe
  110.             the  proper  handling  of  one media type at the local site.
  111.             For example, one line might tell how to display a message in
  112.             Group III fax format.  A mailcap file consists of a sequence
  113.             of such individual entries, separated by newlines (according
  114.             to  the operating system's newline conventions). Blank lines
  115.             and lines that start with the "#" character (ASCII  35)  are
  116.             considered  comments,  and are ignored.  Long entries may be
  117.             continued on multiple lines if each non-terminal  line  ends
  118.             with  a  backslash  character ('\', ASCII 92), in which case
  119.             the multiple lines are to be treated  as  a  single  mailcap
  120.             entry.   Note that for such "continued" lines, the backslash
  121.             must be the last character on the line to be continued.
  122.  
  123.             Thus the overall format of a mailcap file is given,  in  the
  124.             modified BNF of RFC 822, as:
  125.  
  126.  
  127.  
  128.  
  129.             Borenstein                                          [Page 2]
  130.  
  131.  
  132.  
  133.  
  134.             RFC 1343       Multimedia Mail Configuration       June 1992
  135.  
  136.  
  137.                  Mailcap-File = *Mailcap-Line
  138.  
  139.                  Mailcap-Line = Comment / Mailcap-Entry
  140.  
  141.                  Comment = NEWLINE  /  "#" *CHAR NEWLINE
  142.  
  143.                  NEWLINE = <newline as defined by OS convention>
  144.  
  145.             Note that the above specification implies that comments must
  146.             appear  on  lines all to themselves, with a "#" character as
  147.             the first character on each comment line.
  148.  
  149.           Format of a Mailcap Entry
  150.  
  151.             Each mailcap entry consists of a number of fields, separated
  152.             by semi-colons.  The first two fields are required, and must
  153.             occur in the specified  order.   The  remaining  fields  are
  154.             optional, and may appear in any order.
  155.  
  156.             The first field is the  content-type,  which  indicates  the
  157.             type of data this mailcap entry describes how to handle.  It
  158.             is to be matched against the type/subtype  specification  in
  159.             the "Content-Type" header field of an Internet mail message.
  160.             If the subtype is specified as "*", it is intended to  match
  161.             all subtypes of the named content-type.
  162.  
  163.             The second field, view-command, is a  specification  of  how
  164.             the  message  or  body part can be viewed at the local site.
  165.             Although the syntax of this field is  fully  specified,  the
  166.             semantics  of  program  execution  are  necessarily somewhat
  167.             operating system dependent.  UNIX  semantics  are  given  in
  168.             Appendix A.
  169.  
  170.             The optional fields, which may be given in any order, are as
  171.             follows:
  172.  
  173.             -- The "compose" field may be used to specify a program that
  174.             can  be used to compose a new body or body part in the given
  175.             format.  Its intended  use  is  to  support  mail  composing
  176.             agents  that  support  the  composition of multiple types of
  177.             mail using external composing  agents.  As  with  the  view-
  178.             command,  the  semantics  of program execution are operating
  179.             system dependent, with UNIX semantics specified in  Appendix
  180.             A.   The result of the composing program may be data that is
  181.             not yet suitable for mail transport -- that is,  a  Content-
  182.             Transfer-Encoding may need to be applied to the data.
  183.  
  184.             -- The "composetyped" field  is  similar  to  the  "compose"
  185.             field, but is to be used when the composing program needs to
  186.             specify the Content-type header field to be applied  to  the
  187.             composed  data.   The  "compose"  field  is  simpler, and is
  188.             preferred for use with existing (non-mail-oriented) programs
  189.             for  composing  data  in a given format.  The "composetyped"
  190.             field is necessary when the  Content-type  information  must
  191.  
  192.  
  193.  
  194.             Borenstein                                          [Page 3]
  195.  
  196.  
  197.  
  198.  
  199.             RFC 1343       Multimedia Mail Configuration       June 1992
  200.  
  201.  
  202.             include  auxilliary  parameters, and the composition program
  203.             must then know enough about mail formats to  produce  output
  204.             that includes the mail type information.
  205.  
  206.             -- The "edit" field may be used to specify  a  program  that
  207.             can be used to edit a body or body part in the given format.
  208.             In many cases,  it  may  be  identical  in  content  to  the
  209.             "compose"  field,  and shares the operating-system dependent
  210.             semantics for program execution.
  211.  
  212.             -- The "print" field may be used to specify a  program  that
  213.             can  be  used  to  print a message or body part in the given
  214.             format.  As with the view-command, the semantics of  program
  215.             execution   are   operating   system  dependent,  with  UNIX
  216.             semantics specified in Appendix A.
  217.  
  218.             -- The "test" field  may  be  used  to  test  some  external
  219.             condition  (e.g.  the  machine  architecture,  or the window
  220.             system in use) to determine whether or not the mailcap  line
  221.             applies.   It  specifies  a  program  to be run to test some
  222.             condition.  The semantics of  execution  and  of  the  value
  223.             returned by the test program are operating system dependent,
  224.             with UNIX semantics specified in Appendix A.   If  the  test
  225.             fails,   a   subsequent  mailcap  entry  should  be  sought.
  226.             Multiple test fields are not permitted -- since a  test  can
  227.             call a program, it can already be arbitrarily complex.
  228.  
  229.             -- The "needsterminal" field indicates that the view-command
  230.             must  be  run on an interactive terminal.  This is needed to
  231.             inform  window-oriented  user  agents  that  an  interactive
  232.             terminal  is  needed.  (The decision is not left exclusively
  233.             to the view-command because in some circumstances it may not
  234.             be  possible  for  such programs to tell whether or not they
  235.             are on interactive terminals.)   The  needsterminal  command
  236.             should be assumed to apply to the compose and edit commands,
  237.             too, if they exist.  Note that this is NOT a test -- it is a
  238.             requirement for the environment in which the program will be
  239.             executed, and should  typically  cause  the  creation  of  a
  240.             terminal  window when not executed on either a real terminal
  241.             or a terminal window.
  242.  
  243.             -- The "copiousoutput" field indicates that the output  from
  244.             the  view-command  will be an extended stream of output, and
  245.             is to be interpreted as advice to the UA (User  Agent  mail-
  246.             reading  program)  that the output should be either paged or
  247.             made scrollable. Note that  it  is  probably  a  mistake  if
  248.             needsterminal and copiousoutput are both specified.
  249.  
  250.             --  The  "description"  field  simply  provides  a   textual
  251.             description,  optionally  quoted, that describes the type of
  252.             data, to be used optionally by mail  readers  that  wish  to
  253.             describe the data before offering to display it.
  254.  
  255.  
  256.  
  257.  
  258.  
  259.             Borenstein                                          [Page 4]
  260.  
  261.  
  262.  
  263.  
  264.             RFC 1343       Multimedia Mail Configuration       June 1992
  265.  
  266.  
  267.             -- The "x11-bitmap" field names a file, in X11 bitmap  (xbm)
  268.             format,  which  points  to an appropriate icon to be used to
  269.             visually denote the presence of this kind of data.
  270.  
  271.             -- Any other fields beginning with "x-" may be included  for
  272.             local   or   mailer-specific   extensions  of  this  format.
  273.             Implementations should simply ignore all  such  unrecognized
  274.             fields  to  permit  such  extensions, some of which might be
  275.             standardized in a future version of this document.
  276.  
  277.             Some of the fields above, such as "needsterminal", apply  to
  278.             the  actions of the view-command, edit-command, and compose-
  279.             command, alike.  In some unusual  cases,  this  may  not  be
  280.             desirable,  but  differentiation  can  be  accomplished  via
  281.             separate mailcap entries, taking advantage of the fact  that
  282.             subsequent  mailcap  entries  are  searched  if  an  earlier
  283.             mailcap entry does not provide enough information:
  284.  
  285.                  application/postscript; ps-to-terminal %s; \
  286.                      needsterminal
  287.                  application/postscript; ps-to-terminal %s; \
  288.                      compose=idraw %s
  289.  
  290.             In RFC 822 modified BNF, the following grammar  describes  a
  291.             mailcap entry:
  292.  
  293.                  Mailcap-Entry = typefield ; view-command
  294.                                      [";" 1#field]
  295.  
  296.                  typefield = propertype / implicit-wild
  297.  
  298.                  propertype = type "/" wildsubtype
  299.  
  300.                  implicitwild = type
  301.  
  302.                  wildsubtype = subtype / "*"
  303.  
  304.                  view-command = mtext
  305.  
  306.                  mtext = *mchar
  307.  
  308.                  mchar = schar / qchar
  309.  
  310.                  schar = * <any CHAR except
  311.                             ";", "\", and CTLS>
  312.  
  313.                  qchar = "\" CHAR ; may quote any char
  314.  
  315.                  field = flag / namedfield
  316.  
  317.                  namedfield = fieldname "=" mtext
  318.  
  319.                  flag = "needsterminal"   ; All these literals are to
  320.  
  321.  
  322.  
  323.  
  324.             Borenstein                                          [Page 5]
  325.  
  326.  
  327.  
  328.  
  329.             RFC 1343       Multimedia Mail Configuration       June 1992
  330.  
  331.  
  332.                       / "copiousoutput"   ; be interpreted as
  333.                       / x-token           ; case-insensitive
  334.  
  335.                  fieldname =    / "compose"      ;Also all of these
  336.                                 / "composetyped" ;are case-insensitive.
  337.                                 / "print"
  338.                                 / "edit"
  339.                                 / "test"
  340.                                 / "x11-bitmap"
  341.                                 / "description"
  342.                                 / x-token
  343.  
  344.             Note that  "type",  "subtype", and "x-token" are defined  in
  345.             MIME.   Note  also  that  while  the  definition  of "schar"
  346.             includes the percent sign, "%", this character has a special
  347.             meaning  in  at least the UNIX semantics, and will therefore
  348.             need to be quoted as a qchar to be used literally.
  349.  
  350.           Appendix A:  Implementation Details for UNIX
  351.  
  352.             Although this memo fully specifies a  syntax  for  "mailcap"
  353.             files,  the  semantics  of the mailcap file are of necessity
  354.             operating-system dependent in four respects.   In  order  to
  355.             clarify  the  intent,  and to promote a standard usage, this
  356.             appendix proposes a UNIX semantics for these four cases.  If
  357.             a  mailcap  mechanism  is  implemented  on non-UNIX systems,
  358.             similar semantic decisions should be made and published.
  359.  
  360.             Location of the Mailcap File(s)
  361.  
  362.             For UNIX, a path search of mailcap files is specified.   The
  363.             default  path  search is specified as including at least the
  364.             following:
  365.  
  366.             $HOME/.mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap
  367.  
  368.             However,  this  path  may  itself  be  overridden  by a path
  369.             specified by the MAILCAPS environment variable.
  370.  
  371.             Semantics of executable commands
  372.  
  373.             Several portions of a mailcap entry specify commands  to  be
  374.             executed.   In  particular,  the mandatory second field, the
  375.             view-command, takes a command to  be  executed,  as  do  the
  376.             optional print, edit, test, and compose fields.
  377.  
  378.             On a UNIX system, such commands will each be  a  full  shell
  379.             command  line, including the path name for a program and its
  380.             arguments.   (Because  of  differences  in  shells  and  the
  381.             implementation  and  behavior  of  the  same  shell from one
  382.             system to another, it is specified that the command line  be
  383.             intended  as  input  to  the  Bourne  shell, i.e. that it is
  384.             implicitly preceded by "/bin/sh -c " on the command line.)
  385.  
  386.  
  387.  
  388.  
  389.             Borenstein                                          [Page 6]
  390.  
  391.  
  392.  
  393.  
  394.             RFC 1343       Multimedia Mail Configuration       June 1992
  395.  
  396.  
  397.             The two characters "%s", if used, will be  replaced  by  the
  398.             name  of  a file for the actual mail body data.  In the case
  399.             of the edit adn view-command, the body part will  be  passed
  400.             to  this  command  as  standard  input  unless  one  or more
  401.             instances of "%s" appear in the view-command, in which  case
  402.             %s  will  be  replaced  by the name of a file containing the
  403.             body part, a file which may have to be  created  before  the
  404.             view-command  program  is  executed.  (Such  files cannot be
  405.             presumed to continue to exist after the view-command program
  406.             exits.  Thus a view-command that wishes to exit and continue
  407.             processing in the background should take care  to  save  the
  408.             data  first.)   In  the case of the compose and composetyped
  409.             commands, %s should be replaced by the name  of  a  file  to
  410.             which  the  composed  data should be written by the programs
  411.             named in the compose or composedtyped commands.   Thus,  the
  412.             calling  program  will  look  in that file later in order to
  413.             retrieve the composed data. If %s does  not  appear  in  the
  414.             compose  or  composetyped  commands,  then the composed data
  415.             will be assumed to be written by the composing  programs  to
  416.             standard output.
  417.  
  418.             Furthermore, any occurrence of "%t" will be replaced by  the
  419.             content-type  and  subtype  specification.  (That is, if the
  420.             content-type is "text/plain", then %t will  be  replaced  by
  421.             "text/plain".)   A  literal % character may be quoted as \%.
  422.             Finally, named parameters from the Content-type field may be
  423.             placed  in the command execution line using "%{" followed by
  424.             the parameter name and a closing "}" character.  The  entire
  425.             parameter  should  appear as a single command line argument,
  426.             regardless of embedded spaces.  Thus, if the message  has  a
  427.             Content-type line of:
  428.  
  429.                  Content-type:  multipart/mixed; boundary=42
  430.  
  431.             and the mailcap file has a line of:
  432.  
  433.                  multipart/*; /usr/local/bin/showmulti \
  434.                    %t %{boundary}
  435.  
  436.             then the equivalent  of  the  following  command  should  be
  437.             executed:
  438.  
  439.                  /usr/local/bin/showmulti multipart/mixed 42
  440.  
  441.             Semantics of the "test" field
  442.  
  443.             The "test" field specifies a program  to  be  used  to  test
  444.             whether  or  not the current mailcap line applies.  This can
  445.             be used, for example, to  have  a  mailcap  line  that  only
  446.             applies if the X window system is running, or if the user is
  447.             running on a SPARCstation with a /dev/audio.  The  value  of
  448.             the  "test"  field  is  a  program  to  run  to  test such a
  449.             condition.  The precise program to run and arguments to give
  450.             it are determined as specified in the previous section.  The
  451.  
  452.  
  453.  
  454.             Borenstein                                          [Page 7]
  455.  
  456.  
  457.  
  458.  
  459.             RFC 1343       Multimedia Mail Configuration       June 1992
  460.  
  461.  
  462.             test program should return an  exit  code  of  zero  if  the
  463.             condition is true, and a non-zero code otherwise.
  464.  
  465.             Semantics of the "compose" field
  466.  
  467.             On UNIX, the composing program is expected to produce a data
  468.             stream  for  such  a  body part as its standard output.  The
  469.             program will be executed with  the  command  line  arguments
  470.             determined  as  specified  above.  The data returned via its
  471.             standard output will be given a Content-Type field that  has
  472.             no  supplementary  parameters.   For  example, the following
  473.             mailcap entry:
  474.  
  475.                  audio/basic; /usr/local/bin/showaudio %t
  476.                   compose = /usr/local/bin/recordaudio
  477.  
  478.             would  result  in  tagging  the   data   composed   by   the
  479.             "recordaudio" program as:
  480.  
  481.                  Content-Type: audio/basic
  482.  
  483.             If this is unacceptable --  for  example,  in  the  case  of
  484.             multipart  mail  a  "boundary" parameter is required -- then
  485.             the  "compose"  field  cannot   be   used.    Instead,   the
  486.             "composetyped" field should be used in the mailcap file.
  487.  
  488.             Semantics of the "composetyped" field
  489.  
  490.             The "composetyped" filed is much like the  "compose"  field,
  491.             except  that  it  names a composition program that produces,
  492.             not raw data, but data that includes a MIME-conformant  type
  493.             specification.   The  program  will  be  executed  with  the
  494.             command line arguments determined as specified  above.   The
  495.             data  returned  via  its  standard  output must begin with a
  496.             Content-Type header, followed optionally by other  Content-*
  497.             headers,  and  then  by  a  blank  line  and  the data.  For
  498.             example, the following mailcap entry:
  499.  
  500.                  multipart/mixed; /usr/local/bin/showmulti %t \
  501.                    %{boundary}; \
  502.                    composetyped = /usr/local/bin/makemulti
  503.  
  504.             would result in executing  the  "makemulti"  program,  which
  505.             would  be  expected  to  begin its output with a line of the
  506.             form:
  507.  
  508.                  Content-Type: multipart/mixed; boundary=foobar
  509.  
  510.             Note that a composition program need not encode binary  data
  511.             in base64 or quoted-printable. It remains the responsibility
  512.             of the software calling the composition  program  to  encode
  513.             such  data  as  necessary.   However, if a composing program
  514.             does  encode  data,  which  is  not  encouraged,  it  should
  515.             announce  that fact using a Content-Transfer-Encoding header
  516.  
  517.  
  518.  
  519.             Borenstein                                          [Page 8]
  520.  
  521.  
  522.  
  523.  
  524.             RFC 1343       Multimedia Mail Configuration       June 1992
  525.  
  526.  
  527.             in the  standard  manner  defined  by  MIME.   Because  such
  528.             encodings  must  be  announced by such a header, they are an
  529.             option only  for  composetyped  programs,  not  for  compose
  530.             programs.
  531.  
  532.           Appendix B: Sample Mailcap File
  533.  
  534.             The following is an example of a mailcap file for UNIX  that
  535.             demonstrates  most  of  the  syntax  above.     It  contains
  536.             explanatory comments where necessary.
  537.  
  538.                  # Mailcap file for Bellcore lab 214.
  539.                  #
  540.                  # The next line sends "richtext" to the richtext
  541.                  program
  542.                  text/richtext; richtext %s; copiousoutput
  543.                  #
  544.                  # Next, basic u-law audio
  545.                  audio/*; showaudio; test=/usr/local/bin/hasaudio
  546.                  #
  547.                  # Next, use the xview program to handle several image
  548.                  formats
  549.                  image/*; xview %s; test=/usr/local/bin/RunningX
  550.                  #
  551.                  # The ATOMICMAIL interpreter uses curses, so needs a
  552.                  terminal
  553.                  application/atomicmail; /usr/local/bin/atomicmail %s; \
  554.                      needsterminal
  555.                  #
  556.                  # The next line handles Andrew format,
  557.                  #   if ez and ezview are installed
  558.                  x-be2; /usr/andrew/bin/ezview %s; \
  559.                     print=/usr/andrew/bin/ezprint %s ; \
  560.                     compose=/usr/andrew/bin/ez -d %s \;
  561.                     edit=/usr/andrew/bin/ez -d %s; \;
  562.                     copiousoutput
  563.                  #
  564.                  # The next silly example demonstrates the use of
  565.                  quoting
  566.                  application/*; echo "This is \\"%t\\" but \
  567.                     is 50 \% Greek to me" \; cat %s; copiousoutput
  568.  
  569.  
  570.           Appendix C:  A Note on Format Translation
  571.  
  572.             It has been suggested that another function  of  a  mailcap-
  573.             like  mechanism  might  be  to specify the locally available
  574.             tools for document format translation.    For  example,  the
  575.             file could designate a program for translating from format A
  576.             to format B, another for translating from format B to format
  577.             C,   and  finally  a  mechanism  for  displaying  format  C.
  578.             Although this mechanism would be somewhat  richer  than  the
  579.             current  mailcap  file,  and  might  conceivably  also  have
  580.             utility at the message  transport  layer,  it  significantly
  581.  
  582.  
  583.  
  584.             Borenstein                                          [Page 9]
  585.  
  586.  
  587.  
  588.  
  589.             RFC 1343       Multimedia Mail Configuration       June 1992
  590.  
  591.  
  592.             complicates the processing effort necessary for a user agent
  593.             that simply wants to display a message in format  A.   Using
  594.             the  current,  simpler,  mailcap scheme, a single line could
  595.             tell such a user agent to  display  A-format  mail  using  a
  596.             pipeline  of translators and the C-format viewer.  This memo
  597.             resists  the  temptation   to   complicate   the   necessary
  598.             processing  for a user agent to accomplish this task.  Using
  599.             the mailcap format defined here, it  is  only  necessary  to
  600.             find  the  correct  single  line  in  a mailcap file, and to
  601.             execute the command given in that line.
  602.  
  603.           References
  604.  
  605.             [RFC 822]  Crocker, D.,  "Standard for the  format  of  ARPA
  606.             Internet   text  messages", RFC  822,  UDEL, August, 1982.
  607.  
  608.             [RFC  1341]   Borenstein,   N.,   and   N.   Freed,    "MIME
  609.             (Multipurpose  Internet  Mail  Extensions):  Mechanisms  for
  610.             Specifying and Describing the  Format  of  Internet  Message
  611.             Bodies", RFC 1341, Bellcore, June, 1992.
  612.  
  613.           Acknowledgements
  614.  
  615.             The author  wishes  to  thank  Malcolm  Bjorn  Gillies,  Dan
  616.             Heller,  Olle  Jaernefors, Keith Moore, Luc Rooijakkers, and
  617.             the other members of the IETF task force on mail  extensions
  618.             for  their comments on earlier versions of this draft.    If
  619.             other acknowledgements were neglected, please let  me  know,
  620.             as it was surely accidental.
  621.  
  622.           Security Considerations
  623.  
  624.             Security issues are not  discussed in this memo.    However,
  625.             the  use  of  the mechanisms described in this memo can make
  626.             it easier for implementations to  slip  into  the   kind  of
  627.             security   problems   discussed   in   the   MIME  document.
  628.             Implementors and mailcap administrators should be  aware  of
  629.             these  security  considerations,  and  in particular  should
  630.             exercise caution in the choice of programs to be listed in a
  631.             mailcap file for  automatic execution.
  632.  
  633.           Author's Address
  634.  
  635.             Nathaniel S. Borenstein
  636.             MRE 2D-296, Bellcore
  637.             445 South St.
  638.             Morristown, NJ 07962-1910
  639.  
  640.             Email: nsb@bellcore.com
  641.             Phone: +1 201 829 4270
  642.             Fax:  +1 201 829 7019
  643.  
  644.  
  645.  
  646.  
  647.  
  648.  
  649.             Borenstein                                         [Page 10]
  650.  
  651.  
  652.