The smartest, most effective solutions for Importing, Exporting and Recovering all of your Outlook mail data.

All posts in Products

MBOX Email Extractor is an easy-to-use, absolutely free mbox converter. The utility allows users to efficiently extract e-mail messages from .mbox and .mbx files to perform mbox-EML conversion, saving them as separate .eml files. Combined with Outlook Import Wizard, the program is a powerful tool for mbox export of messages from the Mozilla Thunderbird, Eudora, Opera Mail, KMail, Turnpike and MailCopa mail clients for subsequent PST import into MS Outlook. Noting the utility’s popularity among our users, we decided to perfect MBOX Email Extractor and offer you a completely updated version of the program.

The main change concerns file batch processing. No longer will you be forced to perform the same operation several times because of needing to convert mbox files separately: the new features allow selecting (using the Shift key) several source .mbox files, which are usually located in the mail client’s profiles folder, simultaneously. After this, the program will ask to specify the empty directory on disk where the separate subfolders for each .mbox file will be created: the messages extracted from mbox to EML will placed in them. When this is complete, you receive a ready directory structure with .eml files, which are ideal for EML to PST import for MS Outlook using Outlook Import Wizard, which makes this EML import possible. In short, MBOX Email Extractor is an auxiliary tool for mbox-PST file conversion. The program’s interface has been changed to fit the new features, and new management elements have been added to the program as well.

When modernizing the converter, special attention was paid to automatic incoming mbox file type detection. This feature is most needed when performing an email export from UNIX systems (KMail) and Mac OS (Mozilla Thunderbird for Mac OS). Now when you convert mbox files, MBOX Email Extractor automatically detects the encoding of the file it is converting and, when necessary, changes it so as to save the generated .eml files in a Windows-compatible format after mbox to EML conversion. Thanks to the program’s updated algorithm, the processing time for files has been sped up by several dozen times! Don’t believe it? Check out the features of this updated mbox converter right now!

As before, MBOX Email Extractor is distributed absolutely free. The utility does not require installation and can be used as a self-contained application for EML-mbox extraction of mail messages. Additionally, MBOX Email Extractor is part of the installation package for Outlook Import Wizard.

Free Email Extractor

Comments Off on Free Email Extractor
Free Email Extractor software for Mac Mail, Windows Mail, Live Mail, The Bat, Thunderbird, Entourage and other email clients. Read more

Export Outlook Emails and Contacts with Outlook Export Wizard

Comments Off on Export Outlook Emails and Contacts with Outlook Export Wizard
Export Outlook Emails and Contacts with multi-functional export and conversion tool. Outlook Export Wizard enables the extraction export of Outlook email messages, notes, contacts, calendar, tasks, journal items simply put, all kinds of objects and items you can find in Outlook and convert them into other formats for further editing, publishing or processing by third-party applications. Read more

Exporting emails from Entourage to Outlook

Comments Off on Exporting emails from Entourage to Outlook

I’ve recently had to export a bunch of emails from Entourage and into Outlook, in order to send them to someone in a format they can browse and read on a PC.  You’d think that exporting a selection of emails from one Microsoft email management tool to another would be easy, right? Sadly not. Thankfully, a bit of Applescript and a relatively cheap utility got things working for me.  This post describes how.

The main problem is the lack of a common format between Entourage (.mbox for folders, .eml for individual emails) and Outlook (.pst for everything). There used to be a really good Applescript export tool for exporting from Entourage, but sadly it’s never been updated to work on Leopard.  You can export a whole folder as an MBOX file from Entourage, but these can’t be opened by Outlook and so aren’t much use either.

(As an aside, there are numerous ways to go the other way, to export from Outlook and import into Entourage.  It’s almost as if lots of people are switching from PC to Mac, but few need to go in the other direction…)

My eventual solution has two parts – getting mail out of Entourage, and then getting it in to Outlook.

Getting mail out of Entourage

For this part, I wrote an Applescript (based heavily on some code from macosxhints) to export all currently-selected emails in Entourage to a folder on my Mac.  Many thanks to macosxhints user golgi_body for posting the original code.

Here’s the script I’m using (copy this into Script Editor to use it):


tell application "Microsoft Entourage"

    -- 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 "DiskName:Users:myusername:Documents:existingfolder:"

    repeat with i in selectedMessages

        set sentDate to time sent of i
        set fname to fpath ¬
            & my padNumber(year of sentDate as integer) ¬
            & "-" & my padNumber(month of sentDate as integer) ¬
            & "-" & my padNumber(day of sentDate as integer) ¬
            & "-" & my padNumber(hours of sentDate as integer) ¬
            & "-" & my padNumber(minutes of sentDate as integer) ¬
            & "-" & my padNumber(seconds of sentDate as integer) ¬

        tell application "Finder"
            if (exists file (fname & ".eml")) then
                set k to 1
                repeat while (exists file (fname & "-" & (k as string) & ".eml"))
                    set k to k + 1
                end repeat
                set fname to (fname & "-" & (k as string))
            end if
        end tell

        set fname to fname & ".eml"
        save i in fname
        tell application "Finder" to update file fname

    end repeat

end tell

to padNumber(theNumber)
    if theNumber is less than 10 then
        return "0" & theNumber
    else
        return theNumber
    end if
end padNumber

You’ll need to set fpath to be the path to an existing folder on your Mac. When you run this script in Script Editor, all of the selected files in Entourage will be exported to your export folder as .eml files.

Why use Applescript at all?  Why not just drag the selected emails onto a folder?  After all, this prompts Entourage to export them itself in .eml format.  The problem is, when you do so, Entourage exports the emails using the email subject as the file name.  This can contain all sorts of weird and wonderful characters, and Windows doesn’t like that at all. This script avoids the problem altogether by using the date and time the email was sent as the filename.  (It also makes it easier to order your .eml files by date and time in the Finder if you need to.)

Getting mail in to Outlook

For this part, I used a Windows utility called Outlook Import Wizard.  It costs $25.95, but it’s more than worth it when you consider the time it can save.  You can download it and try it out for free (max 5 emails per demo import), but be warned – in demo mode, you can’t turn on the “Enable the EML Preprocessing (Unix, MAC)” option to make the wizard recognise Mac-encoded emails, and so your imported emails will contain lots of “=” symbols when you view them in Outlook.  The good news is that the purchased app works fine with Mac-encoded emails.

The import process is pretty easy.  On your PC with Outlook installed, work through the Outlook Import Wizard, being sure to turn on the “Enable the EML Preprocessing (Unix, MAC)” option (found under the “Options” button on the “Select the source folder” screen) to make sure that your Mac-encoded emails are recognised.  The wizard is pretty self-explanatory, and there are full instructions online, so I won’t run through the rest of the settings in detail here.  It’ll take a while to do the import, but eventually you’ll end up with all of your emails in Outlook, with all attachments and the original headers.

I’ve only tried this process myself with Entourage 2008 (on Leopard) and Outlook 2002 (on XP), but I would expect it to work with earlier versions of Entourage too.  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, so you should be good to go no matter what your setup.

Original Article by Dave Addey