Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. (p * c) ^ 2 * 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, then
  18. the SpamAssassin score is not affected by the GBUdb scan results.
  19. In addition to scanning the message, the plugin inserts headers into
  20. the email. The SNFServer must be configured to insert the headers
  21. into the email message. The following headers are copied by the
  22. plugin into the message if SNFServer is configured to generate them:
  23. 1) 'X-SPAM-MessageSniffer-Scan-Result' contains the body of the
  24. X-MessageSniffer-Scan-Result header inserted by SNFServer.
  25. 2) 'X-SPAM-MessageSniffer-Rules' contains the body of the
  26. X-MessageSniffer-Rules header inserted by SNFServer.
  27. 3) 'X-SPAM-GBUdb-Analysis' contains the body of the X-GBUdb-Analysis
  28. header inserted by SNFServer.
  29. Please see the INSTALL file for installation and configuration.