Advertisement
TobyWiddows

Toby-Defaults

Jun 8th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.38 KB | None | 0 0
  1. # MailScanner Run Options
  2. #
  3. # This file controls the system level behavior of MailScanner.
  4. #
  5. # Enable MailScanner Daemon
  6. #
  7. # Change this to 1 to allow the MailScanner daemon to run.
  8. # 0 = off, 1 = on
  9. #
  10. run_mailscanner=1
  11.  
  12.  
  13. ## Cron Job Actions
  14.  
  15. # MailScanner cron jobs are executed like this:
  16. #
  17. # hourly items: /usr/sbin/ms-cron HOURLY
  18. # daily items: /usr/sbin/ms-cron DAILY
  19. # daemon check: /usr/sbin/ms-cron CHECK
  20. # maintenance: /usr/sbin/ms-cron MAINT
  21. #
  22. # The parameters passed (HOURLY, DAILY, etc.) are case insensitive.
  23. #
  24. # You can of course create your own custom cron jobs. These are built
  25. # in for convenience using the options specified below.
  26.  
  27. # Quarantine Retention
  28. #
  29. # This sets how many days files will remain in the "quarantine" area before
  30. # being automatically removed. Set to 0 (zero) to disable.
  31. #
  32. # This is executed during the MAINT cron option.
  33. #
  34. q_days=30
  35.  
  36. # Update Virus Scanner sigs
  37. #
  38. # Update the virus scanner definitions. Most virus scanners update themselves
  39. # these days so this is off by default.
  40. #
  41. # This is executed during the DAILY cron option. 0 = off, 1 = on
  42. #
  43. ms_cron_av=0
  44.  
  45. # Update SpamAssassin sigs
  46. #
  47. # Update the SpamAssassin signatures. This will also compile the rules if the Rule2XSBody plugin
  48. # is enabled and /usr/bin/re2c is installed. This is enabled by default.
  49. #
  50. # This is executed during the DAILY cron option. 0 = off, 1 = on
  51. #
  52. ms_cron_sa=1
  53.  
  54. # Update Safe/Bad Phishing sites
  55. #
  56. # Update the phishing sites signatures. http://phishing.mailscanner.info
  57. # This is enabled by default.
  58. #
  59. # This is executed during the DAILY cron option. 0 = off, 1 = on
  60. #
  61. ms_cron_ps=1
  62.  
  63. # Update ScamNailer bad emails
  64. #
  65. # You must have ScamNailer setup before enabling this. http://www.scamnailer.info
  66. # This is disabled by default.
  67. #
  68. # This is executed during the DAILY cron option. 0 = off, 1 = on
  69. #
  70. ms_cron_sn=0
  71.  
  72. # MailScanner Process Check
  73. #
  74. # Check to see if MailScanner is running. If not, start it if the process
  75. # was not manually stopped via the init script.
  76. #
  77. # This is executed during the HOURLY cron option. 0 = off, 1 = on
  78. #
  79. ms_cron_check=1
  80.  
  81. # MailScanner Problem Message Alert
  82. #
  83. # Check the process attempts database to see if there are any emails
  84. # MailScanner is having trouble processing. If there are, an email will
  85. # be sent to the address specified in MailScanner.conf "Notices To". This
  86. # is off by default.
  87. #
  88. # This is executed during the HOURLY cron option. 0 = off, 1 = on
  89. #
  90. ms_cron_msg_alert=0
  91.  
  92.  
  93. ## RAMDISK Management
  94.  
  95. # Ramdisk Sync
  96. #
  97. # If you are using a ramdisk, this will sync the "Incoming Work Dir"
  98. # (which is where your ramdisk should be mounted if anywhere)
  99. # to a saved state directory upon stopping the MailScanner service
  100. # and then restore it when the MailScanner service starts again.
  101. # 0 = off, 1 = on
  102. ramdisk_sync=0
  103.  
  104. # The MailScanner RAMDISK Persistent Store
  105. #
  106. # The location to store and retrieve the ramdisk contents during
  107. # normal startup and shutdown of the MailScanner process or server.
  108. # This is ignored if you are not using a ramdisk for the
  109. # "Incoming Work Dir" setting.
  110. ramdisk_store=/var/spool/MailScanner/ramdisk_store
  111.  
  112.  
  113. ## Directories
  114.  
  115. # The MailScanner etc directory
  116. #
  117. ms_etc=/etc/MailScanner
  118.  
  119. # The Mailscanner share directory
  120. #
  121. ms_core=/usr/share/MailScanner
  122.  
  123. # The MailScanner lib directory
  124. #
  125. ms_lib=/usr/lib/MailScanner
  126.  
  127.  
  128. ## Files
  129.  
  130. # MailScanner configuration file
  131. #
  132. # by default the file /etc/MailScanner/MailScanner.conf is used to pull
  133. # various settings for the daemon and permissions for working directories.
  134. # You may set a different custom file here. Normally this should not be
  135. # changed. Any custom settings in /etc/MailScanner/conf.d/ will be
  136. # picked up without changing this value.
  137. #
  138. ms_conf=/etc/MailScanner/MailScanner.conf
  139.  
  140. # MailScanner Virus Scanner config
  141. #
  142. # This file defines the virus scanners used by MailScanner.
  143. #
  144. ms_vs_conf=/etc/MailScanner/virus.scanners.conf
  145.  
  146. # MailScanner Lock file
  147. #
  148. # Lockfile to inform scripts if MailScanner was stopped by hand
  149. # and should not be started automaticly
  150. #
  151. stopped_lockfile=/var/lock/subsys/MailScanner.off
  152.  
  153. # Restart MailScanner after Update Safe/Bad Phishing sites
  154. #
  155. # Restart MailScanner after update of the Safe/Bad Phishing sites files.
  156. # This is disabled by default.
  157. #
  158. # This is executed during the DAILY cron option. 0 = off, 1 = on
  159. #
  160.  
  161. ms_cron_ps_restart=0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement