home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1 / HamRadio.cdr / packet / bb211 / tips.doc < prev    next >
Text File  |  1991-03-05  |  4KB  |  141 lines

  1. Tips on operating the BBS
  2.  
  3.  
  4. Tying two BBS together by wire
  5. ------------------------------
  6.  
  7. Use the G8BPQ switch code and connect them using the BPQ NETROM
  8. port.  All you need is a null modem cable.
  9.  
  10.  
  11. Stop private bulletins
  12. ----------------------
  13.  
  14. By putting DENY_NEW_MSG in your action file, you can stop users from
  15. generating private bulletins.  Example:
  16.  
  17. DENY_NEW_MSG 1 @ USA & P
  18.  
  19. This prevents anyone from generating a private message to @ USA.
  20. Message 141 is generated (as signaled by the 1) and you can tailor this
  21. to help educate the user.
  22.  
  23.  
  24. Special menus for telephone callers
  25. -----------------------------------
  26.  
  27. Want special menus for telephone callers.  Use the alternate language
  28. feature and set NO_LANGUAGE_PROMPT to "Y" in PARMS.BB.  The user will
  29. then be given the default language of the port.  Example of the
  30. PARMS.BB settings.
  31.  
  32.    LANGUAGE_LIST = EM
  33.    NO_LANGUAGE_PROMPT = Y
  34.  
  35.    On modem port
  36.      DEFAULT_LANGUAGE = M
  37.  
  38. Messages in MESSAGE.BBM will be given to modem users.
  39.  
  40.  
  41. Getting rid of private bulletins
  42. --------------------------------
  43.  
  44. A reminder that you might not want to exclude private messages to SYSOP
  45. from using bulletin distributions.  KJ6YT @ KB6GFT uses the following in
  46. the ACTION.BB file:
  47.  
  48.       NOREJECT > SYSOP & P
  49.       REJECT > ALL* & P
  50.       REJECT @ ALL* & P
  51.       REJECT @ ALL* & T
  52.       REJECT > SALE & @ ALLUS
  53.       REJECT > 4SALE
  54.       REJECT > SALE & @ SOCAL
  55.       REJECT > WANT* & @ ALLUS
  56.       REJECT > WANT* & @ SOCAL
  57.  
  58.  
  59.       ; DENY MSG AREA
  60.  
  61.       NODENY_NEW_MSG > SYSOP & P
  62.       DENY_NEW_MSG 2 > SALE & @ ALLUS
  63.       DENY_NEW_MSG 2 > 4SALE
  64.       DENY_NEW_MSG 2 > SALE & @ SOCAL
  65.       DENY_NEW_MSG 2 > WANT* & @ ALLUS
  66.       DENY_NEW_MSG 2 > WANT* & @ SOCAL
  67.       DENY_NEW_MSG 3 > ALL* & P
  68.       DENY_NEW_MSG 4 @ ALL* & P
  69.       DENY_NEW_MSG 4 @ ALL* & T
  70.  
  71. The above will let it  accept  messages  "SP  SYSOP  @  ALLUS"  but  not
  72. messages "SP ALL @ ALLUS".
  73.  
  74.  
  75. See SYSOP messages as addressed to you
  76. --------------------------------------
  77.  
  78. One of the wish list items is to have messages addressed to SYSOP
  79. be handled exactly as if they were address to the bbs callsign.  Ed,
  80. W5TOO suggested the following from his ACTION.BB file:
  81.  
  82.    CHANGE_ADR > SYSOP & @ W5TOO => W5TOO @ NONE
  83.  
  84.  
  85. Limit a user to read only
  86. -------------------------
  87.  
  88. Do you a have a non-ham that you want to let read messages but not send
  89. one.  W5TOO suggests
  90.  
  91.   NODENY_NEW_MSG > W5TOO
  92.   DENY_NEW_MSG 9 < JOHN
  93.  
  94. where JOHN is the callsign that you assign the non-ham.  This limits him
  95. to sending messages to just W5TOO, the local SYSOP.  You could also
  96. use HOLD and review the message.
  97.  
  98. (Before someone jumps off the deep end, the non-ham would access the
  99. system via modem and not via radio!)
  100.  
  101.  
  102. Limit new users to read only except sending messages to SYSOP
  103. -------------------------------------------------------------
  104.  
  105. The following lines in your action file will inhibit new or unregistered
  106. users from entering messages except those addressed to you or to SYSOP
  107.  
  108. NODENY_NEW_MSG C U & P & > SYSOP
  109. NODENY_NEW_MSG C U & P & > AA4RE
  110. DENY_NEW_MSG 6 C U
  111.  
  112.  
  113. Need to test for an empty field?
  114. --------------------------------
  115.  
  116. One SYSOP asked how to test for an empty field.  @ NONE will actually
  117. test for "NONE" and not an empty field.  Try using the NOT symbol
  118. coupled for a test for something.  If you want to test for a blank
  119. TO BBS field, try:
  120.  
  121.        ^ @ =*
  122.  
  123. Note the use of =*.  = is any one character while * is anything and could
  124. be nothing.  Thats why ^ @ * won't work.
  125.  
  126.  
  127. BREAK=ON in CONFIG.SYS
  128. ----------------------
  129.  
  130. WB2WPA tells about setting this option in his \CONFIG.SYS file.  When
  131. BREAK=ON, the editor will not work correctly.  The Control-K-C will be
  132. interpreted as a break, and drop you back into DOS.
  133.  
  134.  
  135. Got a tip?
  136. ----------
  137.  
  138. Send it to AA4RE @ AA4RE for inclusion in the next release.
  139.  
  140.  
  141.