Forked from cubapp/howto-migratePSTintoThunderbird.txt
Created
October 20, 2020 18:57
-
-
Save rcarmo/af9c7170a755194712a3307949c99acf to your computer and use it in GitHub Desktop.
Migrate from Outlook PST to Thunderbird
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Terminal: | |
sudo apt install pst-utils | |
mkdir migrated-emails | |
readpst -o ./migrated-emails -M -u -w -e -b outlook.pst | |
Thunderbird: | |
1. install "ImportExportTools NG" add on | |
2. make new folder "MigratedEmails" in Thunderbird - preferably in "Lofal Folders" | |
3. right click on MigratedEmails folder -> ImportExportTools NG | |
-> import all messages from a directory | |
-> also from its subdirectories | |
4. choose "migrated-emails" folder | |
5. wait and you'll see emails apearing in the MigratedEmails folder. | |
# thanks to | |
# https://www.exratione.com/2013/11/importing-email-from-outlook-on-windows-to-thunderbird-on-ubuntu/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment