home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / MISC / BOUNCEB1.ZIP / BOUNCER.CFG < prev    next >
Text File  |  1996-11-11  |  5KB  |  138 lines

  1. '                   BOUNCER v1.0 Config File
  2.  
  3.  
  4. 'The BBSNAME variable will tell the door your BBS's name.
  5. BBSNAME=Shoe Salt
  6.  
  7. 'The SYSOPF variable tells the door the sysop's first name.
  8. SYSOPF=David
  9.  
  10. 'The SYSOPL variable tells the door the sysop's last name.
  11. SYSOPL=Kiesling
  12.  
  13. 'The REGCODE variable contains your registration code, when registered.
  14. REGCODE=0
  15.  
  16. 'The DOORFILE variable tells the door the name of the door file your system
  17. 'uses and where it is located.  It can contain a drive and path.  The
  18. 'current BBS door files supported are:
  19. '
  20. '  PCBOARD.SYS  - PCBoard version 12 and 14.x or above
  21. '  USERS.SYS    - PCBoard verion 15.x
  22. '  CALLINFO.BBS - Wildcat version 2.x
  23. '  DOOR.SYS     - GAP any version or Wildcat 3.x
  24. '  DORINFO#.DEF - RBBS and QBBS systems
  25. '  CHAIN.TXT    - WWIV version 2.x or above
  26. '  UBBS.SYS     - Ultra BBS systems
  27. '  SFDOORS.DAT  - SpitFire systems
  28. '  AUNTIE.SYS   - Auntie BBS systems
  29. '  TRIBBS.SYS   - Tri-BBS systems
  30. '  STANDARD.SYS - Standard Drop file format... read docs for details.
  31. '  DIRECT       - Will get all info from modem and user.
  32. '
  33. 'CAUTION: If you are restricting access by either age or security level,
  34. 'only the dropfiles DOOR.SYS, CALLINFO.BBS, and TRIBBS.SYS will work.
  35. 'DOUBLE-CAUTION: Enter the dropfile on both lines below. It's hard to
  36. 'explain why, but you need to do it.
  37. DOORFILE=C:\NODE2\DOOR.SYS
  38. DROPFILE=C:\NODE2\DOOR.SYS
  39.  
  40. 'The FOSSIL variable tells the doors whether you are using a Fossil
  41. 'driver like X00 or BNU. This variable can be set to either YES or NO.
  42. 'The Default is NO.
  43. FOSSIL=NO
  44.  
  45. 'The COMPORT variable tells the door which COM port to use for I/O functions
  46. 'to occur.  This variable can be a number from 1 to 8.  With multiple lines,
  47. 'you can setup different CFG files for each line with a separate comport
  48. 'number.  If using a non-standard port address, use H in front of the address
  49. 'and the number should be in hexadecimal (eg: COMPORT=H03F8).
  50. 'This MUST be set if you are having trouble with your comport being read from
  51. 'the door file. Otherwise, it can be left out unless your dropfile doesn't
  52. 'give the information on comport number.
  53. 'COMPORT=2
  54.  
  55. 'The IRQ variable tells the door what IRQ to use if non-standard.  This does
  56. 'not have to be set if a standard comport is being used.
  57. 'IRQ=3
  58.  
  59. -----------------------------------------------------------------------------
  60.  
  61. 'These variables tell the program which checks to make. It can restrict
  62. 'access based on name, age, security level, time of day, and a password,
  63. 'but only for the ones that you mark an "ON" for here. Put "OFF" for the
  64. 'ones you wish to disable.
  65. NAME_CHECK=OFF
  66. AGE_CHECK=OFF
  67. SECURITY_LEVEL_CHECK=OFF
  68. TIME_CHECK=OFF
  69. PASSWORD_CHECK=OFF
  70.  
  71.  
  72. 'The NAMELIST variable specifies whether the names listed in the file
  73. 'names.lst should be locked out, or if they should be the only people
  74. 'allowed to enter. If NAMELIST=BAD, they will be locked out, and if
  75. 'NAMELIST=GOOD, they will be the only people allowed in. If a user fails
  76. 'the name check, name.ans or name.bbs will be displayed (depending on if
  77. 'the caller has ANSI enabled or not).
  78. NAME_LIST_TYPE=BAD
  79.  
  80. 'The NAME_HALT variable controls whether it will do a short delay at the
  81. 'end of name.ans or name.bbs, or whether it will prompt the user to press
  82. 'a key. DELAY will have it delay and PROMPT will have it prompt. If you
  83. 'enter DELAY, then NAME_DELAY specifies how many seconds you wish to delay
  84. 'after displaying the screen.
  85. NAME_HALT=DELAY
  86. NAME_DELAY=4
  87.  
  88. 'The AGE variable specifies the minimum age a user must be in order to
  89. 'enter this door. 
  90. AGE=18
  91.  
  92. 'The AGE_HALT and AGE_DELAY variables work just like NAMEHALT and NAME_DELAY.
  93. 'It will either delay or prompt after age.ans or age.bbs is displayed,
  94. 'when the user is too young to enter.
  95. AGE_HALT=DELAY
  96. AGE_DELAY=4
  97.  
  98. 'The LEVEL variable specifies the minimum security level a user must
  99. 'have to access the door.
  100. LEVEL=50
  101.  
  102. 'The LEVEL_HALT and LEVEL_DELAY variables work just like NAME_HALT and
  103. 'NAME_DELAY. It will either delay or prompt after level.ans or level.bbs
  104. 'is displayed, when the user's security level is too low.
  105. LEVEL_HALT=DELAY
  106. LEVEL_DELAY=4
  107.  
  108. 'You may wish to have a time during the day when no users may enter this
  109. 'door. The CLOSE_TIME variable states the closing time of the door, and
  110. 'the OPEN_TIME variable states when the door will be open again. Making
  111. 'these variables the same thing will disable the option. The times are
  112. 'in the 24-hour clock.
  113. CLOSE_TIME=18:00
  114. OPEN_TIME=22:00
  115.  
  116. 'The TIME_HALT and TIME_DELAY variables work just like NAME_HALT and
  117. 'NAME_DELAY. It will either delay or prompt after time.ans or time.bbs is
  118. 'displayed, when the door is not open during this time.
  119. TIME_HALT=DELAY
  120. TIME_DELAY=4
  121.  
  122. 'The PWD variable defines a password that anyone must enter in order to
  123. 'be allowed into the door.
  124. PASSWORD=dookie
  125.  
  126. 'The PWD_HALT and PWD_DELAY variables work just like NAME_HALT and
  127. 'NAME_DELAY. It will either delay or prompt after password.ans or
  128. 'password.bbs is displayed, when the user has failed the password check.
  129. PWD_HALT=DELAY
  130. PWD_DELAY=4
  131.  
  132. 'The ERROR_HALT and ERROR_DELAY variables work just like NAME_HALT and
  133. 'NAME_DELAY. It will either delay or prompt after a fatal error message is
  134. 'shown. Error messages can occur if you made an error here in the config
  135. 'file, if no config file is specified, and many other possible reasons.
  136. ERROR_HALT=DELAY
  137. ERROR_DELAY=4
  138.