home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / base / root.15 / etc / default / mail / mail~
Text File  |  1998-08-19  |  5KB  |  139 lines

  1. #
  2. #ident "@(#)mail    11.3
  3. #
  4. # System Wide Mail configuration defaults
  5.  
  6. #
  7. # The Message store (Version 1.0) uses strings starting with MS1_
  8. # all message store settings can be overriden by individual users
  9. # by placing a file in the user's home directory called .maildef.
  10. # only those parameters present in .maildef will be overridden.
  11. #
  12.  
  13. #
  14. # The message store supports two folder formats:
  15. #    MMDF style (ctrl-A message delimiters) or
  16. #    Sendmail style (From sender date delimiters only)
  17. #
  18. # MMDF is better from a performance and data consistency perspective.
  19. # Sendmail format is generally more compatible with other mail user agents.
  20. # So set sendmail only if you install a user agent that does not understand
  21. # MMDF folder format.
  22. #
  23. MS1_FOLDER_FORMAT=Sendmail
  24.  
  25. #
  26. # The message store (1.0) allows you to choose
  27. # where the default inbox for each user is located.
  28. #
  29. # two variables are combined into the default inbox name.
  30. # MS1_INBOX_DIR is the spool directory where inboxes are located.
  31. #    It defaults to the home directory for each user.
  32. # MS1_INBOX_NAME is the name of the inbox for each user.
  33. #    It defaults to the username for each user.
  34. #
  35. # The two expected configurations are as follows:
  36. #
  37. # All inboxes reside in /var/mail (a central spool directory):
  38. # MS1_INBOX_DIR=/var/mail
  39. # MS1_INBOX_NAME=
  40. # This effectively means that a mailbox for each user using each
  41. # user's name will be created in /var/mail.
  42. #
  43. # All inboxes reside each user's home directory and have the name .mailbox.
  44. # MS1_INBOX_DIR=
  45. # MS1_INBOX_NAME=.mailbox
  46. #
  47. # MS1_INBOX_DIR defaults to /var/mail
  48. # MS1_INBOX_NAME defaults to null (user name inboxes)
  49. #
  50. MS1_INBOX_DIR=/var/mail
  51. MS1_INBOX_NAME=
  52.  
  53. #
  54. # The Message Store always flushes it's data to the UNIX buffer cache.
  55. # Enabling FSYNC will cause the flushes to go all the way through to disk.
  56. # This improves data reliability in the case of system crashes
  57. # since the buffer cache normally takes up to 30 seconds to flush to disk,
  58. # but it can reduce performance as flushing every write operation through
  59. # to disk is more expensive than using the buffer cache.
  60. MS1_FSYNC=FALSE
  61.  
  62. #
  63. # Folders are split into two files: a backwards compatible folder file
  64. # and an index file, if a non-message store user agent modifies
  65. # the folder, two levels of checking are available for message
  66. # store aware applications to detect that the folder has been modified
  67. # and that the index needs to be rebuilt (an expensive operation).
  68. # extended checking is normally not necessary, unless you have a mail
  69. # user agent that modifies the folder contents but does not modify
  70. # the modification time on the folder (sets the mod time back).
  71. #
  72. MS1_EXTENDED_CHECKS=FALSE
  73.  
  74. #
  75. # Deleting messages from folders is an expensive operation for large folders
  76. # as the folder is completely rewritten.
  77. # The Message Store has the capability to reduce the number of rebuild
  78. # operations that take place by marking messages as deleted but not
  79. # rebuilding the folder until some percentage of bytes have become unused.
  80. # A threshold can be specified where if the number of bytes still used
  81. # by undeleted messages drops below a certain percentage then
  82. # the folder will be rebuilt on close.
  83. #
  84. # 100 percent means always rebuild the folder on close if messages were deleted,
  85. #    which provides maximum backwards compatibility but no performance gains.
  86. # 0 percent is a potentially non-useful case where the folder is never rebuilt
  87. #    it just grows forever accumulating deleted messages.
  88. # any other number is the percent of bytes that must be used for valid
  89. # messages, so when the percentage of bytes drops below that number
  90. # the folder will be rebuilt when the user agent closes that mailbox.
  91. #
  92. # The compatibility you lose is that deleted messages become visible
  93. # to non-message store aware user agents as messages where the from
  94. # address and the subject were both "deleted", which could be annoying.
  95. # As this value is overrideable for individual users
  96. # setting the threshold to around 50 is a good idea if the majority
  97. # of users are using message store aware mail user agents.
  98. #
  99. MS1_EXPUNGE_THRESHOLD=50
  100.  
  101. #
  102. # The Message Store has the capability to read entire mailboxes into
  103. # core which provides some performance improvements at a potentially
  104. # large cost in memory.  This is useful for single user (desktop) systems.
  105. #
  106. MS1_FOLDERS_INCORE=FALSE
  107.  
  108. #
  109. # old style folder.lock lock file creation is supported, normally
  110. # just kernel locks are used.  Turn this on and folder.lock will
  111. # be created.  Kernel locks are still used as well.
  112. MS1_FILE_LOCKING=FALSE
  113.  
  114. #
  115. # mailboxes must be locked in order to access them.
  116. # if a lock times out the folder cannot be accessed.
  117. # on heavily loaded systems a longer lock timeout may prevent requeuing
  118. # of messages in the deliver process.
  119. # However it will annoy users as it will take longer to time out
  120. # on locked files.
  121. #
  122. MS1_LOCK_TIMEOUT=10
  123.  
  124. #
  125. # a umask for folder creation is provided.
  126. # this mask is in addition to normal UNIX umask support.
  127. #
  128. # for POSIX compliance it should be zero.
  129. # for maximum security it should be 077 (which is recommended)
  130. # Please leave the exec (search) permissions there because
  131. # this mask is used to create directories as well as files.
  132. #
  133. # Note that mail delivery from the mail transport (slocal)
  134. # always sets the UNIX umask to 077 before calling the message store.
  135. # Therefore this value is primarily useful for clients that create
  136. # folders (such as mailx and IMAP clients).
  137. #
  138. MS1_UMASK=077
  139.