home *** CD-ROM | disk | FTP | other *** search
/ Hacker Chronicles 2 / HACKER2.BIN / 1238.REQ.DOC < prev    next >
Text File  |  1989-05-20  |  2KB  |  73 lines

  1.  
  2. Greetings,
  3.  
  4.      I've been working on a couple servers for W0RLI version 10.x..  One for
  5. requesting the directory and one for files.  I don't know if there's a
  6. standard format for RLI servers of this type?  I decided to make things as
  7. simple as possible.  So, a message sent to "SP REQDIR @ BBS" gets a listing
  8. of all directories and files.  One sent to "SP REQFIL @ BBS" needs the
  9. filename in the subject field in RLI format (e.g., Dd filename.ext).
  10.  
  11.  
  12.  
  13. REQDIR.EXE
  14.  
  15.  
  16.      SP REQDIR @ BBS will generate a return message containing the file
  17.       diretories.
  18.  
  19.      The SERVER.MB text required to activate this server is:
  20.  
  21.      s reqdir \mb\reqdir.exe reqdir.out 8 reqdir.in 8
  22.  
  23.  
  24.      Options are used to lock-out directories that are not to be included in
  25. the listing.  You may desire to, limit the size of the listing, not include
  26. directories with very large files, etc..  The option/s are used as if they
  27. were command line arguments but are placed in a separate file in the BBS
  28. directory.  This option file is not required for the operation of the
  29. server.
  30.  
  31.      The server looks for a file with the name 'REQDAT.RLI' when
  32. initialized.  Use, "copy con reqdat.rli" as you would a batch file.  To
  33. lock-out a directory, enter '-' followed be the directory ID/s.  As an
  34. example, to keep the A, F, & T directories out of the listing, use the
  35. following:
  36.  
  37.      -aft
  38.  
  39.  
  40.      As of version 1.2 of REQDIR, this server will also accept command line
  41. options.  This requires that 'server.mb' call a batch file that runs 'reqdir'
  42. with the options as in the following example.  (NOTE: This meathod will use
  43. more memory since command.com must be loaded.)
  44.  
  45.      To remove directories A, G, & T from the listing, enter the following in
  46. a batch file:
  47.  
  48.      \mb\reqdir -agt
  49.  
  50.  
  51.      The SERVER.MB text in this case would be:
  52.  
  53.      s reqdir \mb\direq.bat reqdir.out 8 reqdir.in 8
  54.      (Where, 'direq.bat' is the batch file in directory 'mb').
  55.  
  56.  
  57.  
  58.  
  59. REQFIL.EXE
  60.  
  61.  
  62.      SP REQFIL @ BBS will generate a return message containing file specified
  63.       in the Subject field using the RLI download format.
  64.  
  65.      SP REQFIL @ WB3AFL        (Title/Subject)->ds reqdir.c
  66.  
  67.  
  68.      The SERVER.MB text required to activate this server is:
  69.  
  70.      s reqfil \mb\reqfil.exe reqfil.out 8 reqfil.in 8
  71.  
  72.  
  73.