> File "/usr/lib/python3.8/mailbox.py", line 781, in get_message
> msg.set_from(from_line[5:].decode('ascii'))
> UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 37:
> ordinal not in range(128)
> Exit code: 1
>
> IMHO it is a bug if those mailboxes can't be read. Am
On Wed, Aug 19, 2020 at 10:31:55PM +0530, Nilesh Patra wrote:
>
> For me the error goes way for me when I change line 781 in
> /usr/lib/python3.8/mailbox.py
> to:
>
> msg.set_from(from_line[5:].decode('utf-8'))
>
> May be this is a minor feature enhancement since at the moment messages with
>
Hi,
> Traceback (most recent call last):
> File "./test_mbox.py", line 6, in
>if mbox_file.items() != []:
> File "/usr/lib/python3.8/mailbox.py", line 132, in items
>return list(self.iteritems())
> File "/usr/lib/python3.8/mailbox.py", line 125, in iteritems
>value = self[key]
> F
3 matches
Mail list logo