You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by fe...@apache.org on 2004/02/02 22:36:50 UTC

svn commit: rev 6435 - incubator/spamassassin/trunk/spamd

Author: felicity
Date: Mon Feb  2 13:36:50 2004
New Revision: 6435

Modified:
   incubator/spamassassin/trunk/spamd/spamd.raw
Log:
spamd wasn't putting the mbox seperator back ... <grrr>

Modified: incubator/spamassassin/trunk/spamd/spamd.raw
==============================================================================
--- incubator/spamassassin/trunk/spamd/spamd.raw	(original)
+++ incubator/spamassassin/trunk/spamd/spamd.raw	Mon Feb  2 13:36:50 2004
@@ -779,7 +779,7 @@
 	$mail = $status->rewrite_mail; #if $status->is_spam;
 
         # Build the message to send back and measure it
-        my $msg_resp = $mail->as_string();
+        my $msg_resp = $mail->get_pristine();
         my $msg_resp_length = length($msg_resp);
         if($version >= 1.3) # Spamc protocol 1.3 means multi hdrs are OK
         {