Perl MIME::Entity: 避免多行内容类型

Perl MIME::Entity: Avoid multiline content-type

如果我使用 MIME::Entity 并设置自定义内容类型,那么它是多行的。

my $mime = MIME::Entity->build (Type => "multipart/related; myid=\"max123\"; type=\"xml\";",    "X-Mailer" => "");

生产

...
Content-Length: 1111
Content-Type: multipart/related;
 myid="max123"; type="xml";
 boundary="----------=_1461591465-23266-0"
Content-Transfer-Encoding: binary
....

我可以把content-type做成oneliner吗??

我想要什么:

Content-Length: 1111
Content-Type: multipart/related; myid="max123"; type="xml"; boundary="----------=_1461591465-23266-0"
Content-Transfer-Encoding: binary

我正在寻找我没有找到的标准方式(参数或设置)。 我最后的办法是更改代码或更改字符串。

谢谢, 克里斯

从开发者那里得到了信息。这不可能。所以我认为上面的替换是最好的方法。