--- mailhandler.module.1    2006-08-10 12:42:15.000000000 -0500
+++ mailhandler.module  2006-08-10 12:40:56.000000000 -0500
@@ -428,6 +428,7 @@
 /**
  * Implementation of hook_user().
  */
+/*
 function mailhandler_user($type, &$edit, &$account, $category = NULL) {
   if ($type == 'view') {
     // @TODO: We may add a new option in mailboxes to choose which roles can post.
@@ -436,22 +437,23 @@
       $mailbox = db_fetch_array(db_query('SELECT * FROM {mailhandler} WHERE enabled = 1 ORDER BY mail'));
       if ($mailbox) {
         if ($mailbox['security'] == 1) {
-          $form = array(
-            '#title' => t('Mail Handler'),
-            '#value' => t('You may post to <a href="%blog">your blog</a> by sending an e-mail to %mail. Be sure to include your password at the top of your e-mail body (e.g. <em>pass=mypassword</em>).', array('%blog' => url("blog/$account->uid"), '%mail' => theme('placeholder', $mailbox['mail'])))
+          $items[] = array(
+            'title' => t('Mail Handler'),
+            'value' => t('You may post to <a href="%blog">your blog</a> by sending an e-mail to %mail. Be sure to include your password at the top of your e-mail body (e.g. <em>pass=mypassword</em>).', array('%blog' => url("blog/$account->uid"), '%mail' => theme('placeholder', $mailbox['mail'])))
           );
         }
         else {
-          $form = array(
-            '#title' => t('Mail Handler'),
-            '#value' => t('You may post to <a href="%blog">your blog</a> by sending an e-mail to %mail.', array('%blog' => url("blog/$account->uid"), '%mail' => theme('placeholder', $mailbox['mail'])))
+          $items[] = array(
+            'title' => t('Mail Handler'),
+            'value' => t('You may post to <a href="%blog">your blog</a> by sending an e-mail to %mail.', array('%blog' => url("blog/$account->uid"), '%mail' => theme('placeholder', $mailbox['mail'])))
           );
         }
-        return array(t('Mail Handler') => array('mailhandler' => theme('item', $form)));
+        return array(t('Mail Handler') => $items);
       }
     }
   }
