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 / 23_bayes.cf < prev    next >
Text File  |  2006-11-29  |  2KB  |  62 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. #require_version @@VERSION@@
  23.  
  24. ###########################################################################
  25.  
  26. body BAYES_00        eval:check_bayes('0.00', '0.01')
  27. body BAYES_05        eval:check_bayes('0.01', '0.05')
  28. body BAYES_20        eval:check_bayes('0.05', '0.20')
  29. body BAYES_40        eval:check_bayes('0.20', '0.40')
  30.  
  31. # note: tread carefully around 0.5... the Bayesian classifier
  32. # will use that for anything it's unsure about, or if it's untrained.
  33. body BAYES_50        eval:check_bayes('0.40', '0.60')
  34.  
  35. body BAYES_60        eval:check_bayes('0.60', '0.80')
  36. body BAYES_80        eval:check_bayes('0.80', '0.95')
  37. body BAYES_95        eval:check_bayes('0.95', '0.99')
  38. body BAYES_99        eval:check_bayes('0.99', '1.00')
  39.  
  40. tflags BAYES_00        nice learn
  41. tflags BAYES_05        nice learn
  42. tflags BAYES_20        nice learn
  43. tflags BAYES_40        nice learn
  44. tflags BAYES_50        learn
  45. tflags BAYES_60        learn
  46. tflags BAYES_80        learn
  47. tflags BAYES_95        learn
  48. tflags BAYES_99        learn
  49.  
  50. describe BAYES_00    Bayesian spam probability is 0 to 1%
  51. describe BAYES_05    Bayesian spam probability is 1 to 5%
  52. describe BAYES_20    Bayesian spam probability is 5 to 20%
  53. describe BAYES_40    Bayesian spam probability is 20 to 40%
  54. describe BAYES_50    Bayesian spam probability is 40 to 60%
  55. describe BAYES_60    Bayesian spam probability is 60 to 80%
  56. describe BAYES_80    Bayesian spam probability is 80 to 95%
  57. describe BAYES_95    Bayesian spam probability is 95 to 99%
  58. describe BAYES_99    Bayesian spam probability is 99 to 100%
  59.