I'm having trouble with the mollum module, I've switched over from the recaptcha, when I submit a form with content like "Super Awesome Viagra" it still passes. The report shows its configured correctly. Here is my Form Code
function UserProductReviewForm() {
// Create fields
$fields = new FieldSet(
new TextField('Name','Name:'),
new EmailField('Email','E-Mail Address:'),
new TextField('Location','Location:'),
new OptionsetField('Rating','Rating',array(
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'5' => '5',
)
),
new TextField('Title','Review Title:'),
new TextareaField('Review'),
new HiddenField('ProductID', '', $this->ID),
new HiddenField('ProductName','',$this->Title)
);
// Create actions
$actions = new FieldSet(
new FormAction('doReview', 'Submit')
);
$form = new Form($this, 'UserProductReviewForm', $fields, $actions);
$protector = SpamProtectorManager::update_form($form);
if($protector) $protector->setFieldMapping('Name', 'Email', 'Title', 'Review');
return $form;
}
Any ideas?