--- contact.admin.inc.org	2010-01-03 21:01:04.000000000 +0000
+++ contact.admin.inc	2010-01-07 12:02:45.000000000 +0000
@@ -182,3 +182,24 @@
 
   $form_state['redirect'] = 'admin/structure/contact';
 }
+
+function contact_admin_settings() {
+  $form['contact_form_information'] = array('#type' => 'textarea',
+    '#title' => t('Additional information'),
+    '#default_value' => variable_get('contact_form_information', t('You can leave a message using the contact form below.')),
+    '#description' => t('Information to show on the <a href="@form">contact page</a>. Can be anything from submission guidelines to your postal address or telephone number.', array('@form' => url('contact'))),
+  );
+  $form['contact_hourly_threshold'] = array('#type' => 'select',
+    '#title' => t('Hourly threshold'),
+    '#options' => drupal_map_assoc(array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 20, 30, 40, 50)),
+    '#default_value' => variable_get('contact_hourly_threshold', 3),
+    '#description' => t('The maximum number of contact form submissions a user can perform per hour.'),
+  );
+  $form['contact_default_status'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Enable personal contact form by default'),
+    '#default_value' => variable_get('contact_default_status', 1),
+    '#description' => t('Default status of the personal contact form for new users.'),
+  );
+  return system_settings_form($form);
+}
--- contact.module.org	2010-01-04 21:31:52.000000000 +0000
+++ contact.module	2010-01-07 12:00:53.000000000 +0000
@@ -90,6 +90,15 @@
     'type' => MENU_CALLBACK,
     'file' => 'contact.admin.inc',
   );
+  $items['admin/structure/contact/settings'] = array(
+    'title' => 'Settings',
+    'page callback' => 'drupal_get_form',
+    'page arguments' => array('contact_admin_settings'),
+    'access arguments' => array('administer site-wide contact form'),
+    'type' => MENU_LOCAL_TASK,
+    'weight' => 2,
+    'file' => 'contact.admin.inc',
+  );
   $items['contact'] = array(
     'title' => 'Contact',
     'page callback' => 'drupal_get_form',
