in reply to Re^2: Email::MIME support for utf8 filename
in thread Email::MIME support for utf8 filename
Yes, that makes it much easier to find where the warning originates:
The warning comes from Email::MIME::ContentType line 106:
if ($STRICT_PARAMS and length $ct and $ct !~ /^;/) { carp "Missing semicolon before first Content-Type parameter '$ +ct'";
So, one very simplistic workaround is to set $Email::MIME::ContentType::STRICT_PARAMS to 0 to suppress this warning.
I don't know where/why the content type string goes awry, but that's to debug another day...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Email::MIME support for utf8 filename
by Arik123 (Beadle) on Dec 27, 2018 at 08:25 UTC | |
by Corion (Patriarch) on Dec 27, 2018 at 11:21 UTC |