mirror of https://github.com/adamdruppe/arsd.git
Merge pull request #298 from emil-perhinschi/master
fix for attachment filename when content-type is application/octet-stream
This commit is contained in:
commit
b19472fdec
10
email.d
10
email.d
|
@ -351,12 +351,18 @@ class MimePart {
|
||||||
string gpgproto;
|
string gpgproto;
|
||||||
|
|
||||||
MimeAttachment toMimeAttachment() {
|
MimeAttachment toMimeAttachment() {
|
||||||
if(type == "multipart/mixed" && stuff.length == 1)
|
import std.array: empty;
|
||||||
|
|
||||||
|
if(type == "multipart/mixed" && stuff.length == 1)
|
||||||
return stuff[0].toMimeAttachment;
|
return stuff[0].toMimeAttachment;
|
||||||
|
|
||||||
MimeAttachment att;
|
MimeAttachment att;
|
||||||
att.type = type;
|
att.type = type;
|
||||||
att.filename = filename;
|
if ( att.type == "application/octet-stream" && filename.empty && !name.empty ) {
|
||||||
|
att.filename = name;
|
||||||
|
} else {
|
||||||
|
att.filename = filename;
|
||||||
|
}
|
||||||
att.id = id;
|
att.id = id;
|
||||||
att.content = content;
|
att.content = content;
|
||||||
return att;
|
return att;
|
||||||
|
|
Loading…
Reference in New Issue