mirror of https://github.com/adamdruppe/arsd.git
fix name for attachment when content type is application/octet-stream
This commit is contained in:
parent
64531cf1db
commit
47744e75f2
10
email.d
10
email.d
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue