home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / gigop806.zip / USERS.FAQ < prev    next >
Text File  |  1994-05-24  |  4KB  |  103 lines

  1. Q:  What are the different options for USER and SITE statements?
  2.  
  3. A: ..
  4.  
  5. User statements can define individual users, such as
  6.   USER richard.bollar     1:125/110       Richard Bollar
  7.   USER bollar             1:125/110       Richard Bollar
  8. or 
  9.   USER jdoe@somebbs.swizzle.com    1:125/1234.0  John Doe
  10.  
  11.  
  12. User statements can be used to return informative files to people automaticly.
  13.   USER info@swizzle.com  INFO  infofile.txt
  14.  
  15.  
  16. User statements can be used to stop fidonet people from using your gate;
  17.   USER bounce    1:2/3.4       User Name
  18.   USER bounce    1:203/7707.1  Twit
  19.  
  20. User statements can be used to stop mail from the internet to a specific
  21. address (ie, the user died, etc)
  22.   USER deadperson   BOUNCE
  23.   USER deadperson2  BOUNCE deaduser.txt ;shows specified file instead of default
  24.  
  25. User statements can forward mail to another site or account for you.
  26.   USER oldaddresss FORWARD  newaddress
  27.   USER arcmail     FORWARD null ; Any bounced messages back to Arcmail are disposed of.
  28.  
  29. User statements can used to receive text files and save them to a single
  30. large log file, or to individual files, without being split or anything 
  31. of that nature.
  32.   USER incoming  SAVETEXT  c:\dirname\   ; Saves as c:\dirname\*.in files
  33.   USER logme     LOGTEXT   c:\gateway\logme.log ; Appends to logme.log
  34.  
  35.  
  36. Q:  What can I do with SITE statements?
  37.  
  38. You can define _your_ site's fidonet address(s)
  39.   SITE LOCAL  1:125/110
  40. ; SITE LOCAL  127:1/1
  41.  
  42. You can define a name for the systems that you are gating for.
  43.   SITE joesbbs 1:125/1      ; user.name@joesbbs.swizzle.com
  44.   SITE nc      1:125/0      ; user.name@nc.swizzle.com
  45.   SITE mypoint 1:125/110.1  ; user.name@mypoint.swizzle.com
  46.   SITE somewhr 1:125/120    ; user.name@somewhr.swizzle.com
  47.  
  48. You can deny a BBS by giving it the name "bounce".
  49.  
  50.   SITE bounce  1:203/7707.1 ; This stops Jason Fesler's point address.
  51.   SITE bounce  1:125/9999   ; This stops "test" nodes using 1:125/9999
  52.  
  53. You can openly gate for all systems, assigning them temporary site names
  54. at the time of gating.  Their site names will always directly correlate
  55. with their ftn address.
  56.  
  57.   SITE gateway 1:125/*.*   ;  Either of these statements are equivalent
  58.   ;SITE *ftn    1:125/*.*  ;  (and in fact, SITE GATEWAY translates to *ftn)
  59.  
  60. ;  With this statement, if Joe Blow at 1:125/1234 posts a message, his
  61. ;  email address will be Joe.Blow@1234.swizzle.com.
  62.  
  63. ;  If Joe Blow posts from 1:125/1234.5, then his email address will be
  64. ;  Joe.Blow@125-1234-5.swizzle.com .
  65.  
  66. ;  It looks confusing, but it's simpler than it looks.  The gateway includes
  67. ;  just enough information in the numeric portion of the address to figure
  68. ;  out where to send it back to if it needs to.
  69. ;       Nodes in your net:    user.name@<node>.swizzle.com
  70. ;       Nodes outside....:    user.name@<net>-<node>.swizzle.com
  71. ;       Points           :    user.name@<net>-<node>-<point>.swizzle.com
  72. ;       Outsize your zone:    user.name@<zone>-<net>-<node>-<point>.swizzle.com
  73. ;
  74. ;  You may specify multiple SITE GATEWAY .. statements if you wish to
  75. ;  use this addressing style for more than one group of people.
  76. ;  The Net 203 Gateway (wmeonlin.sacbbx.com) uses this format for
  77. ;  the entire Northern California (USA) region, since I can deliver the mail
  78. ;  faster than using the "standard" fidonet address.
  79.  
  80.  
  81. You can also define the older style addresses, ie for .fidonet.org .
  82.  
  83.  
  84. ; The next statement is to allow gating, but using the "standard" fidonet
  85. ; address.  Use this for people that are outside of the area that you are
  86. ; normally willing to gate for.
  87. ;
  88. ; Note that we can specify the actual .fidonet.org name, or specify
  89. ; an alternate name ( rbbsnet.org ? etc ).  Note that the SITE fidonet keyword
  90. ; implies the fidonet STYLE that has been used for many years...
  91.  
  92. SITE fidonet  1:*/*.*  fidonet.org ; can also use SITE *user@*fnz.fidonet.org 1:*/*
  93. SITE fidonet  2:*/*.*  fidonet.org ; can also use SITE *user@*fnz.fidonet.org 2:*/*
  94. SITE fidonet  3:*/*.*  fidonet.org ; can also use SITE *user@*fnz.fidonet.org 3:*/*
  95. SITE fidonet  4:*/*.*  fidonet.org ; can also use SITE *user@*fnz.fidonet.org 4:*/*
  96. SITE fidonet  5:*/*.*  fidonet.org ; can also use SITE *user@*fnz.fidonet.org 5:*/*
  97. SITE fidonet  6:*/*.*  fidonet.org ; can also use SITE *user@*fnz.fidonet.org 6:*/*
  98. SITE fidonet  8:*/*.*  special.org ; can also use SITE *user@*fnz.special.org 6:*/*
  99.  
  100.  
  101.  
  102.  
  103.