diff -uprbN simplenews_orig/simplenews-block-all.tpl.php simplenews/simplenews-block-all.tpl.php
--- simplenews_orig/simplenews-block-all.tpl.php	1970-01-01 01:00:00.000000000 +0100
+++ simplenews/simplenews-block-all.tpl.php	2008-09-08 22:39:17.000000000 +0200
@@ -0,0 +1,21 @@
+<?php
+// $Id: simplenews-block.tpl.php,v 1.1.2.1 2008/08/22 14:15:16 sutharsan Exp $
+
+/**
+ * @file simplenews-block.tpl.php
+ * Default theme implementation to display a block with subscription options for all newsletters.
+ *
+ * Available variables:
+ * - $message: the help text to show above the form
+ * - $rendered_form: the rendered form
+ *
+ * @see template_preprocess_simplenews_block_all()
+ */
+?>
+  <?php if ($message): ?>
+    <p><?php print $message; ?></p>
+  <?php endif; ?>
+
+  <?php if ($rendered_form): ?>
+    <?php print $rendered_form; ?>
+  <?php endif; ?>
diff -uprbN simplenews_orig/simplenews.module simplenews/simplenews.module
--- simplenews_orig/simplenews.module	2008-09-01 16:51:33.000000000 +0200
+++ simplenews/simplenews.module	2008-09-08 23:19:50.000000000 +0200
@@ -579,6 +579,14 @@ function simplenews_form_alter(&$form, $
       );
     }
   }
+  elseif ($form_id == 'simplenews_subscription_manager_form') {
+    if (!empty($form['#parameters'][3]) && $form['#parameters'][3] == 'simplenews_block_all') {
+      // Get rid of the fieldset to save screen space.
+      unset($form['subscriptions']['#type']);
+      // Prevent the form from redirecting to the front page.
+      $form['#redirect'] = FALSE;
+    }
+  }
 }
 
 /**
@@ -741,8 +749,13 @@ function simplenews_block($op = 'list', 
           'cache' => variable_get('simplenews_block_f_'. $newsletter->tid, 1) ? BLOCK_NO_CACHE : BLOCK_CACHE_PER_ROLE,
         );
       }
+      $blocks[0] = array(
+        'info' => t('Newsletter: all newsletters'),
+        'cache' => BLOCK_NO_CACHE,
+      );
       return $blocks;
     case 'configure':
+      if ($delta > 0) {
       $form['simplenews_block_'. $delta]['simplenews_block_m_'. $delta] = array(
         '#type' => 'textfield',
         '#title' => t('Block message'),
@@ -784,16 +797,20 @@ function simplenews_block($op = 'list', 
         '#default_value' => variable_get('simplenews_block_r_'. $delta, 1),
         '#description' => t("Note: this requires permission 'view links in block'."),
       );
+      }
       return $form;
     case 'save':
+      if ($delta > 0) {
       variable_set('simplenews_block_m_'. $delta, $edit['simplenews_block_m_'. $delta]);
       variable_set('simplenews_block_f_'. $delta, $edit['simplenews_block_f_'. $delta]);
       variable_set('simplenews_block_l_'. $delta, $edit['simplenews_block_l_'. $delta]);
       variable_set('simplenews_block_i_status_'. $delta, $edit['simplenews_block_i_status_'. $delta]);
       variable_set('simplenews_block_i_'. $delta, $edit['simplenews_block_i_'. $delta]);
       variable_set('simplenews_block_r_'. $delta, $edit['simplenews_block_r_'. $delta]);
+      }
       break;
     case 'view':
+      if ($delta > 0) {
       if ($tree = taxonomy_get_tree(variable_get('simplenews_vid', ''))) {
         // Only display a block if $delta is a valid newsletter term id.
         foreach ($tree as $taxonomy) {
@@ -813,6 +830,14 @@ function simplenews_block($op = 'list', 
         return array();
       }
     }
+    }
+    else {
+      $block = array(
+        'subject' => t('Our newsletters'),
+        'content' => theme('simplenews_block_all'),
+      );
+      return $block;
+    }
     break;  
   }
 }
@@ -2030,6 +2055,10 @@ function simplenews_theme() {
       'template' => 'simplenews-block',
       'arguments' => array('tid' => NULL),
     ),
+    'simplenews_block_all' => array(
+      'template' => 'simplenews-block-all',
+      'arguments' => array(),
+    ),
     'simplenews_status' => array(
       'template' => 'simplenews-status',
       'file' => 'simplenews.admin.inc',
@@ -2055,7 +2084,7 @@ function simplenews_theme() {
 }
 
 /**
- * Process variables to format the simplenews block.
+ * Process variables to format a single newsletter's block.
  *
  * Collect data and apply access restrictions.
  *
@@ -2095,6 +2124,27 @@ function template_preprocess_simplenews_
 }
 
 /**
+ * Process variables to format the "All newsletters" block.
+ *
+ * Include the subscriptions form in simplenews_confirm_subscription().
+ *
+ * @see simplenews-block-all.tpl.php
+ */
+function template_preprocess_simplenews_block_all(&$variables) {
+  global $user;
+  
+  $subscription = simplenews_get_subscription($user);
+  $form = _simplenews_subscription_manager_form($subscription);
+  
+  $variables['message'] = $form['subscriptions']['#description'];
+  
+  // Render subscription form
+  include_once(drupal_get_path('module', 'simplenews') . '/simplenews.subscription.inc');
+  // The third argument makes it possible for hook_form_alter() to recognize this instance of the form.
+  $variables['rendered_form'] = drupal_get_form('simplenews_subscription_manager_form', NULL, 'simplenews_block_all');
+}
+
+/**
  * Theme the newsletter message subject and body.
  */
 function theme_simplenews_newsletter($node, $tid) {
