Advertisement
DD3AH

SpamAssassin

Mar 23rd, 2022
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. # URI with only http (no https)
  2. uri_detail HTTPONLY raw =~ /^http:/
  3. describe HTTPONLY no TLS
  4. score HTTPONLY 2
  5.  
  6. # first catch all posts and give them 3 spam-points
  7. header NO_TLS Received =~ /from.*by <your SMTP hostname>/
  8. describe NO_TLS no TLS in SMTP
  9. score NO_TLS 3
  10.  
  11. # then honor the ones using TLS
  12. header TLS Received =~ /using TLS.*by <your SMTP hostname>/
  13. describe TLS TLS in SMTP
  14. score TLS -3
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement