Godlance
Results
2
comments of
Godlance
I solved this, or at least, found a workaround. Surround your call with a try and except like this: ``` message_data = b'\r\n'.join(lines) try: mail = mailparser.parse_from_bytes(message_data[b"RFC822"]) except Exception as...
Sorry, it seems I wasn't receiving notifications for this issue correctly. @yatakoi In your main.py, line 54, you have the following code: `mail = mailparser.parse_from_bytes(message_data[b"RFC822"])` Replace that line with the...