We have a whole other moderation system in place and I'd like to use Mollom only for its spam-blocking abilities. I'd like to be able to shut off the other moderation options provided by Mollom in order to prevent confusion...

Comments

dave reid’s picture

Status: Active » Postponed (maintainer needs more info)

I'm not exactly clear on the request. Are you saying you don't want people to be able to use the 'report to Mollom' links? If you have spam that gets through you should really want to use that so that Mollom can help 'learn' about the spam that is making it through.

nicholas_w’s picture

Mollom also gives you options like to mark something as poorly written or off-topic. I'm talking about removing those options so Mollom can ONLY be used to report spam...

dave reid’s picture

Status: Postponed (maintainer needs more info) » Closed (won't fix)

That isn't a moderation option, is only reporting back to Mollom about what was wrong with that specific piece of content. If you want to, you can add a custom_form_alter to remove the options yourself:

mymodule_form_mollom_report_node_alter(&$form, &$form_state) {
  foreach ($form['feedback']['#options'] as $key => $description) {
    if ($key != 'spam') {
      unset($form['feedback']['#options'][$key];
    }
  }
}

Repeat same thing for mollom_report_comment and mollom_report_contact.