Django comment spam

前端 未结 2 1153
没有蜡笔的小新
没有蜡笔的小新 2021-01-13 14:37

How well does Django\'s anti-spam system in the comments framework work? Have you used it? What percentage of comment-spam does it prevent roughly? Is there anything else yo

相关标签:
2条回答
  • 2021-01-13 14:53

    There's a Python API to Askimet. It's what wordpress uses to stop spam (and it works pretty well).

    0 讨论(0)
  • 2021-01-13 14:54

    By default Django only offers a honey pot field and a hash check for spam prevention. It stops a lot of spam but absolutely not all. I'd guess at maybe 50-70% or so. For a very small site I have with less than 50 unique visitors per day, that is all that is needed. For larger sites, you definitely need additional protection like Akismet.

    0 讨论(0)
提交回复
热议问题