Bug 1240 - broken boundary check in check_for_faraway_charset_in_body()
Summary: broken boundary check in check_for_faraway_charset_in_body()
Status: RESOLVED FIXED
Alias: None
Product: Spamassassin
Classification: Unclassified
Component: Rules (Eval Tests) (show other bugs)
Version: SVN Trunk (Latest Devel Version)
Hardware: All All
: P2 normal
Target Milestone: ---
Assignee: SpamAssassin Developer Mailing List
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-12-01 11:40 UTC by Gerd v. Egidy
Modified: 2002-12-01 03:35 UTC (History)
0 users



Attachment Type Modified Status Actions Submitter/CLA Status
patch to fix the boundary detection patch None Gerd v. Egidy [NoCLA]

Note You need to log in before you can comment on or make changes to this bug.
Description Gerd v. Egidy 2002-12-01 11:40:47 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.
Comment 1 Gerd v. Egidy 2002-12-01 11:43:44 UTC
Created attachment 464 [details]
patch to fix the boundary detection
Comment 2 Theo Van Dinter 2002-12-01 12:35:58 UTC
Applied patch to CVS