Availability
Available as of blojsom 2.25.
Description
The link spam moderation plugin checks for hyperlinks within comments and trackbacks. If the number of hyperlinks found within the response exceeds a specified threshold, the comment or trackback can be moderated or deleted automatically.
Installation and Setup
In your /WEB-INF/classes/blojsom-plugins.xml file, add the following:
<bean id="linkspam" class="org.blojsom.plugin.moderation.LinkSpamModerationPlugin" init-method="init" destroy-method="destroy">
<property name="eventBroadcaster">
<ref bean="eventBroadcaster"/>
</property>
</bean>
The following properties can be set from Weblog Settings | Properties | Set Property
| Property |
Description |
Default value |
| linkspam-comment-threshold |
# of links as threshold for comments. |
3 |
| linkspam-trackback-threshold |
# of links as threshold for trackbacks. |
3 |
| delete-linkspam |
Determines if the comment or trackback should be deleted automatically if it exceeds the link threshold. |
false |