SA Bugzilla – Bug 1240
broken boundary check in check_for_faraway_charset_in_body()
Last modified: 2002-12-01 03:35:58 UTC
Though it looks like there is a small buglet some lines above: --- $content_type =~ /\bboundary\s*=\s*["']?(.*?)["']?(?:;|$)/i; my $boundary = "\Q$1\E"; # No message sections to check return 0 unless ( defined $boundary ); --- we check if $boundary is defined - but that is always the case because of the \Q and \E. Theo told me he has already applied my patch to CVS and I should just open a ticket for reference. So here we go.
Created attachment 464 [details] patch to fix the boundary detection
Applied patch to CVS