fix name for attachment when content type is application/octet-stream

This commit is contained in:
Emil Nicolaie Perhinschi 2021-08-12 23:25:24 +03:00
parent 64531cf1db
commit 47744e75f2
1 changed files with 9 additions and 1 deletions

10
email.d
View File

@ -351,12 +351,20 @@ class MimePart {
string gpgproto;
MimeAttachment toMimeAttachment() {
import std.array: empty;
import std.stdio:writeln;
if(type == "multipart/mixed" && stuff.length == 1)
return stuff[0].toMimeAttachment;
MimeAttachment att;
att.type = type;
att.filename = filename;
if ( att.type == "application/octet-stream" && filename.empty && !name.empty ) {
writeln("============>>>>", type, "<<<, name: ", name.length, ", filename: ", filename.length);
att.filename = name;
} else {
att.filename = filename;
}
att.id = id;
att.content = content;
return att;