diff -uNr subscriptions.orig/subscriptions.module subscriptions/subscriptions.module
--- subscriptions.orig/subscriptions.module	2006-09-08 03:10:38.932144719 -0300
+++ subscriptions/subscriptions.module	2006-09-08 03:20:15.584153036 -0300
@@ -156,6 +156,12 @@
     '#default_value' => variable_get('subscriptions_autoset', 0),
     '#description'   => t('Set\'s each users "autosubscribe" profile option. Default is OFF.'),
   );
+  $form['sub_settings']['subscriptions_rss_enable'] = array(
+    '#type'          => 'checkbox',
+    '#title'         => t('Enable RSS feed for subscribed content'),
+    '#default_value' => variable_get('subscriptions_rss_enable', 1),
+    '#description'   => t('Show RSS feed tab for subscribed content. Default is ON.'),
+  );
   return $form;
 }
 
@@ -187,7 +193,8 @@
       $items[] = array('path' => "user/$user->uid/subscriptions/type", 'title' => t('content types'),
         'callback' => 'subscriptions_page', 'access' => user_access('maintain subscriptions'),
         'type' => MENU_LOCAL_TASK);
-      $items[] = array('path' => "user/$user->uid/subscriptions/feed", 'title' => t('rss feed'),
+      if ( variable_get('subscriptions_rss_enable', 1) )
+        $items[] = array('path' => "user/$user->uid/subscriptions/feed", 'title' => t('rss feed'),
         'access' => user_access('maintain subscriptions'),
         'callback' => 'subscriptions_feed','type' => MENU_LOCAL_TASK, 'weight' => 1);
      }
@@ -216,7 +223,8 @@
        $items[] = array('path' => "subscriptions/type", 'title' => t('content types'),
         'callback' => 'subscriptions_page', 'access' => user_access('maintain subscriptions'),
         'type' => MENU_LOCAL_TASK);
-      $items[] = array('path' => 'subscriptions/feed', 'title' => t('rss feed'),
+      if ( variable_get('subscriptions_rss_enable', 1) )
+       $items[] = array('path' => 'subscriptions/feed', 'title' => t('rss feed'),
         'access' => user_access('maintain subscriptions'),
         'callback' => 'subscriptions_feed','type' => MENU_LOCAL_TASK, 'weight' => 1);
     }else{
@@ -1055,11 +1063,14 @@
          break;
       }
       $message .= theme('box', '',$output);
-      $message .= theme('xml_icon', url("subscriptions/feed"));
-      drupal_add_link(array('rel' => 'alternate',
+      if ( variable_get('subscriptions_rss_enable', 1) )
+      {
+        $message .= theme('xml_icon', url("subscriptions/feed"));
+        drupal_add_link(array('rel' => 'alternate',
                           'type' => 'application/rss+xml',
                           'title' => t("%name Subscriptions", array('%name' => $user->name)),
                           'href' => url('subscriptions/feed')));
+      }
       return $message;
       break;
   }
