home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Amiga / Workbench / Archivers / mpackPPC.lha / mpackPPC / src / mkreadme.pl < prev    next >
Perl Script  |  1998-04-08  |  21KB  |  588 lines

  1. #!/usr/bin/perl
  2.  
  3. $systype = $ARGV[0] || die "usage: $0 systype\n";
  4. if ($ARGV[1]) {
  5.     $sysname = $ARGV[1];
  6. } else {
  7.     $sysname = $systype;
  8. }
  9.  
  10. open(VERSION, "version.h") || die "can't read version.h: $!\n";
  11. while (<VERSION>) {
  12.     $version = $1 if /^#define MPACK_VERSION "(.*)"\n/;
  13. }
  14. die "Can't find version number in version.h\n" if !defined($version);
  15.  
  16. $hdr = "mpack/munpack version $version for $sysname\n";
  17.  
  18. print " " x ((75-length($hdr))/2), $hdr;
  19.  
  20. $dooutput = 1;
  21. while (<DATA>) {
  22.     if (/^=/) {
  23.     $dooutput = /\W$systype\W/;
  24.     } elsif (/^!/) {
  25.     $dooutput = !/\W$systype\W/;
  26.     } elsif ($dooutput) {
  27.     s/^\.//;
  28.     print;
  29.     }
  30. }
  31.  
  32. exit 0;
  33.     
  34. __END__
  35.  
  36. Mpack and munpack are utilities for encoding and decoding
  37. (respectively) binary files in MIME (Multipurpose Internet Mail
  38. Extensions) format mail messages.  For compatibility with older forms
  39. of transferring binary files, the munpack program can also decode
  40. messages in split-uuencoded format.  The Macintosh version can also
  41. decode messages in split-BinHex format.
  42.  
  43. =arc
  44. The Archimedes port interworks with Marcel (ANT's RISC OS MIME-compliant
  45. MUA) to preserve filetypes, timestamps and access permissions.  munpack
  46. should correctly unpack any Marcel message.  At present, mpack doesn't
  47. include the filetype, etc. information.  This may be implemented in a
  48. future release.
  49.  
  50. !
  51. Versions are included for unix, pc, os2, mac, amiga and archimedes
  52. systems.  The canonical FTP site for this software is
  53. ftp.andrew.cmu.edu:pub/mpack/
  54.  
  55. This MIME implementation is intended to be as simple and portable as
  56. possible.  For a slightly more sophisticated MIME implementation, see
  57. the program MetaMail, available via anonymous FTP to
  58. thumper.bellcore.com, in directory pub/nsb
  59.  
  60.  
  61. Decoding MIME messages:
  62.  
  63. =unix
  64. First, you have to compile the munpack program.  See the instructions
  65. in the section "Compilation" below.  If, after reading the
  66. instructions, you are still unsure as to how to compile munpack,
  67. please try to find someone locally to help you.
  68.  
  69. !
  70. To decode a MIME message, first save it to a text file.  If possible,
  71. !mac
  72. save it with all headers included.  Munpack can decode some MIME files
  73. =mac
  74. save it with all headers included.  Mpack can decode some MIME files
  75. !
  76. when the headers are missing or incomplete, other files it cannot
  77. decode without having the information in the headers.  In general,
  78. messages which have a statement at the beginning that they are in MIME
  79. format can be decoded without the headers.  Messages which have been
  80. split into multiple parts generally require all headers in order to be
  81. reassembled and decoded.
  82.  
  83. Some LAN-based mail systems and some mail providers (including America
  84. Online, as of the writing of this document) place the mail headers at
  85. the bottom of the message, instead of at the top of the message.  If
  86. you are having problems decoding a MIME message on such a system, you
  87. need to convert the mail back into the standard format by removing the
  88. system's nonstandard headers and moving the standard Internet headers
  89. to the top of the message (separated from the message body with a
  90. blank line).
  91.  
  92. !mac
  93. There must be exactly one message per file.  Munpack cannot deal with
  94. multiple messages in a single file, to decode things correctly it must
  95. know when one message ends and the next one begins.
  96.  
  97. To decode a message, run the command:
  98.  
  99.     munpack file
  100.  
  101. where "file" is the name of the file containing the message.  More than
  102. one filename may be specified, munpack will try to decode the message in
  103. each file.  For more information on ways to run munpack, see the section
  104. "Using munpack" below.
  105.  
  106. =mac
  107. There must be exactly one message per file.  Mpack cannot deal with
  108. multiple messages in a single file, to decode things correctly it must
  109. know when one message ends and the next one begins.
  110.  
  111. The Macintosh version of mpack/munpack is a single standalone
  112. application.  A text file may be decoded either by drag & drop, or by
  113. choosing the "Decode Files..." item from the application's File menu.
  114. Non-text files may be encoded either by drag & drop, or by choosing
  115. the "Encode Files..." item from the application's File menu.
  116.  
  117. The Macintosh version of mpack/munpack supports the new MacMIME
  118. standard (RFC 1740).  This allows cross-platform transport of
  119. Macintosh files to any MIME-capable machine, and also preserves
  120. Macintosh specific file attributes between two Macintoshes.  Mpack
  121. will use MacMIME for any unrecognized Macintosh file, and regular MIME
  122. for standard MIME types.
  123.  
  124. For more details and descriptions of the preferences, see the "Help
  125. Using Mpack..." menu item in mpack which can be found under the help
  126. menu in systems 7 and above, and under the apple menu in older
  127. systems.
  128. !
  129.  
  130. Reporting bugs:
  131.  
  132. Bugs and comments should be reported to mpack-bugs@andrew.cmu.edu.
  133. When reporting bugs or other problems, please include the following
  134. information:
  135.  
  136.   * The version number of Mpack
  137.   * The platform (Unix, PC, OS/2, Mac, Amiga, Archimedes)
  138.   * The EXACT output of any unsuccessful attempts.
  139.   * If having a problem decoding, the first couple of lines
  140.     of the input file.
  141.  
  142.  
  143. Compilation:
  144.  
  145. =unix
  146. The mpack distribution should compile with no changes on most unix
  147. systems.  There are a few exceptions--if compiling on SunOS, SVR4, SCO
  148. Unix, or an ancient BSD without the strchr() function, edit the
  149. Makefile and uncomment the relevant lines.
  150.  
  151. Compile with the command:
  152.  
  153.     make
  154.  
  155. If you want to install the programs and man pages in a common place,
  156. use the command:
  157.  
  158.     make install DESTDIR=/installation/path
  159.  
  160. where "/installation/path" is the path of the tree you want to install
  161. the files into.  The default value of DESTDIR is "/usr/local", which
  162. installs the programs in the directory "/usr/local/bin" and the man
  163. pages in "/usr/local/man/man1".
  164.  
  165. =pc
  166. The pc sources have been compiled with Microsoft C version 7.0.  The
  167. project files "mpack.mak" and "munpack.mak" are for mpack.exe and
  168. munpack.exe, respectively.
  169.  
  170. =os2
  171. The os2 sources have been compiled with IBM Cset++ version 2.1.  The
  172. makefiles "mpack.os2" and "munpack.os2" are for mpack.exe and
  173. munpack.exe, respectively. Both makefiles also include statements to
  174. compile the sources with EMX 0.9a from Eberhard Mattes.
  175.  
  176. =amiga
  177. The amiga sources have been compiled with SAS/C version 6.3. To compile
  178. with SAS/C, use the command "smake".
  179.  
  180. =arc
  181. The RISC OS sources have been compiled with Acorn C version 4.0 and
  182. UnixLib 3.6e (ftp-able from micros.hensa.ac.uk).
  183.  
  184. =mac
  185. Mpack was compiled with THINK C 6.0 with the 4-byte int option turned
  186. on (and the ANSI-small library compiled with the 4-byte int option)
  187. and prototype enforcement turned off.  Included with this distribution
  188. should be the files "macproj.hqx" which is a BinHex4 version of the
  189. THINK C 6.0 project file, and "macrsrc.hqx" which is a BinHex4 version
  190. of the resources file.
  191.  
  192. Mpack checks for the existence of "Internet Config", and if it is
  193. available, mpack uses it to translate MIME types to and from Macintosh
  194. type/creator codes.  Included is the file "macICglue.hqx" which is a
  195. BinHex4 version of Internet Config's MPW object file library.  This
  196. needs to be linked with the application.
  197.  
  198. Using mpack:
  199.  
  200. See the "Help Using Mpack..." menu item in the application.
  201.  
  202. !mac
  203. Using mpack:
  204.  
  205. Mpack is used to encode a file into one or more MIME format messages.
  206. The program is invoked with:
  207.  
  208.     mpack [options] -o outputfile file
  209.  
  210. =unix os2 amiga
  211. or 
  212.  
  213.     mpack [options] file address...
  214.  
  215. or
  216.  
  217.     mpack [options] -n newsgroups file
  218.  
  219. !mac
  220. Where "[options]" is one or more optional switches described below.
  221. "-o outputfile" is also described below. "file" is the name of the
  222. !mac unix os2 amiga
  223. file to encode.
  224. =unix os2 amiga
  225. file to encode, "address..." is one or more e-mail address to mail the
  226. resulting messages to and "newsgroups" is a comma-separated list of
  227. newsgroups to post the resulting messages to.
  228.  
  229. =amiga
  230. There is extra flexibility in the options and addresses.  Use "mpack
  231. ?" for a list of options; a second "?" will print more information.
  232. AmigaDOS 2.0 or later is required to run mpack.
  233.  
  234. !mac
  235. The possible options are:
  236.  
  237.      -s subject
  238.           Set the Subject header field to Subject.   By default,
  239.           mpack will prompt for the contents of the subject
  240.           header.
  241.  
  242.      -d descriptionfile
  243.           Include the contents of the file descriptionfile in an
  244.           introductory section at the beginning of the first
  245.           generated message.
  246.  
  247.      -m maxsize
  248.           Split the message (if necessary) into partial messages,
  249.           each not exceeding maxsize characters.  The default
  250.           limit is the value of the SPLITSIZE environment 
  251.       variable, or no limit if the environment variable
  252.           does not exist.  Specifying a maxsize of 0 means there
  253.           is no limit to the size of the generated message.
  254.  
  255.      -c content-type
  256.           Label the included file as being of MIME type
  257.           content-type, which must be a subtype of application,
  258.           audio, image, or video.  If this switch is not given,
  259.           mpack examines the file to determine its type.
  260.  
  261.      -o outputfile
  262.           Write the generated message to the file outputfile.  If
  263.           the message has to be split, the partial messages will
  264. !mac arc
  265.           instead be written to the files outputfile.01,
  266.           outputfile.02, etc.
  267.  
  268. =arc
  269.           instead be written to the files outputfile/01,
  270.           outputfile/02, etc.
  271.  
  272. =os2
  273.      -f username
  274.       Specifies the user name to be used for mail or news. If
  275.       this option is ommitted, the environment variable LOGNAME
  276.       will be used to determine the user name.
  277.  
  278. !mac
  279. The environment variables which control mpack's behavior are:
  280.  
  281.      SPLITSIZE
  282.           Default value of the -m switch.  Default "0".
  283.  
  284. =unix
  285.      TMPDIR
  286.       Directory to store temporary files.  Default "/tmp".
  287.  
  288. =pc os2 amiga
  289.      HOSTNAME
  290.           Fully qualified domain name to use in generated message-ids.
  291.       Default "random-pc" or "random-amiga".
  292.  
  293. =arc
  294.      HOSTNAME
  295.           Fully qualified domain name to use in generated message-ids.
  296.       Default "random-arc".
  297.  
  298. =os2 amiga
  299.      DOMAINNAME
  300.           If $HOSTNAME does not have a '.' in it, this is appended to
  301.           $HOSTNAME to get the domain to use. Default is
  302.           "random-domain".
  303.  
  304. =amiga
  305.      POSTNEWS
  306.       Command to use to post news. Compatible with Dillon UUCP usage.
  307.  
  308.      SENDMAIL
  309.       Command to use to send mail. Compatible with Dillon UUCP usage.
  310.  
  311. =os2
  312.      POSTNEWS
  313.       Command to use to post news. Compatible with UUPC inews.
  314.  
  315.      SENDMAIL
  316.       Command to use to send mail. Compatible with IBM sendmail.
  317.  
  318.      LOGNAME
  319.       User name for sending mail or posting news. Defaults to
  320.       "postmaster".
  321.  
  322. !mac
  323.  
  324. Using munpack:
  325.  
  326. Munpack is used to decode one or more messages in MIME or
  327. split-uuencoded format and extract the embedded files.  The program is
  328. invoked with:
  329.  
  330.     munpack [options] filename...
  331.  
  332. !mac pc arc
  333. which reads the messages in the files "filename...".  Munpack may also
  334. be invoked with just:
  335. =pc arc
  336. which reads the messages in the files "filename...".  Wildcards are
  337. accepted.  Munpack may also be invoked with just:
  338. !mac
  339.  
  340.     munpack [options]
  341.  
  342. which reads a message from the standard input.
  343.  
  344. =amiga
  345. Munpack does not accept wildcards.  Under AmigaDOS prior to 2.0, only
  346. filenames are allowed.  Under AmigaDOS 2.0 or later, the options
  347. described later are supported, with extra flexibility.  Use 
  348. "munpack ?" for a list of options; a second "?" will print more
  349. information.
  350.  
  351. !mac
  352. If the message suggests a file name to use for the imbedded part, that
  353. name is cleaned of potential problem characters and used for the
  354. output file.  If the suggested filename includes subdirectories, they
  355. will be created as necessary.  If the message does not suggest a file
  356. name, the names "part1", "part2", etc are used in sequence.
  357.  
  358. If the imbedded part was preceded with textual information, that
  359. information is also written to a file. The file is named the same as
  360. the imbedded part, with any filename extension replaced with
  361. !mac pc os2 arc
  362. ".desc"
  363. =pc os2
  364. ".dsc"
  365. =arc
  366. "/dsc"
  367. !mac
  368.  
  369. The possible options are:
  370.  
  371.      -f
  372.           Forces the overwriting of existing files.  If a message
  373.           suggests a file name of an existing file, the file will be
  374. =unix amiga
  375.           overwritten.  Without this flag, munpack appends ".1", ".2",
  376.           etc to find a nonexistent file.
  377. =pc os2
  378.           overwritten.  Without this flag, munpack replaces any
  379.           filename extension with ".1", ".2", etc to find a
  380.           nonexistent file.
  381. =arc
  382.           overwritten.  Without this flag, munpack appends "/1", "/2",
  383.           etc to find a nonexistent file.
  384. !mac
  385.  
  386.      -t
  387.       Also unpack the text parts of multipart messages to files.
  388.       By default, text parts that do not have a filename parameter
  389.       do not get unpacked.
  390.  
  391.      -q
  392.           Be quiet--suppress messages about saving partial messages.
  393.  
  394.      -C directory
  395.           Change the current directory to "directory" before reading
  396.           any files.  This is useful when invoking munpack
  397.           from a mail or news reader.
  398. =os2
  399.  
  400.      -e
  401.           Writes the MIME content type into the extended attribute 
  402.           "MIME-TYPE". This extended attribute can be used by any
  403.           software that post processes the decoded files. The 
  404.           following is an example program how to read this extended 
  405.           attribute in Rexx:
  406.  
  407. ---------------------------cut here---------------------------------
  408. /* This Rexx program demonstrates how to read the MIME-type        *
  409.  * parameter out of the EA of the decoded file. Note, that the     *
  410.  * options '-e' must be used to write this EA.                     */
  411.  
  412. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  413. call SysLoadFuncs
  414.  
  415. parse ARG name
  416.  
  417. if SysGetEA(name, "MIME-TYPE", "TYPEINFO") = 0 then
  418.    parse var typeinfo 4 type
  419. else 
  420.    type = "undefined"
  421.  
  422. say "MIME content-type is" type
  423. ---------------------------cut here---------------------------------
  424. !mac
  425.  
  426. The environment variables which control munpack's behavior are:
  427.  
  428. =unix
  429.      TMPDIR
  430.           Root of directory to store partial messages awaiting 
  431.           reassembly.  Default is "/usr/tmp".   Partial messages
  432.       are stored in subdirectories of $TMPDIR/m-prts-$USER/
  433.  
  434. =pc os2
  435.      TMP
  436.           Root of directory to store partial messages awaiting
  437.           reassembly.  Default is "\tmp".  Partial messages are
  438.           stored in subdirectories of $TMP\parts\
  439.  
  440. =arc
  441.      Wimp$ScrapDir
  442.           Root of directory to store partial messages awaiting
  443.           reassembly.  Default is "/tmp" which UnixLib should do
  444.           something sensible with.  Partial messages are
  445.           stored in subdirectories of <Wimp$ScrapDir>.parts
  446.  
  447. =amiga
  448.      METAMAIL_P_DIR [amiga version only]
  449.           Root of directory to store partial messages awaiting 
  450.           reassembly.  Default is "t:".   Partial messages are
  451.       stored in subdirectories of METAMAIL_P_DIR.
  452.  
  453.      USER, USERNAME
  454.      Subdirectory of METMAIL_P_DIR where mime parts are stored. USER
  455.      is checked first, then USERNAME. Default "anonymous".
  456.  
  457. If the shared library netsupport.library is available, it will be used
  458. to get the value of the environment variables. This allows them to be
  459. set in uulib:config file instead of in the environment. If this
  460. library not present, then a warning that the library was not found is
  461. printed. You may ignore this warning.
  462. !
  463.  
  464. Acknowledgements:
  465.  
  466. Written by John G. Myers, jgm+@cmu.edu
  467.  
  468. The mac version was written by Christopher J. Newman, chrisn+@cmu.edu
  469.  
  470. The amiga port was done by Mike W. Meyer, mwm@contessa.phone.net and
  471. Peter Simons, simons@peti.GUN.de
  472.  
  473. The os2 port was done by Jochen Friedrich, jochen@audio.pfalz.de
  474.  
  475. The archimedes port was done by Olly Betts, olly@mantis.co.uk
  476.  
  477. Send all bug reports to mpack-bugs@andrew.cmu.edu 
  478.  
  479. Thanks to Nathaniel Borenstein for testing early versions of mpack and
  480. for making many helpful suggestions.
  481.  
  482.  
  483. PGP signature:
  484.  
  485. Starting with version 1.5, all official mpack distributions are PGP
  486. signed by "John Gardiner Myers <jgm+@cmu.edu>".  The PGP signatures
  487. are detached from the distributions themselves, in files with the
  488. ".asc" filename extension.  If the location where you obtained mpack
  489. does not include the PGP signature, or if the signature is not valid
  490. for the distribution, please complain to the maintainer of the
  491. relevant distribution site.
  492.  
  493. A valid PGP signature indicates that the distribution is the one that
  494. I put together; it specifically does not indicate any warranty of any
  495. kind on the software.  The Unix and DOS versions were done by myself,
  496. the DOS binaries were checked for viruses using an up-to-date virus
  497. checker.  The Macintosh version was done by a colleague I have reason
  498. to trust.  All other versions were done and compiled by people I have
  499. had no personal contact with.
  500.  
  501. My PGP public key follows:
  502.  
  503. -----BEGIN PGP PUBLIC KEY BLOCK-----
  504. Version: 2.6.1
  505.  
  506. mQBtAi5Sd2AAAAEDANBa5/iCcCUkCsDtSpWIKfwEhqAFOoIE61j7Q/Q+mdU4V/BK
  507. ttboCOk9ZDtGKYhMFvH31I7bAECruV1GIa/awbfI0EMfZwQ+U0YhOUScXfm2ARIv
  508. XotV0HJqmwnIWCbPjQAFEbQiSm9obiBHYXJkaW5lciBNeWVycyA8amdtK0BjbXUu
  509. ZWR1PokAlQMFEC77TI7FLUdtDb+QbQEBhMcD/1gmEtykw84iYmo9TjlCg8hfzqJs
  510. /TvRlUKoNF3oGG7M9h4zmP1AwL75B2/k3UnD39LsTc15J4ZWbH/VwVWPT73rRBwD
  511. hGS33ep1JAP1koB3f1RIjZ3jrRSbdVt45W2l1A+aAPP8oHs7Uf+eSINx7DA6THuu
  512. W14BeJyVu9acBKuriQCVAgUQLvs8nVsjC0SkKFUJAQHbFwP9Gzb+p3z73o6p4A9k
  513. 5xqwr8WpmTBMFITM6p9gLe//RlR3Mh2u6/rYZEPJ73wpokHi3ArEICCG2+58IZpt
  514. WTV0FUPoXZz1bZ+N45yGCPEw2Ibgr6AWHvQzUeIDICWS4D/IPN73QUfifRHQmEeb
  515. 3N7YIr63XoACun8oZZrM6OhVfIGJAJUDBRAu5r4dhxvAWY8bGaUBAdipA/4zxuYA
  516. A/C34f4M+3Ta/F3yY8ooxboLyYiqej0i5uK4w51XjJeRoS6c49hi8m5yw8SQ1VmQ
  517. Suk3pTHSYuE9hermX6ET7tMp5sGB1oIy/1zyoxZfLCbWj2UPHUsVJsMagAn3HbF0
  518. UHZMkCj4WothYNSrMfCnswoWjDKQxVIDVKLkpokAlAMFEC7woYNnNYxubw4jcQEB
  519. qQMD9RDnxCyCHatULx+/KUrJLIYaayZe1D/C2VC0QzzdmxHkcAcc5tjuD1S7igJW
  520. +9hftwlf4EJx1NCSjhteNk57W7bcrLEdi4PInwFNXAuiCUzhLvoBRXQbHEuhM39f
  521. hjATkSTIBX9OrwwSJS2IvuuEaZGy1PJSuCqHg88paZlPRYaJAFUDBRAu59rLqn0S
  522. 2IICPJ0BAYo8AgDCDXoqwVsLKofrHFvVc2/S2MHLtNFhWLmep5D26Uk1uKy6E6vw
  523. pFxjbmr41rPepxYdR32218yIYqEG5RQRcjdOiQCVAwUQLuf5rjJyiM5s7VOJAQHv
  524. UwQArtoqCX1Y9u21KuPP439P5Xcg2MexhAmnYD7JP0d5rHcvp0LYfUsOFAZKpRwl
  525. eLqvzkVnUjVR3X3ehmTQdRNRV6o9LVMXYQmMpoZUQlmR/+ilsNjflhKPwx3PpvYT
  526. AGDMv8QlALKc3gN8wJCxq9iW8DHbTWmoYFDiK74FwbDRjDWJAJUDBRAu5rwCRBVw
  527. zUZrQokBAR5pBADAm/0bxhJMfNGT1/d7eaaGWzo0DZ21UulyPzGGQKhvqT2OqFxJ
  528. ulUL+EYyxeKC7GxkcX7cICcQBNTRt9Ul0ooCT/szGneYeUnotp4dWRRxk8e09kjf
  529. +mLo5imR9OI1cUpjo8AJCpFvp/p6GRlS0WhCzdyD4dYsK3pDL3WCsOfD5YkAlQMF
  530. EC7oAXVJt7YjNP0hXQEBMoQD/R2IYpH9EluRureUWg6Oi3uZlMM6gCTz/cWhjNKC
  531. nwbP5VG/J0TqPIGq7VI6ORM9PwfN5CElYNAHhyetSPdH51+jdPY7g80bMvV1QH5U
  532. DtDOD7zjKo4ZcyRu6d7pz14o5yoRiU2bwFa2obcqFBA077j3sVYHU5Rie6ZZWnSU
  533. /ovHiQCVAwUQLuf9K5DwvktRSrLVAQE4IwP/d/j2hNOdHTdH/fs4DuKF2ATDmeIP
  534. vZzxVD2PpyRVfUTd5cypOnPdw0kBhMMTSHo33A+WR5zy+ZosDpg9a/qJwGmnSB7z
  535. puwGMnBGXQZs8CtcqvqMGlyeMLihJa6pLc6KA29mI8XvgtUiBQa5jm7Ga6Aor4K8
  536. zetpHCP8sbgb7D+JAJUDBRAu5rxv+8I/jbEzFDkBAbDoBACa3YIC2hSK00lQhSo7
  537. GvgldN6YjDs0zAnYoiT55z1vi06etQSx0c0jad6+CX4ctK4g3fUZuw6SIbGkk8tU
  538. Rq1Vl3pHertzbY6VIOt+zTXwlMaH+Jv/wP/FJBI3VkGpRvjWNTtAxaXBAV5va5wd
  539. mcj9JtfpVR77CnHNSSMnRqZsFIkAlQMFEC7m1plfgDcY2g7cgQEBxFkEAJehxpIS
  540. EXxr7AyrkyMH7FylxSf2kiVTRko5hmPm30i7q3d4Bxx6qSItERTykvPy4EhWfUG5
  541. 4OMyD68cIX4ovK4cJ4YK+ZiF8OyDjEVX5E1oXdoc7DQb9eIlEnB7B7orDNYVKxJh
  542. In+IVYmvb4MalsPb7kCik7yplZ6Eu507AD3GiQCVAwUQLua8MH0RF3HCK4zZAQE1
  543. 2AP/TlPe1fVdsgR8z87Mtjp5AyxskKLCH1D/CA8kz19kjmO/aQzP0GxZInX6YvUv
  544. 5Ct7Fk3hjdY6PsnK4Vuykeny00nheQRdL/rkjIXZ4fRpPGPDXJwIhdL4tG8Yh+U2
  545. +PWwg3wy96C2AePDgMz7zpRMF6N5Kc/JJ1zV5DaZu7Wk3jmJAJUDBRAu5sNxq/8H
  546. tEbzIS0BAQxlA/4nbmzbeSKFRwGHe62FydmBE3icDvNYNKGO7+oQQRxayF8ZnYjj
  547. bz6UiL9HZmDa0flSURaXuZTCzo+N2TDr5PbCLb2Nvs8bBFps+rcBfsXtv66LZn4k
  548. ukan9MwUS02PK7L/cV3jURzpjead/vqkh7jYVlwB/Wg1c0aVkHt0F7XiRYkAlQMF
  549. EC7mv4WE37rmLVJ+MQEB0JsD/0ow7V3u78AOEj+FJAH182V03EFk+4YYpyHF1DHA
  550. cCWJoCQ9DrcQ+mnMd73hs4AsF5NRXQXpbI7ocZADOG7kqcTAyedX6xHUisYl08Pv
  551. vPlTRCQkgSRNAF1U2MWq8C7mI/LuyLvsSoFedQlaqi5J0Xm5x2IJzm1p3ukre3Sq
  552. 4CQCiQCVAgUQLlKInRNhgovrPB7dAQGF2wP/ZhaTYW2M8zTPAmCIgeZqHJeMWic+
  553. bGeiCB9ICvcQV0dsBXm/26YXwCXnOVoryY5ToCpj5d2zmvAPBTBOx8GrnAPCOHoH
  554. tumQn5ODeRXhyc+jcSKbk/1jAEteEyJJ+KBTVnJ5LymI3Ayv1aWUmdvJhLGavxl9
  555. Wi3bjI/bpV0eE+g=
  556. .=pCCQ
  557. -----END PGP PUBLIC KEY BLOCK-----
  558.  
  559. Legalese:
  560.  
  561. (C) Copyright 1993,1994 by Carnegie Mellon University
  562. All Rights Reserved.
  563.  
  564. Permission to use, copy, modify, distribute, and sell this software
  565. and its documentation for any purpose is hereby granted without fee,
  566. provided that the above copyright notice appear in all copies and that
  567. both that copyright notice and this permission notice appear in
  568. supporting documentation, and that the name of Carnegie Mellon
  569. University not be used in advertising or publicity pertaining to
  570. distribution of the software without specific, written prior
  571. permission.  Carnegie Mellon University makes no representations about
  572. the suitability of this software for any purpose.  It is provided "as
  573. is" without express or implied warranty.
  574.  
  575. CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
  576. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  577. AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
  578. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  579. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
  580. AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
  581. OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  582. SOFTWARE.
  583.  
  584. Portions of this software are derived from code written by Bell
  585. Communications Research, Inc. (Bellcore) and by RSA Data Security,
  586. Inc. and bear similar copyrights and disclaimers of warranty.
  587.  
  588.