home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / lang / pascal / 4877 < prev    next >
Encoding:
Text File  |  1992-08-16  |  4.8 KB  |  123 lines

  1. Newsgroups: comp.lang.pascal
  2. Path: sparky!uunet!mcsun!fuug!kiae!relcom!usenet
  3. From: evsikov@lcta5.jinr.dubna.su (Igor Evsikov)
  4. Subject: RE: List of the routine...(FTP Mail Service)
  5. Message-ID: <ADzngZg0I6@lcta5.jinr.dubna.su>
  6. Lines: 111
  7. Sender: news-service@kiae.su
  8. Reply-To: evsikov@lcta5.jinr.dubna.su
  9. Organization: Lcta
  10. Date: Sun, 16 Aug 92 23:29:01 +0300
  11.  
  12. >Tuesday August 11 1992, Timo Salmi writes to All:
  13.  
  14. > TS> 88338 Jun 13 21:02 garbo.uwasa.fi:/pc/ts/tspa2840.zip
  15. > ...
  16. >I don't have ftp access. Is there anywhere out in the BBS world where these
  17. >can be found? Direct E-Mail would be appreciated...
  18.  
  19.   USE FTPMAIL:
  20.  
  21.     *******************************************
  22.     *   ftpmail@decwrl.dec.com    {FTP Mail}  *
  23.     *******************************************
  24.  
  25. >>> $Id: help-text,v 1.3 1992/06/13 18:06:56 vixie Exp $
  26. >>>
  27. >>> commands are:
  28.  reply <MAILADDR>        set reply addr, since headers are usually wrong
  29.  connect [HOST [USER [PASS]]]  defaults to gatekeeper.dec.com, anonymous
  30.  ascii                   files grabbed are printable ascii
  31.  binary                  files grabbed are compressed or tar or both
  32.  chdir PLACE             "get" and "ls" commands are relative to PLACE
  33.                                  (only one CHDIR per ftpmail session,
  34.                                  and it executes before any LS/DIR/GETs)
  35.  compress                compress binaries using Lempel-Ziv encoding
  36.  compact                 compress binaries using Huffman encoding
  37.  uuencode                binary files will be mailed in uuencode format
  38.  btoa                    binary files will be mailed in btoa format
  39.  chunksize SIZE          split files into SIZE-byte chunks (def: 64000)
  40.  ls (or dir) PLACE       short (long) directory listing
  41.  get FILE                get a file and have it mailed to you
  42.                                  (max 10 GET's per ftpmail session)
  43.  quit                    terminate script, ignore rest of mail message
  44.                                  (use if you have a .signature or
  45.                                   are a VMSMAIL user)
  46.  
  47. >>> notes:
  48.  -> you should send complaints to the ftpmail-request address.  our
  49.     postmaster does not handle ftpmail problems and you can save her
  50.     the trouble of forwarding your complaints by just mailing them to
  51.     the right address.
  52.  
  53.  -> the "Subject:" of your request will be contained in the "Subject:"
  54.     of all of ftpmail's responses to you regarding that request.  You
  55.     can therefore use it to "tag" different requests if you have more
  56.     than one outstanding at any given time.
  57.  
  58.  -> you must give a "connect" command, default host is
  59.     gatekeeper.dec.com, default user is anonymous, default
  60.     password is your mail address.
  61.  
  62.  -> binary files will not be compressed unless 'compress' or 'compact'
  63.     command is given; use this if at all possible, it helps a lot.
  64.     note that many files are already compressed.  if you use any of
  65.     the binary-file qualifiers (compress, compact, uuencode, btoa)
  66.     without setting 'binary' first, your session will abort in error.
  67.  
  68.  -> binary files will always be formatted into printable ASCII
  69.     with "btoa" or "uuencode" (default is "btoa").  if you don't
  70.     use the "binary" command, ftpmail will cheerfully try to mail
  71.     you the binary data, which will absolutely, positively fail.
  72.  
  73.  -> all retrieved files will be split into chunks and mailed.  the
  74.     size of the chunk is 50000 characters unless you change it with
  75.     the "chunksize" command.  CompuServe users will need to set this
  76.     to 49000.
  77.  
  78.  -> if you ask for more than 10 files in a session, you will receive
  79.     an error message and your entire request will be rejected.
  80.  
  81.  -> VMS/DOS/Mac versions of uudecode, atob, compress and compact
  82.     are available, ask your LOCAL wizard about them if you can't
  83.     locate them (but try gatekeeper.dec.com in /archive/pub/VMS
  84.     if you're still using a VMS system.)
  85.  
  86.  -> several mail unsplitters are hiding on gatekeeper.dec.com in
  87.     /pub/mail/ua/misc/unsplit.  includes one in c, one in perl,
  88.     and one in VMS DCL.
  89.  
  90.  -> there is no way to request only certain parts of a file and we
  91.     do not plan to add one in the near future, so please don't ask.
  92.  
  93.  -> there is no way to delete things from the queue or to find out
  94.     the status of things in the queue, and we do not plan to add
  95.     either feature in the near future, so please don't ask.
  96.  
  97. >>> examples:
  98.  
  99.  -> connect to gatekeeper.dec.com and get a root directory listing:
  100.          connect
  101.          ls
  102.          quit
  103.  
  104.  -> connect to gatekeeper.dec.com and get the README.ftp file:
  105.          connect
  106.          get README.ftp
  107.          quit
  108.  
  109.  -> connect to gatekeeper.dec.com and get the gnuemacs sources:
  110.          connect
  111.          binary
  112.          uuencode
  113.          chdir /pub/GNU
  114.          get emacs-18.58.tar.Z
  115.          quit
  116.  
  117.  -> connect to ftp.uu.net as anonymous and get a root directory list:
  118.          connect ftp.uu.net
  119.          dir
  120.          quit
  121.  
  122.  
  123.