home *** CD-ROM | disk | FTP | other *** search
/ The Best of Windows 95.com 1996 September / WIN95_09961.iso / mailsrv / LSV95.ZIP / win95.z / SITE_DEFAULT.CFG < prev    next >
Text File  |  1995-04-03  |  5KB  |  93 lines

  1. **********************************************************************
  2. *                                                                    *
  3. * This is the SITE configuration file for LISTSERV. It serves two    *
  4. * purposes:                                                          *
  5. *                                                                    *
  6. * 1. Define a number of required configuration variables for which   *
  7. *    there is no sensible default. For instance, the password for    *
  8. *    list creation, or the preferred full name for the local host.   *
  9. *                                                                    *
  10. * 2. Allow you to override definitions made in the SYSTEM.CFG file.  *
  11. *    Variables which simply define textual information, such as host *
  12. *    names, passwords, names of contact persons, can be defined with *
  13. *    a statement of the form "name=value". Directories, however,     *
  14. *    must be defined with ".SD name path". When you use the .SD      *
  15. *    configuration statement, LISTSERV verifies the validity and     *
  16. *    existence of the directory, and converts any relative path to   *
  17. *    an absolute path to ensure proper operation.                    *
  18. *                                                                    *
  19. **********************************************************************
  20.  
  21. *
  22. * NODE is the full preferred Internet hostname for the machine on
  23. * which LISTSERV is running. For instance, NT.XYZ.EDU. There is no
  24. * default for this variable because WinSock only returns the first
  25. * token of the host name configured in the Networks applet of Control
  26. * Panel ("NT" in the previous example). LISTSERV needs the full
  27. * hostname.
  28. *
  29. * MYDOMAIN is a list of all the Internet hostnames which correspond to
  30. * the machine on which LISTSERV is running. In most cases, this will
  31. * be just %NODE%, but if you have CNAMEs or other aliases, you can
  32. * enter them here after %NODE%. Use a space and not a comma between
  33. * the various hostnames.
  34. *
  35. * LOCAL is a series of hostnames or wildcard patterns identifying
  36. * machines which are to be considered "local". Usually, this will be
  37. * a single wildcard like *.XYZ.EDU.
  38. *
  39. NODE=XXX.YYY.ZZZ
  40. MYDOMAIN=%NODE%
  41. LOCAL=*.YYY.ZZZ
  42.  
  43. *
  44. * SMTP_FORWARD is the Internet hostname of the server to which all
  45. * outgoing SMTP mail should be forwarded for delivery. This can be
  46. * any machine (and in particular any operating system) which supports
  47. * SMTP and whose SMTP implementation can handle your workload gracefully.
  48. *
  49. * You can choose to run the outgoing mail interface in either synchronous
  50. * or asynchronous mode. Synchronous mode uses the main (LSV.EXE) process
  51. * for the delivery. This may be preferable for small workloads, especially
  52. * if you don't have much memory on the machine. Synchronous mode is the
  53. * default, so you don't need to do anything to activate it. In asynchronous
  54. * mode, LISTSERV will create one or more subprocesses, called "SMTP workers",
  55. * to deliver the mail in parallel. This allows LISTSERV to work on new incoming
  56. * requests while the mail is being sent to the SMTP forward host. This also
  57. * allows you to spread the load among several delivery machines (for large
  58. * workloads), by configuring multiple SMTP workers and making them point to
  59. * different machines. To activate asynchronous mode, you must add a number of
  60. * SMTP_FORWARD_n variables, starting with SMTP_FORWARD_1. These variables have
  61. * the same meaning of SMTP_FORWARD and define the SMTP forwarded for worker
  62. * number 'n'. To create multiple workers pointing to the same machine, simply
  63. * add multiple SMTP_FORWARD_n variables with the same value. Note that you
  64. * must keep the plain SMTP_FORWARD variable at any rate. It is used as a fallback
  65. * if for any reason LISTSERV fails to activate the asynchronous interface.
  66. *
  67. SMTP_FORWARD=XXX.YYY.ZZZ
  68. *SMTP_FORWARD_1=%SMTP_FORWARD%
  69.  
  70. *
  71. * BITNET_ROUTE defines the hostname of a machine that knows how to route mail
  72. * to BITNET addresses. If your organization is connected to BITNET, you should
  73. * substitute the Internet address of the local BITNET hosts for optimal efficiency.
  74. * Otherwise, the default value is adequate for US sites.
  75. *
  76. BITNET_ROUTE=BITMAIL.LSOFT.COM
  77.  
  78. *
  79. * POSTMASTER is a blank separated list of RFC822 e-mail addresses
  80. * identifying the users who are to receive LISTSERV privileges.
  81. *
  82. POSTMASTER=Administrator@%NODE%
  83.  
  84. *
  85. * CREATEPW is the list creation password, which POSTMASTER users need
  86. * to specify in order to create lists using the mail interface. This
  87. * password can also be used to validate a number of "weak" privileged
  88. * commands. STOREPW is a secondary password that, in the Windows
  89. * implementation, is functionally identical to CREATEPW. You should
  90. * probably use the same value for both passwords.
  91. *
  92. CREATEPW=XXXXXXXX
  93. STOREPW=%CREATEPW%