当前位置: 首页>>技术教程>>正文


如何查看Outlook .msg文件?

, ,

问题描述

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

最佳解决方法

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

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

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

次佳解决方法

基于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

第三种解决方法

使用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

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

第四种方法

我在Ubuntu 15.10和matijs’es msgconvert脚本似乎现在在repos中可用。跑完后:

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

我现在可以跑了

msgconvert *.msg

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

第五种方法

我在安装msgconvert后发现在运行命令时没有安装msgconvert。我做了这个,而不是试图调试它。在不到一分钟的时间内完成。 http://www.zamzar.com/convert/msg-to-pdf/

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/1454.html,未经允许,请勿转载。