-
Notifications
You must be signed in to change notification settings - Fork 936
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
include rfc822 as attachments #1389
Conversation
@ahorek Thanks a tonne for this patch! I ran into a problem where Mail wouldn't recognise mail.attachments["foo.eml"] = {mime_type: "message/rfc822", content: "..."}
mail.attachments # => [] And after applying your patch: mail.attachments["foo.eml"] = {mime_type: "message/rfc822", content: "..."}
mail.attachments # => [..] Using the |
Hello! This patch is great and works well. Is there any reason why it hasn't been merged into a release? |
@mikel what's your take on this? What can we do to help you resolve this issue? |
Hey there @svenwin @der-flo @brianknight10 @tatey and of course @ahorek - could one of you please get this rebased onto the latest master and I'll review and merge it then. |
sure thing! done |
ping @eval |
Ported to |
thanks! |
the original feature 1e665e4
before
after
I'm not sure what the correct behavior should be. For instance, Thunderbird includes eml as an ordinary attachment but some other clients don't even if Content-Disposition: attachment;. Thoughts?