mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
switch to From: Header instead of date to compensate for older libmagic versions
This commit is contained in:
parent
6809b15ce1
commit
c04b9fd7f6
@ -342,7 +342,7 @@ class MailAccountHandler(LoggingMixin):
|
||||
suffix=".eml",
|
||||
)
|
||||
with open(temp_filename, "wb") as f:
|
||||
# Move "Date"-header to beginning of file
|
||||
# Move "From"-header to beginning of file
|
||||
# TODO: This ugly workaround is needed because the parser is
|
||||
# chosen only by the mime_type detected via magic
|
||||
# (see documents/consumer.py "mime_type = magic.from_file")
|
||||
@ -351,12 +351,12 @@ class MailAccountHandler(LoggingMixin):
|
||||
# detects text/plain.
|
||||
# This also effects direct file consumption of .eml files
|
||||
# which are not treated with this workaround.
|
||||
date_element = None
|
||||
from_element = None
|
||||
for i, header in enumerate(message.obj._headers):
|
||||
if header[0] == "Date":
|
||||
date_element = i
|
||||
if date_element:
|
||||
new_headers = [message.obj._headers.pop(date_element)]
|
||||
if header[0] == "From":
|
||||
from_element = i
|
||||
if from_element:
|
||||
new_headers = [message.obj._headers.pop(from_element)]
|
||||
new_headers += message.obj._headers
|
||||
message.obj._headers = new_headers
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user