diff --git a/mollom.admin.inc b/mollom.admin.inc
index d359af9..1ce9646 100644
--- a/mollom.admin.inc
+++ b/mollom.admin.inc
@@ -244,6 +244,18 @@ function mollom_admin_configure_form($form, &$form_state, $mollom_form = NULL) {
           ),
         );
 
+        // Spam check CAPTCHA mode.
+        $form['mollom']['unsure'] = array(
+          '#type' => 'checkbox',
+          '#title' => t('Require to solve a CAPTCHA if text analysis is unsure'),
+          '#default_value' => $mollom_form['unsure'],
+          '#states' => array(
+            'visible' => array(
+              ':input[name="mollom[checks][spam]"]' => array('checked' => TRUE),
+            ),
+          ),
+        );
+
         // Form elements defined by hook_mollom_form_info() use the
         // 'parent][child' syntax, which Form API also uses internally for
         // form_set_error(), and which allows us to recurse into nested fields
diff --git a/mollom.install b/mollom.install
index a951b73..c2f8cc4 100644
--- a/mollom.install
+++ b/mollom.install
@@ -214,6 +214,13 @@ function mollom_schema() {
         'not null' => FALSE,
         'serialize' => TRUE,
       ),
+      'unsure' => array(
+        'description' => 'Whether to allow (1) or disallow (0) "unsure" text analysis results.',
+        'type' => 'int',
+        'size' => 'tiny',
+        'not null' => TRUE,
+        'default' => 1,
+      ),
       'discard' => array(
         'description' => 'Whether to discard (1) or retain (0) bad posts.',
         'type' => 'int',
@@ -968,3 +975,17 @@ function mollom_update_7201() {
   ));
 }
 
+/**
+ * Add {mollom_form}.unsure.
+ */
+function mollom_update_7202() {
+  if (!db_field_exists('mollom_form', 'unsure')) {
+    db_add_field('mollom_form', 'unsure', array(
+      'description' => 'Whether to allow (1) or disallow (0) "unsure" text analysis results.',
+      'type' => 'int',
+      'size' => 'tiny',
+      'not null' => TRUE,
+      'default' => 1,
+    ));
+  }
+}
diff --git a/mollom.module b/mollom.module
index 5ec826e..5902afb 100644
--- a/mollom.module
+++ b/mollom.module
@@ -886,6 +886,7 @@ function mollom_form_new($form_id = NULL) {
     'title' => $form_id,
     'mode' => NULL,
     'checks' => array(),
+    'unsure' => 1,
     'enabled_fields' => array(),
     'strictness' => 'normal',
   );
@@ -1541,6 +1542,9 @@ function mollom_validate_analysis(&$form, &$form_state) {
     $data['id'] = $form_state['mollom']['response']['content']['id'];
   }
   $data['checks'] = $form_state['mollom']['checks'];
+  if (in_array('spam', $data['checks'])) {
+    $data['unsure'] = (int) $form_state['mollom']['unsure'];
+  }
   $data['strictness'] = $form_state['mollom']['strictness'];
   $result = $form_state['mollom']['class']->checkContent($data);
 
