The spam is real.
-
@a_5mith said:
@bentael, any chance akismet can be trained to look at the topic title as well as the post content. Current spam is only in the title. Whether the title is included in post content or something like that.
Could it be something as simple as changing
comment_content: data.content,
to:
comment_content: data.title + data.content,
-
@xbenjii said:
@a_5mith said:
@bentael, any chance akismet can be trained to look at the topic title as well as the post content. Current spam is only in the title. Whether the title is included in post content or something like that.
Could it be something as simple as changing
comment_content: data.content,
to:
comment_content: data.title + data.content,
As the title could be considered a top-level header, how about we add a couple newlines?
comment_content: data.title + "\n\n" + data.content,
-
Not really, at least Akismet API does not have anything to do with a title, http://akismet.com/development/api/#comment-check
however, I just combined
title + '\n' + content
to get sent to AkismetAn embarrassing thing i just noticed, is that the spam-be-gone plugin is only listening to
filter:topic.reply
so all the topics creation are not getting checked because they firefilter:topic.post
@julian, @a_5mith opened my eyes that Akismet was not checking new Topics creation, only topic replies, so I added it
I just published [email protected] that fixes this issue.