On Wed, 6 Mar 2002, Matthew Cline wrote:
> On Wednesday 06 March 2002 05:28 pm, Matthew Cline wrote:
>
> > I found that this line of my patch to fix the "MIME null block" problem was
> > causing an infinite loop sometimes:
> >
> > my $boundary = "--$1";
>
> Ugh, that wasn't the only problem.
On Wed, 6 Mar 2002, Matthew Cline wrote:
> And here is the whole patch, all over again, with the anti-infinite-loop fix:
Slightly modified and applied, thanks!
> Index: PerMsgStatus.pm
> ===
> RCS file:
> /cvsroot/spamassassin/spam
On Wednesday 06 March 2002 05:28 pm, Matthew Cline wrote:
> I found that this line of my patch to fix the "MIME null block" problem was
> causing an infinite loop sometimes:
>
> my $boundary = "--$1";
Ugh, that wasn't the only problem. If, for some reason, the boundary pattern
doesn't ma
I found that this line of my patch to fix the "MIME null block" problem was
causing an infinite loop sometimes:
my $boundary = "--$1";
Since it's used in a regular expression, if the boundrary string has regexp
meta-characters in it, things will get messed up. Specifically, if the
bo