Upgrading Mozilla Thunderbird Email Client from version 1.5 to 2.0 - importing all emails & settings
Mozilla Thunderbird version 1.5 stores all your settings, emails and other stuff in ~/ .mozilla-thunderbird/ directory.
Mozilla thunderbird version 2.0 stores all settings in ~/.thunderbird/ directory. So when you download and upgrade your version you will get a blank and new mail client.
To get back your mail and other settings all you have to do is copy everything from ~/ .mozilla-thunderbird/ to ~/.thunderbird/ directory.
#1: Shutdown thunderbird
#2: Open a shell prompt / X terminal and enter:
$ cd .thunderbird
$ cp -avr ~/.mozilla-thunderbird/* .
#3 Start thunderbird and it will import everything including mails and other settings
#4 Don’t forget to update your extensions for a new version ![]()
Want to stay up to date with the latest Linux tips, news and announcements? Subscribe to our free e-mail newsletter or RSS feed to get all updates.
You can Email this page to a friend.
You may also be interested in other helpful articles:
- Moving Outlook email (data) to Linux Evolution mail client
- What’s new in OpenOffice.Org version 3?
- Linux : How to export public key for others/friends or your recipients
- Moving /home data from old system to new Linux system
- Download of the day: Mozilla Thunderbird 2.0
Discussion on This Article:
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!
Tags: import_email, mail_client, mozilla_thunderbird, upgrade_thunderbird



you should remove the space between ~/ and .mozilla-thunderbird/* .
so: $ cp -avr ~/.mozilla-thunderbird/* .
thanks for the heads up!