http://bugzilla.spamassassin.org/show_bug.cgi?id=3624
------- Additional Comments From [EMAIL PROTECTED] 2004-07-21 00:22 -------
Remember these lines in spamd? :-)
while ( $_ = $client->getline() ) {
$actual_length += length($_);
last if (defined $expected_length && $actual_length >= $expected_length);
push(@msglines, $_);
}
It exits the loop one line to early. But we put that >= in there to make SSL
work right. I think the push has to come before the test, but I'm going to check
over how that affects the behavior with SSL just to be sure, since we ended up
fiddling with this and breaking it so many times last time we touched it.
I think I'll get to it within the next 5 hours, but I won't assign it to me in
case anybody else wants to take it first.
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.