image_spam 949 B

12345678910111213141516171819202122232425262728293031
  1. # -*- mode: spamassassin -*-
  2. ifplugin Mail::SpamAssassin::Plugin::ImageInfo
  3. body ONE_PNG eval:image_count('png',1,1)
  4. describe ONE_PNG Contains exactly one png attachment
  5. score ONE_PNG 0.5
  6. body MOSTLY_PNG_IMAGE eval:image_to_text_ratio('png',0,0.2)
  7. describe MOSTLY_PNG_IMAGE Contains mostly png image, with little text
  8. score MOSTLY_PNG_IMAGE 2
  9. body ONE_JPG eval:image_count('jpg',1,1)
  10. describe ONE_JPG Contains exactly one jpg attachment
  11. score ONE_JPG 0.5
  12. body MOSTLY_JPG_IMAGE eval:image_to_text_ratio('jpg',0,0.2)
  13. describe MOSTLY_JPG_IMAGE Contains mostly jpg image, with little text
  14. score MOSTLY_JPG_IMAGE 2
  15. body VIAGRA_IMG_SIZE eval:image_size_range('png',370,390,405,425)
  16. describe VIAGRA_IMG_SIZE Matches the size of viagra images
  17. score VIAGRA_IMG_SIZE 2
  18. body VIAGRA_JPG_SIZE eval:image_size_range('jpg',370,390,405,425)
  19. describe VIAGRA_JPG_SIZE Matches the size of viagra images
  20. score VIAGRA_JPG_SIZE 2
  21. endif