forked from mirror/django-mailbox
Always store message as attachment if its content-disposition is marked as such.
This commit is contained in:
parent
4c16494b1a
commit
6183f68b39
1 changed files with 4 additions and 1 deletions
|
|
@ -298,7 +298,10 @@ class Mailbox(models.Model):
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
new.set_payload('')
|
new.set_payload('')
|
||||||
elif msg.get_content_type() not in TEXT_STORED_MIMETYPES:
|
elif (
|
||||||
|
(msg.get_content_type() not in TEXT_STORED_MIMETYPES) or
|
||||||
|
('attachment' in msg.get('Content-Disposition', ''))
|
||||||
|
):
|
||||||
filename = msg.get_filename()
|
filename = msg.get_filename()
|
||||||
if not filename:
|
if not filename:
|
||||||
extension = mimetypes.guess_extension(msg.get_content_type())
|
extension = mimetypes.guess_extension(msg.get_content_type())
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue