jeremy-compostella / org-msg

OrgMsg is a GNU/Emacs global minor mode mixing up Org mode and Message mode to compose and reply to emails in a Outlook HTML friendly style.
GNU General Public License v3.0
278 stars 60 forks source link

Support for mu4e 1.8.x fix for #157 #159

Closed gajama closed 1 year ago

gajama commented 1 year ago

Replace existing mu4e code for checking for HTML content and readying message for reply.

Now that mu4e uses message mode it is possible to use similar mechanisms to those already used for GNUS and Notmuch to check if an email has HTML parts, and to process the message prior to replying.

danielfleischer commented 1 year ago

Looks good; it worked with several HTML emails I tested.

danielfleischer commented 1 year ago

One issue I see is it's not correctly encoding "from", "to", "subject" when they are UTF8. For example in Hebrew I get From: =?UTF-8?B?15TXpNeg15nXp9ehINec16nXmdeo15XXqtea?= <FnxService@fnx.co.il>. In another example, it uses quoted-printable (QP) encoding. I think that a processing step is needed.

gajama commented 1 year ago

I'm not sure if my revised commit message is any better. I need to read one of them "how to write a good commit message" articles.

husainaloos commented 1 year ago

Any interest in merging this change to master?

husainaloos commented 1 year ago

Thank you @jeremy-compostella!