http://issues.apache.org/SpamAssassin/show_bug.cgi?id=5179
------- Additional Comments From [EMAIL PROTECTED] 2006-11-12 23:24 -------
Looking at the patch, the line split fix appears to be the good answer, but I
have a small concern about the line that follows after it which appear to insert
the canonical CRLF at the end of the line for the verifier:
+ foreach my $line (split(/\r?\n/s, $header)) {
$line =~ s/\r?$/\r\n/s; # ensure \r\n ending
Given the split pattern will remove LF or CRLF newlines, you want the following
line to insert the canonical CRLF newline:
+ $line =~ s/$/\r\n/s; # ensure \r\n ending
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.