--- thunderbird-1.5/chrome/newsblog.jar/content/messenger-newsblog/FeedItem.js	2005-09-20 15:06:00.000000000 -0700
+++ FeedItem.js	2006-04-08 19:04:55.403891200 -0700
@@ -151,6 +151,7 @@
     else if (this.content) 
     {
       debug(this.identity + " has content; storing");
+/*
       var content = MESSAGE_TEMPLATE;
       content = content.replace(/%CONTENT_TEMPLATE%/, LOCAL_CONTENT_TEMPLATE);
       content = content.replace(/%STYLE%/, LOCAL_STYLE);
@@ -159,6 +160,7 @@
       content = content.replace(/%URL%/g, this.mURL);
       content = content.replace(/%CONTENT%/, this.content);
       this.content = content; // XXX store it elsewhere, f.e. this.page
+*/
       this.writeToFolder();
     }
     else if (this.feed.quickMode) 
@@ -167,6 +169,7 @@
 
       this.content = this.description || this.title;
 
+/*
       var content = MESSAGE_TEMPLATE;
       content = content.replace(/%CONTENT_TEMPLATE%/, LOCAL_CONTENT_TEMPLATE);
       content = content.replace(/%STYLE%/, LOCAL_STYLE);
@@ -175,6 +178,7 @@
       content = content.replace(/%URL%/g, this.mURL);
       content = content.replace(/%CONTENT%/, this.content);
       this.content = content; // XXX store it elsewhere, f.e. this.page
+*/
       this.writeToFolder();
     } 
     else 
@@ -348,7 +352,10 @@
     // need to write it into the message, we also need to use it to calculate
     // the offset of the X-Mozilla-Status lines from the front of the message
     // for the statusOffset property of the DB header object.
-    var openingLine = 'From - ' + this.mDate + '\n';
+    var openingLine = 'From - ' + this.mDate; // + '\n';
+
+    var source = openingLine + this.content;
+/*
 
     var source =
       openingLine +
@@ -379,6 +386,7 @@
                
     }
 
+*/
     debug(this.identity + " is " + source.length + " characters long");
 
     // Get the folder and database storing the feed's messages and headers.

