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

Mime encoded content headers #8

Open
memuyskens opened this issue May 20, 2020 · 0 comments
Open

Mime encoded content headers #8

memuyskens opened this issue May 20, 2020 · 0 comments

Comments

@memuyskens
Copy link

memuyskens commented May 20, 2020

Hello! I help maintain a program that parses emails for specific attachments which uses this library.

I came across a unique email where the Content-Disposition filename looks like this:
"=?iso-8859-1?B?cmVwb3J0XzE4TUFZMjAuY3N2?="

If I use the Header function ContentDisposition() and get the value from key "filename", I would expect it to look like this:
report_18MAY20.csv

I was able to work around this for now using code similar to this:

mimeDecoder := mime.WordDecoder{}
_, params, _ := message.Header.ContentDisposition()
filename, _ := mimeDecoder.DecodeHeader(params["filename"])

Should params be decoded via this library, the mime package's ParseMediaType(), or an end user like myself?

Thanks!

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

1 participant