Skip Menu |

This queue is for tickets about the HTTP-Message CPAN distribution.

Report information
The Basics
Id: 81579
Status: resolved
Priority: 0/
Queue: HTTP-Message

People
Owner: Nobody in particular
Requestors: ahoying [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 6.06
Fixed in: (no value)



Some server side libraries do not accept multipart/form-data boundaries with less than 5 dashes. Changing the line in sub boundary from my $size = shift || return "xYzZY"; to my $size = shift || return "-----xYzZY"; fixes the problem.