Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

newline breaks test #117

Closed
francois4224 opened this issue Nov 17, 2023 · 1 comment
Closed

newline breaks test #117

francois4224 opened this issue Nov 17, 2023 · 1 comment

Comments

@francois4224
Copy link

in mailparser.py:

                    if transfer_encoding == "base64" or (
                       transfer_encoding == "quoted-\
                       printable" and "application" in mail_content_type):
"quoted-\
                       printable" != "quoted-printable"

It should be like this, otherwise it doesn't work:

                    if transfer_encoding == "base64" or (
                       transfer_encoding == "quoted-printable" and "application" in mail_content_type):
@fedelemantuano
Copy link
Contributor

To review in the new version.
I will open a new issue if needed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants