home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1996 September / Simtel-MSDOS-Sep1996-CD1.iso / 00_info / ftpmail.txt < prev    next >
Internet Message Format  |  1996-07-08  |  4KB

  1. From: w8sdz@Simtel.Net (Keith Petersen)
  2. Subject: How to get Simtel.Net files by e-mail (revised 960708)
  3.  
  4. ftpmail@Simtel.Net (also known as ftpmail@wcarchive.cdrom.com) - ftp's
  5. files and sends them back via electronic mail.
  6.  
  7. If you have problems please email to ftp-bugs@wcarchive.cdrom.com
  8.  
  9. >>Valid commands to the ftpmail gateway are:
  10.  
  11. reply-to email-address       Who to send the response to.  This is
  12.                              optional and defaults to the users email address
  13.  
  14. >>Followed by one of:
  15.  
  16. help                         Just send back help
  17. delete jobid                 Delete the given job
  18. open [site [user [pass]]]    Site to ftp to.  Defaults are
  19.                              wcarchive.cdrom.com anonymous reply-to-address.
  20.  
  21. >>If there was an open then it can be followed by up to 100 of the
  22. >>following commands
  23.  
  24. cd pathname                  Change directory.
  25. ls [pathname]                short listing of pathname. Default pathname
  26.                               is current directory.
  27. dir [pathname]               long listing of pathname. Default pathname
  28.                               is current directory.
  29. get pathname                 Get a file and email it back.
  30.  
  31. compress                     Compress files/dir-listings before emailing back
  32. gzip                         Gzip files/dir-listings before emailing back
  33.  
  34. uuencode
  35. btoa
  36.                              These are mutually exclusive options for
  37.                              converting a binary file before emailing.
  38.                              (Default is uuencode.)
  39.  
  40. force uuencode
  41. force btoa
  42.                              Force all files or directory listings to
  43.                              be encoded before sending back.
  44.                              There is no default.
  45.  
  46. no [compress|gzip|uuencode|btoa|mime]
  47.                              Turn the option off.
  48.  
  49. size num[K|M]
  50.                              Set the max size a file can be before it
  51.                              is split up and emailed back in parts to
  52.                              the given number of Kilo or Mega bytes.
  53.                              This is limited to 10240000.
  54.  
  55. mode binary
  56. mode ascii
  57.                              Change the mode selected for the get
  58.                              command.  Defaults to binary.
  59. quit                         End of input - ignore any following lines.
  60.  
  61. Example scripts are:
  62.  
  63. open
  64. dir
  65. quit
  66.         Connect to wcarchive.cdrom.com and send back the contents of the
  67.         top level directory
  68.  
  69. reply-to lmjm@doc.ic.ac.uk
  70. open
  71. cd simtelnet/msdos
  72. get SIMDOS-L.ZIP
  73. quit
  74.         Connect to wcarchive.cdrom.com and send back the file SIMDOS-L.ZIP
  75.         to lmjm@doc.ic.ac.uk
  76.  
  77. open src.doc.ic.ac.uk
  78. cd graphics/X11/X.V11R5
  79. get ls-lR.Z
  80. cd ../contrib
  81. compress
  82. ls -ltra
  83. quit
  84.         Connect to src.doc.ic.ac.uk, send back the file ls-lR.Z in
  85.         graphics/X11/X.V11R5.  As this is a binary file it has to be
  86.         transfered in binary mode.  Because it is binary it will automatically
  87.         be uuencoded (the default binary encoder).  Then change to ../contrib
  88.         and mail back a compressed directory listing.  Although compressing ls
  89.         output makes it binary, which then has to be encoded, it still ends up
  90.         smaller than the original.
  91.  
  92. open
  93. cd graphics/X11/X.V11R5/fixes
  94. get fix-08
  95. get fix-09
  96. get sunGX.uu
  97. quit
  98.         Retrieve some recent X fixes
  99.  
  100. open
  101. cd gnu
  102. atob
  103. mode binary
  104. get emacs-18.57.tar.Z
  105. quit
  106.