Skip to content

Handle poplib response as bytes - fixes #633

On Python 3, poplib returns bytes. On Python 2 with unicode_literals, it returns strings. Keeping the email as bytes should avoid problems with special characters and unknown encodings.

Merge request reports