最聪明, 最有效的导入解决方案, 导出和恢复所有 Outlook 邮件数据.

产品所有职位

MBOX 电子邮件提取器 是一个易于使用, 绝对免费 mbox 转换器. 该实用程序允许用户有效地从 .mbox 和. mbx 文件 要执行 mbox-EML 转换, 将它们保存为单独的. eml 文件. 结合 Outlook Import向导, 该程序是一个强大的工具 mbox 出口 来自 Mozilla 雷鸟的消息, eudora, 歌剧邮件, KMail, 收费公路和 MailCopa 邮件客户端后 PST 导入 进入 MS Outlook. 注意到实用程序在用户中的普及程度, 我们决定完善 MBOX 的电子邮件提取器, 并为您提供一个完全更新的程序版本.

主要变更涉及文件批处理. 您将不再被迫多次执行相同的操作, 因为需要 转换 mbox 文件分开: 新功能允许选择 (使用 Shift 键) 多个源. mbox 文件, 通常位于邮件客户端的配置文件文件夹中, 同时. 在此之后, 该程序将要求指定磁盘上的空目录, 将创建每个. mbox 文件的单独子文件夹: 从中提取的消息 mbox 至 EML 将放在他们. When this is complete, 您将收到一个具有. eml 文件的现成目录结构, 这是理想的 EML 到 PST 使用 outlook 导入向导导入 MS outlook, 这使得这 EML 导入 possible. 总之, MBOX 电子邮件提取器是一个辅助工具 mbox-PST 文件转换. 程序的接口已更改以适应新功能, 新的管理元素也被添加到程序中.

转换器现代化时, 特别注意自动进 mbox 文件 类型检测. 此功能最需要在执行 电子邮件导出 从 UNIX 系统 (KMail) 和 Mac OS (Mac OS 雷鸟). 现在, 当你 转换 mbox 文件, MBOX 电子邮件提取器自动检测它正在转换的文件的编码, 并, 必要时, 更改它以便在与 Windows 兼容的格式中保存生成的. eml 文件 mbox 至 EML 转换. 多亏了程序的更新算法, 文件的处理时间已经加快了几十倍! 不相信它? 查看此更新的功能 mbox 转换器 right now!

和以前一样, MBOX 电子邮件提取器是绝对免费分发. 该实用程序不需要安装, 可以作为独立的应用程序使用, EML-mbox 提取邮件消息. Additionally, MBOX 电子邮件提取器是 Outlook 导入向导的安装软件包的一部分.

免费的电子邮件提取器

注释关闭 免费电子邮件提取器
免费电子邮件提取软件的 Mac 邮件, Windows 邮件, 实时邮件, 蝙蝠, 雷鸟, 随行人员和其他电子邮件客户端. 阅读更多

Export Outlook Emails and Contacts with Outlook Export Wizard

注释关闭 on Export Outlook Emails and Contacts with Outlook Export Wizard
导出 Outlook 电子邮件和与多功能导出和转换工具的联系人. outlook 导出向导启用 outlook 电子邮件的提取导出, 笔记, 联系人, 日历, 任务, 日记项目简单地把, 您可以在 Outlook 中找到的各种对象和项目, 并将其转换为其他格式以供进一步编辑, 由第三方应用程序发布或处理. 阅读更多

导出邮件从Entourage到Outlook

注释关闭 关于将电子邮件从 Entourage 导出到 Outlook

我最近有一堆电子邮件从Entourage和到Outlook导出, 为了送他们到别人的格式,他们可以浏览和PC上阅读. You’d think that exporting a selection of emails from one Microsoft email management tool to another would be easy, 对? Sadly not. Thankfully, 有点AppleScript的和相对便宜的效用得到的东西为我工作. This post describes how.

主要问题是缺乏的Entourage之间的通用格式 (.MBOX的文件夹, .EML个人电子邮件) 与展望 (.PST的一切). 曾经有一个很好的AppleScript出口工具,从Entourage出口, 但可悲的是它从来没有被更新,以豹工作. You can export a whole folder as an MBOX file from Entourage, 但这些不能被Outlook中打开,因此没有太大的兼用.

(作为旁白, there are numerous ways to go the other way, 从Outlook导出和导入到Entourage. It’s almost as if lots of people are switching from PC to Mac, 但很少需要在另一个方向去...)

我最终的解决方案有两个部分 - 让邮件出的Entourage, 然后得到它到Outlook.

获取邮件外发的Entourage

对于这部分, 我写了一个AppleScript (很大程度上基于来自 macosxhints 的一些代码) 在Entourage中所有当前选择的电子邮件导出到一个文件夹在我的Mac. Many thanks to macosxhints user golgi_body for posting the original code.

下面是我使用的脚本 (复制到脚本编辑器这种使用它):


告诉应用程序 "微软随行人员"

    -- get a reference to all selected messages from entourage
    set selectedMessages to the current messages
    if selectedMessages is {} then
        return
    end if

    -- absolute reference to our export folder
    set fpath to "磁盘名称:Users:我的用户名:Documents:现有文件夹:"

    repeat with i in selectedMessages

        set sentDate to time sent of i
        set fname to fpath ¬
            & 我的号码(sendDate 的年份为整数) ¬
            & "-" & 我的号码(sentDate 的月份为整数) ¬
            & "-" & 我的号码(sentDate 的日期为整数) ¬
            & "-" & 我的号码(sendDate 的小时数为整数) ¬
            & "-" & 我的号码(sentDate 的分钟数为整数) ¬
            & "-" & 我的号码(sentDate 的秒数为整数) ¬

        tell application "发现者"
            if (存在文件 (fname & ".EML")) then
                set k to 1
                重复 (存在文件 (fname & "-" & (k 作为字符串) & ".EML"))
                    将 k 设置为 k + 1
                end repeat
                set fname to (fname & "-" & (k 作为字符串))
            end if
        end tell

        set fname to fname & ".EML"
        save i in fname
        tell application "发现者" to update file fname

    end repeat

end tell

to padNumber(号码)
    如果数字小于 10 then
        return "0" & theNumber
    else
        return theNumber
    end if
end padNumber

你需要设置fpath是在Mac上的现有文件夹的路径. 当您在脚本编辑器这个脚本, 所有Entourage中选定的文件将被导出到您的导出文件夹作为.eml文件.

为什么使用AppleScript的所有? Why not just drag the selected emails onto a folder? After all, 这个提示的Entourage他们本身导出的.eml格式. The problem is, 当你这样做, 随行人员使用导出邮件主题作为文件名的电子邮件. This can contain all sorts of weird and wonderful characters, 和Windows不喜欢,在所有. This script avoids the problem altogether by using the date and time the email was sent as the filename. (这也使得,如果你需要它更容易为了你的日期和时间在Finder中.eml文件。)

获取邮件到Outlook

对于这部分, I used a Windows utility called Outlook Import向导. It costs $25.95, 但它是值得更多的是当你考虑的时间就可以节省. You can download it and try it out for free (最大 5 每个演示进口电子邮件), 但被警告 - 在演示模式, 你不能打开“启用EML预处理 (unix, mac)”选项,以使向导识别Mac编码的电子邮件, 所以你的邮件进口将包含大量的“=”符号时您在Outlook中查看它们. The good news is that the purchased app works fine with Mac-encoded emails.

导入过程是很容易的. On your PC with Outlook installed, 通过Outlook导入向导工作, 为确保打开“启用EML预处理 (unix, mac)"选项 (下的“选项”按钮,找到“选择源文件夹”屏幕上) 以确保您的Mac编码的电子邮件确认. The wizard is pretty self-explanatory, and there are 在线完整说明, 所以我不会通过的设置详细其余这里运行. It’ll take a while to do the import, 但最终你会拥有所有Outlook中的电子邮件, 与所有附件和原标题.

我只试过这个过程中自己与Entourage 2008 (在Leopard) 与展望 2002 (在XP), 但我希望它与早期版本的Entourage工作太. The Outlook Import Wizard claims to work on Windows 98/Me/NT 4.0/2000/XP/2003 with Outlook 98/2000/2002/2003/2007/2010/2013/2016/2019, 所以你应该去的好,无论你的设置.

戴夫·阿迪的原创文章