mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
[#100] Do not insert unix 'From' header in saved messages.
This commit is contained in:
parent
9048ee4d34
commit
f524031965
1 changed files with 1 additions and 1 deletions
|
|
@ -332,7 +332,7 @@ class Mailbox(models.Model):
|
|||
if settings['store_original_message']:
|
||||
msg.eml.save(
|
||||
'%s.eml' % uuid.uuid4(),
|
||||
ContentFile(message.as_string(unixfrom=True)),
|
||||
ContentFile(message.as_string()),
|
||||
save=False
|
||||
)
|
||||
msg.mailbox = self
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue