如何查看 Outlook .msg 文件?

Eri*_*son 69 file-format microsoft-office

我需要查看 .msg 文件。这是一封来自 Microsoft Outlook 的电子邮件。我怎样才能在 Ubuntu 中做到这一点?

Wil*_*ard 43

基于 Martin Owens 的回答,这是快速解决方案:

wget http://www.matijs.net/software/msgconv/msgconvert.pl
sudo apt-get install libemail-outlook-message-perl libemail-localdelivery-perl libemail-sender-perl
perl msgconvert.pl YourMessage.msg
Run Code Online (Sandbox Code Playgroud)

  • 对于 Ubuntu 14.04,我还需要这个包:`libemail-sender-perl` (4认同)

Mar*_*mo- 33

看起来最好的办法是使用以下脚本将它们转换为 eml 文件:

http://www.matijs.net/software/msgconv/

它不漂亮,它不是基于 gui,但它会工作。

  • 我可以使用`sudo apt install libemail-outlook-message-perl`在我的计算机上安装它,然后只需`msgconvert xyz.msg`,我就会得到一个`xyz.eml`文件 (2认同)

小智 19

用 MsgViewer 打开它http://sourceforge.net/projects/msgviewer/

wget -O MSGViewer.zip http://sourceforge.net/projects/msgviewer/files/latest/download
unzip MSGViewer.zip
cd MSGViewer-1.9
java -jar MSGViewer.jar
Run Code Online (Sandbox Code Playgroud)

现在,只需将 msg 文件拖放到程序窗口即可显示其内容。


mna*_*gel 19

我在 Ubuntu 15.10 上并且 matijs 的 msgconvert 脚本现在似乎在 repos 中可用。运行后:

sudo apt-get install libemail-outlook-message-perl libemail-localdelivery-perl libemail-sender-perl

我现在可以跑了

msgconvert *.msg

使用 repos 中的工具完全转换消息。