home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / f / finet93a.zip / SCRIPTS.ZIP / README.1ST < prev   
Text File  |  1993-01-01  |  5KB  |  116 lines

  1.          MAIL SCRIPT INFORMATION FOR TELIX AND GENERIC
  2.  
  3. Here is sample batch file to use the script:
  4. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  5. rem this is a sample batch file which could be used, renaming directory
  6. rem names and the like, to run the telix script.  PCRELAY would be
  7. rem replaced with whatever name you're using.... and drive letters also.
  8. rem this is only one of many ways to do it. I do it several ways...
  9. rem  you may wish to call PCRELAY directory FINET
  10.  
  11.  
  12. @echo off
  13. j:
  14. cd j:\PCRELAY
  15. copy lastread.net lastread.bac
  16. copy lastread.net j:\pcrelay\save
  17. copy *.id j:\pcrelay\save
  18. copy id.* j:\pcrelay\save
  19. EXPORT.EXE
  20. c:
  21. cd C:\PCRtelix
  22. copy freedom.rly j:\pcrelay\save\out.rly
  23. rem this is where telix is run with script.
  24. telix snew
  25. copy IN.RLY g:\pcrelay
  26. j:
  27. cd j:\PCRELAY
  28. IMPORT.EXE
  29. E:
  30. cd\rbbs
  31.  
  32.  
  33.  
  34. --------------------------------------------------------------------
  35.  
  36. GENERAL SCRIPT INFORMATION:
  37. --------------------------
  38. The finet1 script is user supplied and works well.  Finet2 is an
  39. idea and works... finet3 script is the safest with respect to connect
  40. times and so on but is more complex but is not finished yet. It works
  41. except does not yet download IN.RLY.  A little work should make this a
  42. great script for TELIX.  It does get to upload the nodeid.zip packet,
  43. but does not yet receive the in.rly.
  44.  
  45. FINET NETHUB only provides the connection; while we try to help with
  46. scripts, that is the relaying sysop's responsibility. Feel free to
  47. modify any of these to customize them for your application. Another node
  48. here uses robocomm with good result.  You can contact node RESOURCE for
  49. more information on robocom.
  50.  
  51.  
  52. sequence for script is basically:
  53. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  54. (from batch file you've run pcrelay "EXPORT")
  55.  
  56. 1  Dial and log in
  57. 1a you might wish to send an <enter> keystroke in case the opening
  58.    screen is unusally long and sends a "continue" more prompt.
  59. 2  at "RST name?" prompt send turbo login sequence (including ";"):
  60.    firstname;lastname;password;!;d;fihub;/G^M
  61.      (where ^M is the <enter> or crlf character. this lets you login fast
  62.      using one line and command and log off after done!)
  63. 3  at the "fe64" or "*" zmodem prompt upload your node_id.rly packet
  64. 4  wait for download packet preparation or download zmodem prompt:
  65.    a "*" again or "dd38" and receive zmodem IN.RLY packet
  66. 5  Door drops DTR and logs you off, you execute local "hangup"
  67. 6  back up in.rly packet in comm dir and lastread.net file in pcrelay!
  68. 7  resume pcrelay batch file and issue "IMPORT" command.
  69.  
  70. ------------------------------------------------------------------------
  71.  
  72. Notes on TELIX script to dial into Freedom Infonet RBBS
  73. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  74.  
  75. Of the three scripts given here, FINET2.SLT works fine.  FINET1 works
  76. but is crude.  Neither of these check to see how long you have been
  77. connected on line in case something goes wrong.  FINET3.SLT works up to
  78. the point of receiving IN.RLY and needs to be fixed.  The rest of it
  79. works.  This approach places a timer limit on log in, upload time and
  80. download load, and so on, which can save phone bill in case something
  81. goes wrong.  If I could find someone interested in testing it, then I
  82. could finish it.  Feel free to finish or modify or adapt any of these.
  83.  
  84. These scripts assume that PCRELAY will delete IN.RLY from the Telix
  85. directly after import.  FINET2.SLT works.  Normal PCRELAY import
  86. operation always deletes the IN.RLY from the communications directory.
  87.  
  88. If your setup does not, then you will have to add a line to the batch
  89. file to do so, or the new IN.RLY will not be downloaded if the old
  90. IN.RLY is there.... You can always add a line before the download, to
  91. shell to dos and delete a file if it already exists, to help bullet
  92. proof the script.
  93.  
  94. The line to add early in the main script before dialing out! is
  95. observe case:
  96.  
  97.     dos("if exist c:\telix\IN.RLY del c:\telix\IN.RLY",0);
  98.  
  99. however, PCRELAY when successful, always deletes IN.RLY after export.
  100. this would be in case for some reason PCRELAY failed....
  101.  
  102. YOU CAN ALSO ADD SIMILAR LINES TO RENAME IN.RLY TO A BACKUP FILE IN.1
  103.  
  104.  
  105.      dos("if exist c:\telix\IN.RLY rename IN.RLY in.1",0);
  106.  
  107. Script source code needs to be compiled, since SALT is a language.
  108. With Telix' CS.EXE in your path or directory, type
  109.  
  110.      CS scriptname
  111.  
  112. If the script name is finet2.slt, the program will create finet2.slc.
  113.  
  114. ----
  115.  
  116.