您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. SpamAssassin SNF4SA Plugin for SNFServer
  2. README file
  3. Copyright (C) 2009 ARM Research Labs, LLC.
  4. See www.armresearch.com for the copyright terms.
  5. This directory contains the SpamAssassin plugin for SNFServer.
  6. The plugin implements a rule that checks the email message with
  7. SNFServer.
  8. If SNFServer determines that the email message is spam, then
  9. SpamAssassin increments the score by an amount that depends on the
  10. SNFServer result. The amount to add for each SNFServer result is
  11. specified in the configuration file.
  12. The GBUdb scan result also changes the score by:
  13. abs(p * c) ^ 0.5 * sign(p) * MaxWeight
  14. where p is the probability and c is the confidence returned by the
  15. GBUdb scan, sign(p) is -1 if p < 0 and +1 otherwise, and MaxWeight is
  16. specified in the configuration file. If SNFServer is not configured
  17. to insert the GBUdb scan results into a header in the message, or
  18. MaxWeight is not specified in the configuration file, then the
  19. SpamAssassin score is not affected by the GBUdb scan results.
  20. In addition to scanning the message, the plugin inserts headers into
  21. the email. The SNFServer must be configured to insert the headers
  22. into the email message. The following headers are copied by the
  23. plugin into the message if SNFServer is configured to generate them:
  24. 1) 'X-SPAM-MessageSniffer-Scan-Result' contains the body of the
  25. X-MessageSniffer-Scan-Result header inserted by SNFServer.
  26. 2) 'X-SPAM-MessageSniffer-Rules' contains the body of the
  27. X-MessageSniffer-Rules header inserted by SNFServer.
  28. 3) 'X-SPAM-GBUdb-Analysis' contains the body of the X-GBUdb-Analysis
  29. header inserted by SNFServer.
  30. Please see the INSTALL file for installation and configuration.