Django 垃圾评论
Django 的评论框架中的反垃圾邮件系统效果如何? 你用过吗? 它大致可以防止多少百分比的垃圾评论? 您还采取其他措施来帮助防止使用 Django 评论框架的网站上出现垃圾评论吗?
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 you do to help prevent comment spam on sites using the Django comments framework?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Askimet 有一个 Python API。 这就是 WordPress 用来阻止垃圾邮件的方法(而且效果非常好)。
There's a Python API to Askimet. It's what wordpress uses to stop spam (and it works pretty well).
默认情况下,Django 仅提供蜜罐字段和哈希检查以防止垃圾邮件。 它可以阻止很多垃圾邮件,但绝对不是全部。 我猜大概是 50-70% 左右。 对于每天少于 50 个唯一访问者的非常小的网站,这就是所需要的。 对于较大的网站,您肯定需要像 Akismet 这样的额外保护。
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.