In looking at the rewritten messages that SA produces, it looks like a
"=\r" is getting inserted at various points in the message and seems to
break the displaying of various characters in an HTML mail destined for
my Exchange Server and Outlook XP.  Namely, an "=" seems to get inserted
in the places where this "=\r" is, overwriting certain real characters
displayed value.

Example:

logfile 

-- is now -- 

=ogfile

Is this by design/"as intended" from SA for Unix line endings, or a bug?

Sorry if this is documented somewhere.

This perl sub seems to fix it...

sub process_mail {
<snip>
  my $message_text = $mail->header(). "\n". join ('', @{$mail->body()});
  $message_text =~ s/=\r//g;
  $_[0] = $message_text;
}

SA 2.60
Outlook XP
Exchange 2K

P.S. in response to Chris Santerre's message about the ease of getting
his ISP to create a reverse lookup for his domain, mine wanted $5/month
for the single PTR record.  I declined to pay....  :(  LOL

Steven 


-------------------------------------------------------
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
_______________________________________________
Spamassassin-talk mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/spamassassin-talk

Reply via email to