Merge pull request #298 from emil-perhinschi/master

fix for attachment filename when content-type is application/octet-stream
This commit is contained in:
Adam D. Ruppe 2021-08-12 16:41:06 -04:00 committed by GitHub
commit b19472fdec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 2 deletions

View File

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