From 64106a5d6b589616db5ddd07f383b74c66e0b39d Mon Sep 17 00:00:00 2001 From: NavaL Date: Fri, 8 Jan 2016 17:52:32 +0100 Subject: fixed filesize bug Issue #573 --- service/pixelated/adapter/model/mail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'service/pixelated/adapter/model/mail.py') diff --git a/service/pixelated/adapter/model/mail.py b/service/pixelated/adapter/model/mail.py index 1a505481..dd2f4c0d 100644 --- a/service/pixelated/adapter/model/mail.py +++ b/service/pixelated/adapter/model/mail.py @@ -116,7 +116,7 @@ class Mail(object): attachment_mime = MIMENonMultipart(major, sub) base64_attachment_file = binascii.b2a_base64(attachment['raw']) attachment_mime.set_payload(base64_attachment_file) - attachment_mime['Content-Disposition'] = 'attachment; filename="%s"' % attachment['filename'] + attachment_mime['Content-Disposition'] = 'attachment; filename="%s"' % attachment['name'] attachment_mime['Content-Transfer-Encoding'] = 'base64' mime.attach(attachment_mime) -- cgit v1.2.3