home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / GM-20.ZIP / FD-SETUP.ZIP / FDNODE.CTL < prev    next >
Encoding:
Text File  |  1995-06-21  |  6.4 KB  |  144 lines

  1. ;
  2. ;  Sample FrontDoor 1.99c Nodelist control file (FDNODE.CTL)
  3. ;
  4. ;  This file should be placed in the NODELIST directory. If you haven't
  5. ;  specified a nodelist directory in SETUP, you should put this file in
  6. ;  the SYSTEM directory. Text behind a semi-colon (;) is ignored. All
  7. ;  commands are treated without regards to case.
  8. ;
  9. ;  Last revised: March 6 1990
  10. ;
  11. ;  ---------------------------------------------------------------------
  12. ;  PVTLIST defines an optional nodelist. It can be a private network or
  13. ;  Egglist, Anetlist, Signodes, etc. etc. Do NOT put the normal nodelist
  14. ;  in a pvtlist statement. That will cause duplicate net/node numbers.
  15. ;
  16. ;  PVTLIST <filename> [zone]
  17. ;
  18. ;  The zone specification is only valid for the first pvtlist entry. All
  19. ;  the other files have to contain a valid 'Zone' keyword.
  20. ;
  21. ;PVTLIST c:\fd\nodelist\30006.net 2        ; A special network in zone 2
  22. ;PVTLIST c:\fd\nodelist\anetlist.*         ; AlterNet
  23. ;PVTLIST c:\fd\nodelist\netlist.*          ; The Network
  24. ;PVTLIST c:\fd\nodelist\egglist.*          ; EggNet
  25. ;PVTLIST c:\fd\nodelist\signodes.*         ; SIGNet
  26. ;PVTLIST c:\fd\nodelist\bbsnet.*           ; BBSNet
  27. ;
  28. ;  ---------------------------------------------------------------------
  29. ;  POINTLIST allows you to add points to your nodelist database. The
  30. ;  optional BOSS address is required if the file doesn't contain a BOSS
  31. ;  entry and should not be specified if the file contains a BOSS entry.
  32. ;
  33. ;  If you only have one file with point entries, you can use FDPOINT.PVT.
  34. ;  FDNC will automatically use it if it's found in the NODELIST directory.
  35. ;  Note that if you use one or more POINTLIST statements, FDNC will merge
  36. ;  all specified files into FDPOINT.PVT, overwriting its contents. A 
  37. ;  separate chapter in the documentation discusses the point concept.
  38. ;
  39. POINTLIST c:\fd\scott.pts 1:135/990
  40. POINTLIST c:\fd\mike.pts 1:135/4
  41. POINTLIST c:\fd\bruce.pct 1:170/400
  42. ;
  43. ;  ---------------------------------------------------------------------
  44. ;  PHONE allows you to override a system's phone number. It can be used
  45. ;  to make PVT (Private, Unpublished) listed systems published (such as
  46. ;  special echomail feeds, etc.) or to override the phone number listed
  47. ;  in the nodelist. The specified telephone number should be in RAW,
  48. ;  (untranslated) format. If you use the PHONE statement to change the
  49. ;  telephone number for a system, FDNC will remove HOLD and/or DOWN
  50. ;  status from that system (if it was present).
  51. ;
  52. ;   PHONE <zz:nn/nn.pp> <number>
  53. ;
  54. PHONE 1:203/481 481-9481
  55. PHONE 1:203/996 364-1826
  56. PHONE 1:203/0   739-8386
  57. phone 1:203/300 739-6323
  58. PHONE 1:203/42  739-8386
  59. PHONE 1:203/25  1-791-4298
  60. PHONE 1:203/39  362-1755
  61. PHONE 1:203/23  338-5227
  62. phone 1:203/900 338-5227
  63. PHONE 1:203/600 362-1755 
  64. ;  ---------------------------------------------------------------------
  65. ;  USE ZONE allows you to specify which zones you want FDNC to include
  66. ;  in your userlist and node index. The default is to include ALL found
  67. ;  zones.
  68. ;
  69. USE ZONE 1
  70. ;
  71. ;  ---------------------------------------------------------------------
  72. ;  MODEM allows you to send strings to the modem depending on the node-
  73. ;  list data for the system FD (the mailer) is calling. You can use most
  74. ;  nodelist flags as well as explicit node numbers. The below listed
  75. ;  example is for a US Robotics HST dual standard modem.
  76. ;
  77. ;  If the system has the PEP flag, AT&M0X4| will be sent. The V32 flag is
  78. ;  listed after the PEP flag because some PEP modems handles V32 as well
  79. ;  in which case we'd want a V32 connection. The HST flag is listed last
  80. ;  because if the system is using an HST DS (HST/V32), we want to use
  81. ;  the HST mode.
  82. ;
  83. MODEM
  84.    PEP           AT&M0X4|       ; Disable VOICE recognizition for PEP systems
  85.    V32           AT&M5B0|       ; Enable ARQ connects with V32 systems
  86.    HST           AT&M5B1|       ; Force ARQ connects with HST systems
  87.    1:1/101       ATM1|          ; Enable speaker when calling FrontDoor Help
  88. END
  89. ;
  90. ;  ---------------------------------------------------------------------
  91. ;  SWEPULSE was added to handle the somewhat screwed up method Swedish
  92. ;  exchanges handles pulse dialing. Most modem manufacturers uses the 
  93. ;  British standard for pulse dialing, which is not compatible with Swedish
  94. ;  pulse dialing. If you use SWEPULSE in FDNODE.CTL, telephone numbers will
  95. ;  be properly translated. Do NOT use this command unless you live in Sweden
  96. ;  and have to use pulse dialing.
  97. ;
  98. ; SWEPULSE
  99. ;
  100. ;  ---------------------------------------------------------------------
  101. ;  DIAL <NATL PREFIX>/<SUFFIX> <INTL PREFIX>/<SUFFIX>
  102. ;
  103. ;  Indicates the start of the dial translation table. All four parameters
  104. ;  are optional and are only used if no other translation applies for a 
  105. ;  telephone number.
  106. ;
  107. ;  If you only want to use a national (NATL) prefix/suffix, you must
  108. ;  specify the / character for the international (INTL) prefix/suffix to
  109. ;  indicate no special treatment. The same applies if you only want to use
  110. ;  an INTL prefix/suffix.
  111. ;
  112. ;  If you need to strip the search value from a number, you don't have to
  113. ;  put anything after it. In other words, if you need to strip 1-305-596
  114. ;  from all number, you enter that string with no translation. Comments are
  115. ;  ignored and must be preceded by a semicolon.
  116. ;
  117. ;  The translation values (strings) doesn't have to contain numerical
  118. ;  characters (0-9,.-). They can include commands such as "S25=100" etc. as
  119. ;  long as your modem supports it.
  120. ;
  121.  
  122. ;  ---------------------------------------------------------------------
  123. ;  COST <NATL COST> <INTL COST> [BAUD RATE]
  124. ;
  125. ;  Indicates the start of the cost table. The two (default) parameters are
  126. ;  NOT optional. The default cost only applies to numbers with no matching
  127. ;  entry in the cost table.
  128. ;
  129. ;  An additional parameter can be added after the cost for a number entry
  130. ;  indicating the maximum baud rate used. This is useful when calling
  131. ;  locations with a lot of line noise etc. Please note that this doesn't 
  132. ;  work with several high-speed modems such as the US Robotics HST. You 
  133. ;  can't force a HST modem to connect at 2400 with another HST modem by
  134. ;  changing the baud rate.
  135. ;
  136. ;  Note: You should *only* list those areacodes/exchanges that you don't
  137. ;  want to give the default cost.
  138. ;
  139. ;COST 25 150                       ; Default: 25 cents for domestic calls
  140. ;                                  ; Default: 150 cents for international ;calls
  141. ;
  142. ; Local (to me) numbers
  143. ;
  144.