Index: modules/system/system.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.install,v
retrieving revision 1.376
diff -p -u -r1.376 system.install
--- modules/system/system.install	22 Aug 2009 18:24:14 -0000	1.376
+++ modules/system/system.install	23 Aug 2009 14:39:06 -0000
@@ -44,7 +44,7 @@ function system_requirements($phase) {
         'severity' => REQUIREMENT_INFO,
         'weight' => -9
       );
-    } 
+    }
   }
 
   // Web server information.
@@ -2456,6 +2456,24 @@ function system_update_7036() {
 }
 
 /**
+ * Enable / disable personal contact form should be enabled for all users
+ * so configuration options just don't disappear when upgrading from 6.x.
+ */
+function system_update_7037() {
+  $ret = array();
+
+  if (module_exists('contact')) {
+    db_insert('role_permission')
+      ->fields(array(
+        'rid' => DRUPAL_AUTHENTICATED_RID,
+        'permission' => 'configure personal contact form',
+      ))
+    ->execute();
+  }
+  return $ret;
+}
+
+/**
  * @} End of "defgroup updates-6.x-to-7.x"
  * The next series of updates should start at 8000.
  */
Index: modules/contact/contact.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/contact/contact.module,v
retrieving revision 1.121
diff -p -u -r1.121 contact.module
--- modules/contact/contact.module	23 Aug 2009 01:05:10 -0000	1.121
+++ modules/contact/contact.module	23 Aug 2009 14:39:06 -0000
@@ -45,6 +45,10 @@ function contact_permission() {
       'title' => t('Access site-wide contact form'),
       'description' => t('Send feedback to administrators via e-mail using the site-wide contact form.'),
     ),
+    'configure personal contact form' => array(
+      'title' => t('Configure personal contact form'),
+      'description' => t('Enable or disable personal contact form.'),
+    ),
   );
 }
 
@@ -144,6 +148,7 @@ function contact_user_form(&$edit, $acco
       '#title' => t('Contact settings'),
       '#weight' => 5,
       '#collapsible' => TRUE,
+      '#access' => user_access('configure personal contact form'),
     );
     $form['contact']['contact'] = array('#type' => 'checkbox',
       '#title' => t('Personal contact form'),
