-
Notifications
You must be signed in to change notification settings - Fork 12
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
[Enhancement] Add support for .eml message view keyboard shortcut #68
Comments
Functionality for this has been implemented in above commit. Default key binding is Here's a minimal script example that can be used in order to view the message parts and attachments in the file manager
|
Wow. That was fast and the result is spectacular. Thanks a lot for providing a This added a lot of potential flexibility to There are some messages that show no parts in I have yet to run some tests to see what is the use case for Thanks, it's huge for me! |
That's great to hear! 👍 Yeah, I don't know if |
|
Thanks for sharing!
…On 2021-01-19 04:51 Kabouik ***@***.***> wrote:
`munpack` seems to be a great little tool, and lightweight. However I
think I am getting better results with `mu extract --save-all` from the
`maildir-utils` package despite the much bigger size of the package.
For instance it successfully shows me html parts in the message from
which `munpack` failed to extract parts, and also shows much better
formatting in the plain text parts, while I was getting some encoding
issues with `munpack`-extracted plain text files.
```
#!/usr/bin/env bash
TMPDIR="$(mktemp -d)"
pushd "${TMPDIR}" > /dev/null && \
mu extract --save-all -t "${1}" && \
nnn -aRA && \ # Add nnn options here if necessary
popd > /dev/null
RV="${?}"
rm -rf ${TMPDIR}
exit ${RV}
```
--
You are receiving this because you modified the open/close state.
Reply to this email directly or view it on GitHub:
#68 (comment)
|
This is a feature request to add a keyboard shortcut to view the entire email message (
.eml
file) from message view as well as message list view, in an external program.A user-configurable command shall be used for opening the
eml
-file.This request is related to #42 and #66.
The text was updated successfully, but these errors were encountered: