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

  1. Distribution lists is how you send a message to more than one mailbox.
  2. These are files of the type xxxx.DIS and reside in the messages
  3. subdirectory pointed to by PARMS.BB
  4.  
  5. As a message arrives, the ACTION.BB file is checked.  If needed, the
  6. distribution list name is changed from the default name of the @BBS.
  7. The a search is made of the message subdirectory for a file of format
  8. xxx.DIS unless the name from the action file contains a period..  If one
  9. is found then a distribution list will be used.
  10.  
  11. Format of xxxx.DIS file
  12.  
  13. call1a call1b
  14. call2a call2b
  15. etc
  16.  
  17. call1a is the routing code to use for sending a message.  This will show
  18. up in the "L" command list and will be matched against ROUTE.BB.
  19.  
  20. call1b is matched against the call of the station sending the message.
  21. If they match, then this distribution list item is marked as having
  22. already been forwarded to.  If call1b is missing, then call1a is used
  23. instead.  call1b can actually be a list of calls.
  24.  
  25. The .DIS file can also contain authorization lines.
  26.  
  27.    OK call1 call2 call3 ...
  28.  
  29. If the originating station is in this list then the distribution proceeds.
  30.  
  31.    NOT_OK call1 call2 call3...
  32.  
  33. If the originating station is NOT in this list then the distribution proceeds.
  34.  
  35. Multiple NOT_OK are permitted.  The actual call1 call2 etc are patterns (see
  36. WILDCARD.DOC)
  37.  
  38. Example:
  39.  
  40.     NOT_OK N7XXX
  41.     GILROY AA4RE
  42.     FRESNO K6RAU N6OA
  43.  
  44. In the last example, a message that arrives from either K6RAU or N6OA
  45. will be marked as having been forwarded to FRESNO.
  46.  
  47. More Examples:
  48.  
  49. ALLUS.DIS
  50. ---------
  51.  
  52. AA4RE
  53. WB9TPG
  54.  
  55. ROUTE.BB
  56. --------
  57.  
  58. AA4RE  KB7TV
  59. WB9TPG WB9TPG
  60.  
  61. Now SB ALL @ ALLUS.  Two copies will be sent.  One goes to AA4RE and one
  62. to WB9TPG.  These calls are looked up in the ROUTE.BB file.  It says
  63. AA4RE goes to KB7TV while WB9TPG goes to WB9TPG.  KB7TV and WB9TPG will
  64. be the calls used when looking in the PATH.BB.
  65.  
  66. So..  The @ BBS field points to the .DIS file.  The entries in .DIS point
  67. to the ROUTE.BB file and ROUTE.BB points to PATH.BB....
  68.  
  69. Sending BULLETINS to a single station
  70. -------------------------------------
  71.  
  72. If you are going to send bulletins to a single station, you should
  73. create a .DIS file anyway.  The benefits are that you will keep all
  74. messages after forwarding (even private) and that you will not send the
  75. station a bulletin if he sent it to you.
  76.  
  77. Sending Private mail First
  78. --------------------------
  79.  
  80.  
  81. What I have set up looks like
  82.  
  83. USA.DIS
  84. -------
  85.     GILROY WB6ZVW
  86.     FRESNO KE6BX
  87.  
  88. This sends a copy of anything @USA to GILROY and FRESNO.  If I receive the
  89. message from WB6ZVW then GILROY has already received a copy so I don't
  90. send one back.
  91.  
  92. ROUTE.BB
  93. --------
  94.     WB6ZVW WB6ZVW
  95.     KE6BX  KE6BX
  96.     GILROY WB6ZVW
  97.     FRESNO KE6BX
  98.  
  99. This says to send WB6ZVW and GILROY to WB6ZVW.  Things will forward in that
  100. order.  This way private messages (@ WB6ZVW) will go first before things
  101. addressed to @ USA
  102.