mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-12-13 10:21:05 +01:00
Merge pull request #951 from passiv/master
Prevent filename collisions when processing attachments
This commit is contained in:
commit
0bdaa87a58
@ -551,6 +551,8 @@ def object_from_message(message, queue, logger):
|
|||||||
if not name:
|
if not name:
|
||||||
ext = mimetypes.guess_extension(part.get_content_type())
|
ext = mimetypes.guess_extension(part.get_content_type())
|
||||||
name = "part-%i%s" % (counter, ext)
|
name = "part-%i%s" % (counter, ext)
|
||||||
|
else:
|
||||||
|
name = ("part-%i_" % counter) + name
|
||||||
|
|
||||||
# FIXME: this code gets the paylods, then does something with it and then completely ignores it
|
# FIXME: this code gets the paylods, then does something with it and then completely ignores it
|
||||||
# writing the part.get_payload(decode=True) instead; and then the payload variable is
|
# writing the part.get_payload(decode=True) instead; and then the payload variable is
|
||||||
|
Loading…
Reference in New Issue
Block a user