http://qs1969.pair.com?node_id=11134694

Arik123 has asked for the wisdom of the Perl Monks concerning the following question:

I'm parsing a multipart MIME email, which contains the line:

Content-Type: image/png; name="=?UTF-8?B?15DXmdeZ15PXmSDXqNeWLnBuZw==?="

My code contains:

$email = Email::MIME->new (\$msg); $email->walk_parts( sub { return if $_[0]->subparts; print $_[0]->filename; } );

This produces the following warning:

Unquoted '"' not allowed at ./em_try.pl line 21. Missing semicolon before parameter '"אייד&#149 +7; רז.png"' at ./em_try.pl line 21.

I think it happens only on utf8 filenames, and I think it's a bug. What do you think?