1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00
This commit is contained in:
Andrew Droffner 2017-03-03 18:42:19 +00:00 committed by GitHub
commit 12c1130d40
2 changed files with 3 additions and 1 deletions

View file

@ -1 +1 @@
__version__ = '4.5.4'
__version__ = '4.5.4-issues129'

View file

@ -482,6 +482,7 @@ class Message(models.Model):
eml = models.FileField(
_(u'Raw message contents'),
max_length=2000,
null=True,
upload_to="messages",
help_text=_(u'Original full content of message')
@ -717,6 +718,7 @@ class MessageAttachment(models.Model):
document = models.FileField(
_(u'Document'),
max_length=2000,
upload_to=utils.get_attachment_save_path,
)