mhonarc-commits
[Top] [All Lists]

CVS: mharc/lib config.sh.dist,1.18,1.19

2003-08-09 11:06:22
Update of /cvsroot/mhonarc/mharc/lib
In directory subversions:/tmp/cvs-serv22760

Modified Files:
	config.sh.dist 
Log Message:
Added more explantory comments.


Index: config.sh.dist
===================================================================
RCS file: /cvsroot/mhonarc/mharc/lib/config.sh.dist,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** config.sh.dist	1 Oct 2002 22:45:50 -0000	1.18
--- config.sh.dist	9 Aug 2003 18:04:08 -0000	1.19
***************
*** 29,32 ****
--- 29,36 ----
  # The reference to LOGNAME is an environment variable normally defined
  # by the system to represent the username.
+ #
+ #   NOTE: If your environment does not define LOGNAME, make sure
+ #	  to replace the variable with an appropriate value.
+ #
  ORGMAIL=/var/spool/mail/$LOGNAME
  
***************
*** 35,39 ****
  IS_MAIL_SPOOL=1
  
! # Root URL to mail archives.
  ROOT_URL=
  
--- 39,49 ----
  IS_MAIL_SPOOL=1
  
! # Root URL to mail archives.  This variable should represent what
! # root URL path will be for web browsers to access your archives.
! # The *_URL variables below are, by default, based upon this variable.
! #
! #   NOTE: For portability, it is best to exclude the server name
! #	  portion of the URL and only the path component.
! #
  ROOT_URL=
  
***************
*** 73,83 ****
  MHA_RC=$SW_ROOT/lib/common.mrc
  
! # Pathname of archive lists index page.
  ALL_LISTS_FILE=$HTML_DIR/lists.html
  
! # Pathname of header template for archive lists index page.
  ALL_LISTS_HEADER=$HTML_DIR/.PNM.all-head
  
! # Pathname of footer template for archive lists index page.
  ALL_LISTS_FOOTER=$HTML_DIR/.PNM.all-foot
  
--- 83,98 ----
  MHA_RC=$SW_ROOT/lib/common.mrc
  
! # Pathname of archive lists index page.  This page provides a list
! # of all archives available.
  ALL_LISTS_FILE=$HTML_DIR/lists.html
  
! # Pathname of header template for archive lists index page.  The
! # header template defines the markup that should occur before the
! # all archive listing.
  ALL_LISTS_HEADER=$HTML_DIR/.PNM.all-head
  
! # Pathname of footer template for archive lists index page.  The
! # footer template defines the markup that should occur after the
! # all archive listing.
  ALL_LISTS_FOOTER=$HTML_DIR/.PNM.all-foot
  
***************
*** 105,121 ****
  SEARCH_CGI=$ROOT_URL/cgi-bin/namazu.cgi
  
! # URL to mbox archives
  MBOX_URL=$ROOT_URL/mbox
  
! # URL to html archives
  HTML_URL=$ROOT_URL/html
  
  # Base URL containing informational pages about each list archive.
  INFO_URL=$ROOT_URL/info
  
! # URL providing list of all archives
  ALL_LISTS_URL=$HTML_URL
  
! # URL to CGI programs
  CGI_URL=$ROOT_URL/cgi-bin
  
--- 120,142 ----
  SEARCH_CGI=$ROOT_URL/cgi-bin/namazu.cgi
  
! # URL to mbox archives.  This should be a URL that would access the
! # the filesystem location defined by MBOX_DIR.
  MBOX_URL=$ROOT_URL/mbox
  
! # URL to html archives.  This should be a URL that would access the
! # the filesystem location defined by HTML_DIR.
  HTML_URL=$ROOT_URL/html
  
  # Base URL containing informational pages about each list archive.
+ # This should be a URL that would access the the filesystem location
+ # defined by INFO_DIR.
  INFO_URL=$ROOT_URL/info
  
! # URL providing list of all archives.  This URL would provide the
! # user a listing of all the archives available.
  ALL_LISTS_URL=$HTML_URL
  
! # URL to CGI programs This should be a URL that would access the the
! # filesystem location defined by CGI_DIR.
  CGI_URL=$ROOT_URL/cgi-bin
  
***************
*** 129,133 ****
  MESG_CGI=$CGI_URL/mesg.cgi
  
! # Pathname to procmail program
  PROCMAIL=procmail
  
--- 150,155 ----
  MESG_CGI=$CGI_URL/mesg.cgi
  
! # Pathname to procmail program.  If procmail is not in your normal
! # search path, change this to the absolate pathname to the program.
  PROCMAIL=procmail
  
***************
*** 135,145 ****
  PROCMAIL_PATH=$SW_ROOT/bin:/usr/local/bin:/bin:/usr/bin
  
! # Pathname to formail program
  FORMAIL=formail
  
! # Pathname to lockfile program
  LOCKFILE=lockfile
  
! # Pathname to mknmz program
  MKNMZ=mknmz
  
--- 157,170 ----
  PROCMAIL_PATH=$SW_ROOT/bin:/usr/local/bin:/bin:/usr/bin
  
! # Pathname to formail program.  If formail is not in your normal
! # search path, change this to the absolate pathname to the program.
  FORMAIL=formail
  
! # Pathname to lockfile program.  If lockfile is not in your normal
! # search path, change this to the absolate pathname to the program.
  LOCKFILE=lockfile
  
! # Pathname to mknmz program.  If mknmz is not in your normal
! # search path, change this to the absolate pathname to the program.
  MKNMZ=mknmz
  
***************
*** 160,173 ****
  
  # Address to receive all unmatched messages.  If this variable
! # is defined, the "catch" archive will be disabled.
  #CATCH_ADDRESS=
  
  # Name of the "catch" archive: Uncomment and change to desired
  # value.  Note, value should start with a "." for searching to
! # be disabled.
  #CATCH_ARCHIVE=.catch
  
  # Disable catch archive: Uncomment and change value to 1 if you
! # do not want a catch archive.
  #DISABLE_CATCH_ARCHIVE=0
  
--- 185,202 ----
  
  # Address to receive all unmatched messages.  If this variable
! # is defined, the "catch" archive will be disabled and all
! # messages that do not match an archive will be forward to $CATCH_ADDRESS.
  #CATCH_ADDRESS=
  
  # Name of the "catch" archive: Uncomment and change to desired
  # value.  Note, value should start with a "." for searching to
! # be automatically disabled.
  #CATCH_ARCHIVE=.catch
  
  # Disable catch archive: Uncomment and change value to 1 if you
! # do not want a catch archive.  If CATCH_ADDRESS is defined, this
! # variable has no effect.  However, if CATCH_ADDRESS is blank and
! # you disable the catch archive, all unmatched messages will be quietly
! # dropped.
  #DISABLE_CATCH_ARCHIVE=0
  
***************
*** 181,185 ****
  
  # Maximum size, in bytes, of msgid cache for detecting duplicate
! # messages.
  #MSGID_CACHE_SIZE=16384
  
--- 210,216 ----
  
  # Maximum size, in bytes, of msgid cache for detecting duplicate
! # messages.  The larger of volume of messages you process, that
! # larger the cache size should be.  The default size of 16K will
! # roughly cache that last 300 messages-ids.
  #MSGID_CACHE_SIZE=16384
  

---------------------------------------------------------------------
To sign-off this list, send email to majordomo(_at_)mhonarc(_dot_)org with the
message text UNSUBSCRIBE MHONARC-DEV