home *** CD-ROM | disk | FTP | other *** search
/ ftp.f-secure.com / 2014.06.ftp.f-secure.com.tar / ftp.f-secure.com / support / hotfix / fsis / IS-SpamControl.fsfix / iufssc / rules / 10_misc.cf next >
Text File  |  2006-11-29  |  5KB  |  133 lines

  1. # SpamAssassin basic config file
  2. #
  3. # Please don't modify this file as your changes will be overwritten with
  4. # the next update. Use @@LOCAL_RULES_DIR@@/local.cf instead.
  5. # See 'perldoc Mail::SpamAssassin::Conf' for details.
  6. #
  7. # <@LICENSE>
  8. # Copyright 2004 Apache Software Foundation
  9. # Licensed under the Apache License, Version 2.0 (the "License");
  10. # you may not use this file except in compliance with the License.
  11. # You may obtain a copy of the License at
  12. #     http://www.apache.org/licenses/LICENSE-2.0
  13. # Unless required by applicable law or agreed to in writing, software
  14. # distributed under the License is distributed on an "AS IS" BASIS,
  15. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. # See the License for the specific language governing permissions and
  17. # limitations under the License.
  18. # </@LICENSE>
  19. #
  20. ###########################################################################
  21.  
  22. # Default template. Try to keep it under 78 columns (inside the the dots below).
  23. #      ........................................................................
  24. clear_report_template
  25. report Spam detection software, running on the system "_HOSTNAME_", has
  26. report identified this incoming email as possible spam.  The original message
  27. report has been attached to this so you can view it (if it isn't spam) or label
  28. report similar future email.  If you have any questions, see
  29. report _CONTACTADDRESS_ for details.
  30. report 
  31. report Content preview:  _PREVIEW_
  32. report 
  33. report Content analysis details:   (_SCORE_ points, _REQD_ required)
  34. report
  35. report " pts rule name              description"
  36. report  ---- ---------------------- --------------------------------------------------
  37. report _SUMMARY_
  38. #      ........................................................................
  39.  
  40. # A 'contact address' users should contact for more info. (replaces
  41. # _CONTACTADDRESS_ above if present)
  42. report_contact    @@CONTACT_ADDRESS@@
  43.  
  44. ###########################################################################
  45.  
  46. # Unsafe-for-viewing message report template.
  47. #
  48. #             ......................................................................
  49. clear_unsafe_report_template
  50. unsafe_report The original message was not completely plain text, and may be unsafe to
  51. unsafe_report open with some email clients; in particular, it may contain a virus,
  52. unsafe_report or confirm that your address can receive spam.  If you wish to view
  53. unsafe_report it, it may be safer to save it to a file and open it with an editor.
  54. #             ......................................................................
  55.  
  56. ###########################################################################
  57. # Database configuration options.
  58. #
  59. # user_scores_dsn MUST be in the form:
  60. # DBI:databasetype:databasename:hostname:port
  61. # ex. DBI:mysql:spamassassin:localhost
  62. #
  63. # user_scores_sql_username is the authorized username to connect to DSN
  64. # user_scores_sql_password is the password for the database username
  65.  
  66. #user_scores_dsn        DBI:mysql:spamassassin:localhost
  67. #user_scores_sql_username    spam
  68. #user_scores_sql_password    spamfilter
  69.  
  70. ##########################################################################
  71. # Headers to be added to mail (can be overriden by users in
  72. # ~/.spamassassin/user_prefs)
  73. # Make sure the header stays entirely on one line here
  74.  
  75. clear_headers
  76.  
  77. #X-Spam-Checker-Version: SpamAssassin 2.60-cvs (1.188-2003-05-24-exp)
  78. add_header all Checker-Version SpamAssassin _VERSION_ (_SUBVERSION_) on _HOSTNAME_
  79.  
  80. #X-Spam-Flag: YES
  81. add_header spam Flag _YESNOCAPS_
  82.  
  83. #X-Spam-Level: *************
  84. add_header all Level _STARS(*)_
  85.  
  86. #X-Spam-Status: Yes, score=14.0 required=5.0 tests=BAYES_99,CALL_FREE
  87. #        DATE_IN_PAST_12_24,DCC_CHECK,DRASTIC_REDUCED,FROM_HAS_MIXED_NUMS
  88. #        FROM_HAS_MIXED_NUMS3,HOME_EMPLOYMENT,INVALID_DATE,INVALID_MSGID
  89. #        LINES_OF_YELLING,MSGID_HAS_NO_AT,NO_REAL_NAME,ONCE_IN_LIFETIME
  90. #        UNDISC_RECIPS autolearn=spam version=2.60-cvs
  91. add_header all Status "_YESNO_, score=_SCORE_ required=_REQD_ tests=_TESTS_ autolearn=_AUTOLEARN_ version=_VERSION_"
  92.  
  93. ###########################################################################
  94. # Default prefs values: users can override these in their 
  95. # ~/.spamassassin/user_prefs files.
  96.  
  97. # How many points before a mail is considered spam.
  98. required_score           5
  99.  
  100. # Mail using locales used in these country codes will not be marked
  101. # as being possibly spam in a foreign language.
  102. ok_locales              all
  103.  
  104. # Mail using languages used in these country codes will not be marked
  105. # as being possibly spam in a foreign language.  This is an expensive
  106. # classification, so it is is disabled in init.pre by default.
  107. ifplugin Mail::SpamAssassin::Plugin::TextCat
  108. ok_languages            all
  109. endif # Mail::SpamAssassin::Plugin::TextCat
  110.  
  111. # Mail which scores outside this range will be fed back into SpamAssassin's
  112. # learning system automatically, to train the Bayesian scanner.
  113. ifplugin Mail::SpamAssassin::Plugin::AutoLearnThreshold
  114. bayes_auto_learn_threshold_nonspam    0.1
  115. bayes_auto_learn_threshold_spam        12.0
  116. endif # Mail::SpamAssassin::Plugin::AutoLearnThreshold
  117.  
  118. # Set this to 0 to turn off auto-learning.
  119. bayes_auto_learn            1
  120.  
  121. # report_safe controls the markup of spam. If you set it to 0, the message
  122. # body of spam messages will not be modified
  123. report_safe           1
  124.  
  125. # Some common prefs settings can be set here, to take effect site-wide
  126. # unless the user override them. See the user_prefs.template file for
  127. # explanations.
  128.  
  129.  
  130.