Skip to content
This repository has been archived by the owner on Jan 6, 2024. It is now read-only.

Commit

Permalink
add option to extract .msg files to view it without importing it as .…
Browse files Browse the repository at this point in the history
…eml in Evolution
  • Loading branch information
schorschii committed Jul 15, 2021
1 parent fc00c92 commit 43d7d31
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
8 changes: 5 additions & 3 deletions action-convert-msg/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ Convert Outlook .msg files to .eml files for usage with Thunderbird or Evolution
Download and install the `.deb` package from [the latest release on Github](https://github.com/schorschii/nemo-extensions/releases).

## Manual Installation
1. Install required packages: `apt install nemo libemail-outlook-message-perl libemail-sender-perl`
2. Copy `convert-msg.nemo_action` into `/usr/share/nemo/actions`.
3. Right-click on a .msg file, then select `Convert to .eml`.
1. Install required packages:
- `apt install nemo libemail-outlook-message-perl libemail-sender-perl python3 python3-pip python3-wheel`
- `sudo -H pip3 install extract-msg`
2. Copy `convert-msg.nemo_action` and `unpack-msg.nemo_action` into `/usr/share/nemo/actions`.
3. Right-click on a .msg file, then select `Convert to .eml` or `Unpack .msg`.

## Support
Found a bug? Great!
Expand Down
2 changes: 1 addition & 1 deletion action-convert-msg/convert-msg.nemo_action
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Name=Convert to .eml
Name[de]=In .eml konvertieren
Quote=double
Exec=bash -c 'cd %P && msgconvert %F'
Icon-Name=convertall
Icon-Name=gtk-convert
Selection=NotNone
Extensions=msg;
Dependencies=msgconvert
9 changes: 9 additions & 0 deletions action-convert-msg/unpack-msg.nemo_action
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[Nemo Action]
Name=Unpack .msg
Name[de]=.msg entpacken
Quote=double
Exec=bash -c 'cd %P && extract_msg %F'
Icon-Name=extract-archive
Selection=NotNone
Extensions=msg;
Dependencies=msgconvert

0 comments on commit 43d7d31

Please sign in to comment.