fix: Typo in EMailObject

Fix #427
pull/429/head
Raphaël Vinot 2020-09-09 10:56:01 +02:00 committed by GitHub
parent 9f315f1728
commit 2dde6e8757
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ def handler(q=False):
# request data is always base 64 byte encoded
data = base64.b64decode(request["data"])
email_object = EMailObject(pseudofile=BytesIO(data), attach_original_mail=True, standalone=False)
email_object = EMailObject(pseudofile=BytesIO(data), attach_original_email=True, standalone=False)
# Check if we were given a configuration
config = request.get("config", {})