--- badbehavior.module	2008-04-08 18:50:13.000000000 -0700
+++ badbehaviorMod.module	2009-11-02 19:05:29.000000000 -0800
@@ -127,6 +127,14 @@ function badbehavior_settings() {
     '#maxlength' => 50,
     '#description' => t('Administrator email address for blocked users to contact to gain access'),
   );
+  $form['badbehavior_httpbl_key'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Project Honey Pot Key'),
+    '#default_value' => variable_get('badbehavior_httpbl_key', ''),
+    '#size' => 12,
+    '#maxlength' => 12,
+    '#description' => t('Create your own 12 character Project Honey Pot Key at <a href="www.projecthoneypot.org">www.projecthoneypot.org</a> and enter it here for added protection'),
+  );
   $form['badbehavior_strict_mode_enable'] = array(
     '#type' => 'radios',
     '#title' => 'Enable Strict Mode',
@@ -198,6 +206,12 @@ function bb2_write_settings($settings) {
 // retrieve settings from database
 function bb2_read_settings() {
   return array(
+    'logging' => true,
+    'httpbl_threat' => '25',
+    'httpbl_maxage' => '30',
+    'httpbl_key' => variable_get('badbehavior_httpbl_key', ''),
+    'display_stats' => false,
+    'offsite_forms' => false,
     'log_table' => 'bad_behavior_log',
     'strict' => variable_get('badbehavior_strict_checking_enable', 0),
     'verbose' => variable_get('badbehavior_verbose_logging_enable', 0));
