--- cosign.module.orig	2012-07-19 09:22:33.119293417 -0500
+++ cosign.module	2012-07-19 09:24:34.151290463 -0500
@@ -93,7 +93,6 @@
       if (empty($user_info)) {
         if (variable_get('cosign_autocreate', 0) == 1) {
 
-          $default_email_domain = 'umich.edu';
           $new_user->name = $cosign_name;
 
           if (stristr($new_user->name, '@')) {
@@ -101,7 +100,7 @@
             $new_user->mail = $cosign_name;
           }
           else {
-            $new_user->mail = $cosign_name . '@' . variable_get('cosignautocreate_email_domain', $default_email_domain);
+            $new_user->mail = $cosign_name . '@' . variable_get('cosignautocreate_email_domain', 'example.com');
           }
 
           user_external_login_register($new_user->name, 'cosignautocreate');
@@ -167,7 +166,6 @@
     '#description' => t("The address to redirect users to after they have logged out."),
   );
 
-  $default_email_domain = 'umich.edu';
 
   $YesNo = array(
     1 => 'Yes',
@@ -207,14 +205,14 @@
 
   // This setting is not used anywhere anymore. May be useful for some feature
   // that was removed and may be built back in in the future.
-  /*$form['cosign_autocreate_email_domain'] = array(
+  $form['cosign_autocreate_email_domain'] = array(
     '#type' => 'textfield',
     '#title' => t('Email domain'),
-    '#default_value' => variable_get('cosign_autocreate_email_domain', $default_email_domain),
+    '#default_value' => variable_get('cosign_autocreate_email_domain', 'example.com'),
     '#size' => 80,
     '#maxlength' => 200,
     '#description' => t("The default email domain to use"),
-  );*/
+  );
 
   $form['cosign_allow_friend_accounts'] = array(
     '#type' => 'select',

