home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hacker Chronicles 2
/
HACKER2.BIN
/
1238.REQ.DOC
< prev
next >
Wrap
Text File
|
1989-05-20
|
2KB
|
73 lines
Greetings,
I've been working on a couple servers for W0RLI version 10.x.. One for
requesting the directory and one for files. I don't know if there's a
standard format for RLI servers of this type? I decided to make things as
simple as possible. So, a message sent to "SP REQDIR @ BBS" gets a listing
of all directories and files. One sent to "SP REQFIL @ BBS" needs the
filename in the subject field in RLI format (e.g., Dd filename.ext).
REQDIR.EXE
SP REQDIR @ BBS will generate a return message containing the file
diretories.
The SERVER.MB text required to activate this server is:
s reqdir \mb\reqdir.exe reqdir.out 8 reqdir.in 8
Options are used to lock-out directories that are not to be included in
the listing. You may desire to, limit the size of the listing, not include
directories with very large files, etc.. The option/s are used as if they
were command line arguments but are placed in a separate file in the BBS
directory. This option file is not required for the operation of the
server.
The server looks for a file with the name 'REQDAT.RLI' when
initialized. Use, "copy con reqdat.rli" as you would a batch file. To
lock-out a directory, enter '-' followed be the directory ID/s. As an
example, to keep the A, F, & T directories out of the listing, use the
following:
-aft
As of version 1.2 of REQDIR, this server will also accept command line
options. This requires that 'server.mb' call a batch file that runs 'reqdir'
with the options as in the following example. (NOTE: This meathod will use
more memory since command.com must be loaded.)
To remove directories A, G, & T from the listing, enter the following in
a batch file:
\mb\reqdir -agt
The SERVER.MB text in this case would be:
s reqdir \mb\direq.bat reqdir.out 8 reqdir.in 8
(Where, 'direq.bat' is the batch file in directory 'mb').
REQFIL.EXE
SP REQFIL @ BBS will generate a return message containing file specified
in the Subject field using the RLI download format.
SP REQFIL @ WB3AFL (Title/Subject)->ds reqdir.c
The SERVER.MB text required to activate this server is:
s reqfil \mb\reqfil.exe reqfil.out 8 reqfil.in 8