diff -r -U 5 mailhandler-5.x-1.2-jeff/mailhandler.module mailhandler/mailhandler.module
--- mailhandler-5.x-1.2-jeff/mailhandler.module	2007-07-28 13:44:15.000000000 -0400
+++ mailhandler/mailhandler.module	2008-04-27 14:43:10.000000000 -0400
@@ -651,16 +651,17 @@
 /**
  * Return a listing of all defined mailboxes.
  */
 function mailhandler_display() {
   $destination = drupal_get_destination();
-  $header = array(t('Mailbox'), array('data' => t('Operations'), 'colspan' => 3));
+  $header = array(t('Mailbox'), t('Folder'), array('data' => t('Operations'), 'colspan' => 3));
   $rows = array();
   $result = db_query('SELECT * FROM {mailhandler} ORDER BY mail');
   while ($mailbox = db_fetch_object($result)) {
     $rows[] = array(
       "<a href=\"mailto:$mailbox->mail\">$mailbox->mail</a>",
+      $mailbox->folder,
       l(t('Retrieve'), "admin/content/mailhandler/retrieve/$mailbox->mid", array('title' => t('Retrieve and process pending e-mails in this mailbox')), $destination),
       l(t('Edit'), "admin/content/mailhandler/edit/$mailbox->mid", array('title' => t('Edit this mailbox configuration')), $destination),
       l(t('Delete'), "admin/content/mailhandler/delete/$mailbox->mid", array('title' => t('Delete this mailbox')), $destination)
     );
   }
Only in mailhandler: mailhandler.module~
