DrSpirograph
Registered
I've just been helping a colleague out with this, and it turned out to be harder than I'd hoped for moving data between Microsoft applications, so I thought I'd share the method I eventually got it going with.
My colleague had a USB drive with a backup created by Microsoft Outlook (not sure what version), that he wanted to import into Entourage. He did not have access to the original MS Outlook install, as the backup was from a previous computer at a previous job.
The method I followed for getting the emails was.
backup.pst ----(readpst on linux)---> mbox files --> drag and drop into Entourage
for contacts
backup.pst ----(readpst on linux)---> mbox file (but really a vcf file) ---> rename to contacts.vcf ----(MoreFunctions for Address Book plugin)----> Thunderbird ----> .csv file ---> entourage
So for this, you'll need
readpst - http://www.five-ten-sg.com/libpst
Thunderbird - http://www.mozilla.com/thunderbird/
More functions for Thunderbird Addressbook - https://nic-nac-project.org/~kaosmos/morecols-en.html
I used the tools I could use easily, that's why I went for readpst on a linux box, because I run linux - readpst is a command line tool, so it maybe it will also compile directly on OSX, there also seems to be a Cygwin version out there that could run on Windows.
Ubuntu users, note that the version you can get with Ubuntu 8.04 is too old to read the latest Outlook files, instead, I had to download the latest rpm and use alien to install it on Ubuntu.
I've written this assuming you have access to Ubuntu linux 8.04
So:
My colleague had a USB drive with a backup created by Microsoft Outlook (not sure what version), that he wanted to import into Entourage. He did not have access to the original MS Outlook install, as the backup was from a previous computer at a previous job.
The method I followed for getting the emails was.
backup.pst ----(readpst on linux)---> mbox files --> drag and drop into Entourage
for contacts
backup.pst ----(readpst on linux)---> mbox file (but really a vcf file) ---> rename to contacts.vcf ----(MoreFunctions for Address Book plugin)----> Thunderbird ----> .csv file ---> entourage
So for this, you'll need
readpst - http://www.five-ten-sg.com/libpst
Thunderbird - http://www.mozilla.com/thunderbird/
More functions for Thunderbird Addressbook - https://nic-nac-project.org/~kaosmos/morecols-en.html
I used the tools I could use easily, that's why I went for readpst on a linux box, because I run linux - readpst is a command line tool, so it maybe it will also compile directly on OSX, there also seems to be a Cygwin version out there that could run on Windows.
Ubuntu users, note that the version you can get with Ubuntu 8.04 is too old to read the latest Outlook files, instead, I had to download the latest rpm and use alien to install it on Ubuntu.
I've written this assuming you have access to Ubuntu linux 8.04
So:
- Download the latest RPM of readpst (at this time 0.6.22-2)
- Install alien to convert it to an Debian (Ubuntu) package.
In a terminal type:
Code:sudo apt-get install alien
- Convert it to a Debian package
Code:sudo alien libpst-0.6.22-1.i386.rpm
- Install the Debian package
Code:sudo dpkg -i libpst_0.6.22-2_i386.deb
- Use readpst to extract the emails and contacts
Change to the directory where the pst file is.
Code:cd /media/backup/
You'll probably need a few hundred megabytes of free space if you have a lot of emails.
Code:mkdir restore cd restore readpst -r ../backup.pst
The -r option means it will recursively unpack all emails and contacts.
This may take some time.
- Rename the contacts file
I found the contacts in a folder named Contacts.
In this folder the contacts were in a file called mbox, but it was actually a vCard file, so I renamed it appropriately.
Code:cd Contacts mv mbox contacts.vcf
- Install thunderbird and fetch the More Functions plugin and install it
- Open Thunderbird
Don't worry about setting up a new account, you can cancel that wizard. - Open the address book
- Import the addresses
Go to Tools->Actions for Contacts...->Import vCard/vcf - Export the addresses as csv
Go to Tools->Export
Make sure you choose CSV file type, not the default LDIF.
Now you're ready to import it all into Entourage.
For the addresses, just go to File->Import
The option will be something like CSV or text file (sorry remembering this off the top of my head). Then choose your CSV file that you exported.
For your emails:
Open up Entourage on emails, and find or create a folder you want to import them into.
Open a Finder window to where you restored your emails.
When you've found the folder containing your emails in the finder, open that folder, and there'll be a file called mbox, that contains the emails.
Drag that file into Entourage and drop it onto the email folder in entourage you want the emails to be in.
Done!