Index: spam.module
===================================================================
--- spam.module	(revision 100)
+++ spam.module	(working copy)
@@ -399,6 +399,14 @@
     '#description' => t('Enabling this option will cause an email to be sent to the site administrator whenever the filters detect spam content.'),
   );
   
+  $admin = user_load(array('uid' => 1));
+  $form['actions']['spam_notify_username'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Spam Adminstrator'),
+    '#default_value' => variable_get('spam_notify_username', $admin->name),
+    '#description' => t('The name of a user that should be notified when spam is identified.'),
+  );
+  
   $period = drupal_map_assoc(array(0, 3600, 10800, 21600, 32400, 43200, 86400, 172800, 259200, 604800, 1209600, 2419200, 4838400, 9676800, 31536000), 'format_interval');
   $period[0] = t('never');
   
@@ -495,7 +503,9 @@
     variable_set('spam_email_timer', time());
     $result = db_query('SELECT source, COUNT(source) AS count FROM {spam_reported} GROUP BY source');
     if (db_num_rows($result)) {
-      $admin = user_load(array('uid' => 1));
+      // find the user id with the name of the administrative user's name
+      $siteadmin = user_load(array('uid' => 1));
+      $admin = user_load(array('name' => variable_get('spam_notify_username', $siteadmin->name)));
       $message = t("Hello @adminname,\n\n  Users have reported finding spam on your website.  The following content has been reported:\n", array('@adminname' => $admin->name));
       $urls = array();
       while ($reported = db_fetch_object($result)) {
@@ -2226,7 +2236,9 @@
  *
  */
 function spam_mail($subject, $message) {
-  $admin = user_load(array('uid' => 1));
+  // find the user id with the name of the administrative user's name
+  $siteadmin = user_load(array('name' => 1));
+  $admin = user_load(array('name' => variable_get('spam_notify_username', $siteadmin->name)));
   drupal_mail('spam_mail', $admin->mail, $subject, wordwrap($message, 72), variable_get('site_mail', ini_get('sendmail_from')));
 }
 
