The spam is real.
-
So far we've been without spam - hopefully that didn't jinx us - so I don't see myself incorporating Akismet support in the plugin anytime soon. In the event that it becomes an issue, I'll look into it.
Then once everything's broken, I'll let you know @julian
-
We also happened to be on an old version of spam-be-gone (
.4
instead of something like.24
), though @bentael assures me it makes no differenceI'd never enabled Askimet because the free plan is supposed to be for non-commercial use only. This morning I decided that this forum constitutes a non-commercial entity (that being a support forum for an open source project), so that was ok.
-
do you require email confirmation before allowing new users to post?
-
@bentael We do not, no, as this forum was up before that particular option made it into the ACP, and we saw no reason to restrict it.
I could turn it on, though I'd also point out that with some of these "temporary email" services, it's almost trivial to automate the email verification process.
(I keep spelling it as Marinator )
-
okay.. i dont know.. how are these bots bypassing captcha on registration? Mechanical Turk? OCR ?
-
@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.