mirror of
https://github.com/d99kris/nmail.git
synced 2026-04-26 09:46:01 +03:00
[GH-ISSUE #55] [Bug] Message with email forwarded as an attachment only shows the content of the attached email #50
Labels
No labels
bug
enhancement
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/nmail#50
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Kabouik on GitHub (Sep 30, 2020).
Original GitHub issue: https://github.com/d99kris/nmail/issues/55
Originally assigned to: @d99kris on GitHub.
I just received a message (A) from someone using Outlook's features to forward another message (B) as an attached file. In OWA, when you open A, you can see what they wrote in this message and an icon for the attached message (B) is visible. Clicking on the attachment icon will open a new browser window with OWA showing the forwarded message (with its own attachments).
In nmail, A is only visible when HTML conversion is disabled, or when opening the corresponding plain text file (but it is not obvious that the multiple text files correspond to A and B):
I'm not sure if this can be improved or depends on the HTML conversion tool (
lynxin my case). Maybe it's just the usual mess with HTML messages, and in that case it's fine to just toggle HTML on and off witht. However the difference here is it is not obvious that we are missing some content when viewing the HTML version, because it shows the forwarded message just fine, while usually I would toggle HTML on/off because the HTML version is unreadable, without ambiguity.@d99kris commented on GitHub (Sep 30, 2020):
Thanks for reporting @Kabouik - I haven't come across this scenario in my own normal usage, but now when I test sending an attached email using Outlook I can see the behaviour you describe.
It is likely not an issue with
lynxbut rather with hownmailparses the email attachments. I will need to look into hownmailshould process these type of email messages.@d99kris commented on GitHub (Jan 20, 2021):
Thanks for reporting this issue @Kabouik - a fix has been implemented, and now any attached email messages should show up as as
.emlattachment innmail.Please let me know if you still encounter any issues relating to this. Thanks!
@d99kris commented on GitHub (Jan 21, 2021):
Additional changes were implemented in
392bd75to ensure message list correctly indicates whether an email has an email message attachment. These changes will cause cache to be cleared. I don't foresee any more such changes in a near future.@Kabouik commented on GitHub (Jan 21, 2021):
Thanks!