Set default empty PAPERLESS_EMAIL_SECRET

Previously, if the user didn't set PAPERLESS_EMAIL_SECRET, Paperless
failed with an error in check_body() because self.SECRET was None.
This commit is contained in:
Erik Arvstedt 2018-05-11 14:01:10 +02:00
parent aa2fc84d7f
commit 4babfa1a5b

View File

@ -42,7 +42,7 @@ class Message(Loggable):
and n attachments, and that we don't care about the message body.
"""
SECRET = os.getenv("PAPERLESS_EMAIL_SECRET")
SECRET = os.getenv("PAPERLESS_EMAIL_SECRET", "")
def __init__(self, data, group=None):
"""