home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / DOS / Pub_elec / TGFAQ43.ZIP / FAQ1.TXT < prev    next >
Encoding:
Text File  |  1996-07-24  |  5.5 KB  |  203 lines

  1. Hello all!
  2. In reference to several queries on how to setup TG 3.00, I have put
  3. together a simple help file.  It contains examples of some ways to do
  4. things for a simple, single node system mostly.  In order to make it easier to
  5. follow, I have used 'generic conventional' names and paths through out the
  6. FAQ.  You do NOT need to use the same ones, and for added security you SHOULD
  7. change them.  You will find a general reference to the names used, at the end.
  8.  
  9. The softwares used are primarily FrontDoor version 2.12/sw, DOS version 5.0,
  10. and Telegard (current version 3.0 at this moment).  If you have a 14.4
  11. modem and desire to run FD 2.02, you will need to edit the 'FRODO.BAT' file
  12. to remove the baud rates the earlier version did not support, and add the
  13. baud rate 600 if desired.  If you have a 28.8 or better modem, you will
  14. need to upgrade to FD2.12 to support it properly.  While FD is the primary
  15. one dealt with here it probably isn't that radically different in concept for
  16. other front end softwares.
  17.  
  18. FD has two methods of passing the baud rate.  This FAQ shows the errorlevel
  19. method all in one batch file.  The next one will show another method.
  20.  
  21.       1.  Go into FD config, and make sure you have assigned a number to
  22.       each baud rate connecting to your system.  Use the same numbers I
  23.       have below in the 'frodo.bat' file if you wish or swap them to others
  24.       and match them in the 'frodo.bat' file to the new ones.  It will be
  25.       easier and safe to use the ones I post.
  26.  
  27.       2.  Add the following to your 'frodo.bat' file or just replace your
  28.       old one with this example then add in what you need for your setup.
  29.  
  30. ;---- begin FRODO.BAT----
  31. @Echo off
  32. c:
  33. cd \fd
  34. :Start
  35.  
  36.    Cd\fd
  37. fd
  38.    If ERRORLEVEL 253 Goto Mail_Out
  39.    If ERRORLEVEL 252 Goto Make_Node
  40.    If ERRORLEVEL 200 Goto FB100
  41.    If ERRORLEVEL 046 Goto 2880_Baud
  42.    If ERRORLEVEL 045 Goto 2640_Baud
  43.    If ERRORLEVEL 044 Goto 24000_Baud
  44.    If ERRORLEVEL 043 Goto 2160_Baud
  45.    If ERRORLEVEL 042 Goto 1920_Baud
  46.    If ERRORLEVEL 041 Goto 1680_Baud
  47.    If ERRORLEVEL 040 Goto 1440_Baud
  48.    If ERRORLEVEL 039 Goto 12_Baud
  49.    If ERRORLEVEL 038 Goto 9600_Baud
  50.    If ERRORLEVEL 037 Goto 7200_baud
  51.    If ERRORLEVEL 036 Goto 4800_baud
  52.    If ERRORLEVEL 035 Goto 2400_Baud
  53.    If ERRORLEVEL 034 Goto 1275_baud
  54.    If ERRORLEVEL 033 Goto 1200_Baud
  55.    If ERRORLEVEL 032 Goto 300_Baud
  56.  
  57. Goto end
  58.  
  59. :Mail_Out     ; Gecho 1.11+ specific, adapt as needed!
  60. c:            ; other examples for other tossers later in
  61. cd c:\fd      ; FAQ
  62. AT H1 1
  63. GEcho toss -NOMGR
  64. GEcho scan
  65. GEcho MGR
  66. MBUTIL pack -renumber -link -purge
  67. Goto Start
  68.  
  69. :Make_Node
  70. If Exist c:\fd\file\nodediff.* Goto Node_Here
  71. Goto Start
  72.  
  73. :Node_Here
  74. Copy c:\fd\file\nodediff.* c:\fd\nodelist
  75. cd c:\fd\nodelist
  76. editnl 
  77. cd c:\fd
  78. fdnc /f
  79. Goto Start
  80.  
  81. :FB100        ;external event in FD to do 'stuff' as needed
  82. CD \tg\FFS    ;for online games and other items needed nightly
  83. FISHMANT      ; specific to FFS online game
  84. CD \FD
  85. mbutil pack -renumber -link -purge
  86. cd \tg
  87. INDEX SORT ALL      ;TG Maintenance
  88. INDEX BUILD ALL     ;TG Maintenance
  89. cd \fd
  90. call tickout.bat    ;Tosses filebone. See FAQ #3 for example of it
  91. Goto Start
  92.  
  93. :2880_baud       ;here begins the connection sequence
  94. cd \tg
  95. Telegard -b28800 -q
  96. Goto Mail_test
  97.  
  98. :2640_baud
  99. cd \tg
  100. Telegard -b26400 -q
  101. Goto Mail_test
  102.  
  103. :24000_baud
  104. cd \tg
  105. Telegard -b24000 -q
  106. Goto Mail_test
  107.  
  108. :2160_Baud
  109. cd \tg
  110. Telegard -b21600 -q
  111. Goto Mail_test
  112.  
  113. :1920_Baud
  114. cd \tg
  115. telegard -b19200 -q
  116. Goto Mail_Test
  117.  
  118. :1680_Baud
  119. cd \tg
  120. Telegard -b16800 -q
  121. Goto Mail_Test
  122.  
  123. :1440_Baud
  124. cd \tg
  125. Telegard -b14400 -q
  126. goto mail_test
  127.  
  128. :12_Baud
  129. cd \tg
  130. Telegard -b12000 -q
  131. Goto Mail_test
  132.  
  133. :9600_Baud
  134. cd \tg
  135. telegard -b9600 -q
  136. Goto Mail_Test
  137.  
  138. :7200_Baud
  139. cd \tg
  140. Telegard -b7200 -q
  141. Goto Mail_Test
  142.  
  143. :4800_baud
  144. cd \tg
  145. Telegard -b4800 -q
  146. Goto Mail_Test
  147.  
  148. :2400_Baud
  149. cd \tg
  150. telegard -b2400 -q
  151. Goto Mail_Test
  152.  
  153. :1275_Baud
  154. cd \tg
  155. Telegard -b1275 -q
  156. Goto mail_test
  157.  
  158. :1200_Baud
  159. cd \tg
  160. telegard -b1200 -q
  161. Goto Mail_Test
  162.  
  163. :300_Baud
  164. cd \tg
  165. telegard -b300 -q
  166. Goto Mail_Test
  167.  
  168. :Mail_Test
  169. If NOT Exist c:\TG\ECHOMAIL.TG# goto Start
  170. del c:\TG\ECHOMAIL.TG#
  171. Goto Mail_Out
  172.                              ; note TG# means TGJ for Jam or TGS for Squish
  173.  
  174.  
  175. :End          
  176. ---end FRODO.BAT----
  177.  
  178. Now that was a big 'frodo.bat' file.  The other method is shorter and
  179. involves replacable parameters direct via FD.  I'll show it next FAQ.
  180.  
  181. For informational purposes, here is a rundown of some of the lines you may not
  182. be familiar with:
  183.   AT H1 1 -  This is a common software which is called AT.COM and manipulates
  184.   your modem.  In this case, it is taking a modem on Com1, offline.  Depending
  185.   on your modem brand, you may not need an extra utility to do this.  Both FD
  186.   and TG have the capability of taking the modem offline for you.  It is there
  187.   only for assistance of those sysops who's modems wont stay offline with FD's
  188.   codes.
  189.  
  190.   EDITNL - This is one of the many nodediff merging softwares on the market.
  191.   Depending on your version, the addition of the /KILL switch, will also
  192.   delete the old nodediffs.  It was included only as an example, and you
  193.   should use whatever you find at a local dial.  Mergenl is widely available
  194.   and does the same thing.
  195.  
  196.   MBUTIL - Gecho specific packer for message bases.  See the 3rd FAQ for other
  197.   examples of tossing/packing sequences you may use for your needs.
  198.  
  199. End part 1.
  200.                                  xxcarol
  201.                                  TGbeta Norfolk
  202.  
  203.