125a126,131 > $form['listhandler_alwaysnewthread'] = array( > '#type' => 'radios', > '#title' => t('Email Replies'), > '#default_value' => variable_get('listhandler_alwaysnewthread', 0), > '#options' => array(0 => t('Replies as comments'), 1 => t('Replies as threads')), > '#description' => t('Whether incoming email replies will be treated as comments, or new threads.')); 167a174 > $output .= drupal_render($form['listhandler_alwaysnewthread']); 546a554,559 > // create new thread no matter what? > if (variable_get('listhandler_alwaysnewthread', 0)) { > return listhandler_new_thread($node); > } > >