From 4babfa1a5b286aeb144d852f198dbb6771d6dd3d Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Fri, 11 May 2018 14:01:10 +0200 Subject: [PATCH] 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. --- src/documents/mail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/mail.py b/src/documents/mail.py index 7cc417bfd..f1a84d8e0 100644 --- a/src/documents/mail.py +++ b/src/documents/mail.py @@ -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): """