Thunderbird How-To Copy/Backup/Restore Accounts and Settings to Another Computer

The best way is to use rsync, I've set it up so it doesn't copy unnecessary files, or at least ones I'm sure aren't needed.

Here is the rsync command I used (adapt to your specific Thunderbird profile location):

rsync -hazv user@remotehost.com:/home/user/.thunderbird/sbrer.default/* /home/user/.thunderbird/4nyb0.default/ --exclude=global* --exclude=Cache --exclude=ImapMail --exclude=Mail

This is a great way to get your e-mail accounts going on a new computer no matter where you are, or on a new install of Thunderbird.

Keep the exclude statements, I excluded "global*" because those are the message databases and can be gigabytes in size.  I also excluded the Cache ImapMail and Mail folders for the same reason.

The above command made it so when I opened Thunderbird that all my account settings/folders were there so I didn't have to manually create anything.  This saves the hassle of setting up again especially if you have several mail accounts and custom settings (eg. SSL specific ports etc..)

Update the best way*

I finally figured out what files you need as a minimum to restore your e-mail accounts and settings. 

They are as follows:

prefs.js
key3.db
signons3.txt
signons.sqlite
abook*

*Note that I had to disable all add-ons to make it work on one of my machines (it would take100% CPU and loop for more than 24 hours).  This may be because I have dozens of e-mail accounts with several hundred thousands of messages.

How to Copy msgFilters

They are stored inside a folder inside your profile which will either be "Mail" or "ImapMail" depending on if you use POP3 or IMAP.

Here is a script I've made for bash/Linux to automatically do it.  For it to work you need to enter the original/old profile folder.

eg. /home/youruser/.thunderbird/abcprofile-default

cd /home/youruser/.thunderbird/abcprofile-default

Put this code into a file in your folder profile and make it executable chmod +x

#!/bin/bash

dest=$1
if [ -d "$dest" ]; then
for filter in `find .|grep -i msgFilterRules`; do
 echo "copy $filter to $dest"
 cp -a $filter $dest/$filter
done
fi

Execute it below by passing it the path/dir of your new profile

./thescriptabove.sh /home/user/.thunderbird/newprofile-default

This script works great for me because I have dozens of mail boxes so it saves me from manually copying.


Tags:

thunderbird, restore, settings, computerthe, rsync, ve, doesn, unnecessary, aren, adapt, hazv, user, remotehost, sbrer, default, nyb, exclude, global, cache, imapmail, install, statements, excluded, quot, databases, gigabytes, folders, didn, manually, saves, hassle, custom, eg, ssl, ports, etc, update, follows, prefs, js, db, signons, txt, sqlite, abook, disable, ons, cpu, dozens, msgfilters, stored, folder, depending, imap, bash, linux, automatically, youruser, abcprofile, executable, chmod, bin, dest, filter, grep, msgfilterrules, echo, cp, fi, execute, dir, thescriptabove, sh, newprofile, copying,

Latest Articles

  • How high can a Xeon CPU get?
  • bash fix PATH environment variable "command not found" solution
  • Ubuntu Linux Mint Debian Redhat Youtube Cannot Play HD or 4K videos, dropped frames or high CPU usage with Nvidia or AMD Driver
  • hostapd example configuration for high speed AC on 5GHz using WPA2
  • hostapd how to enable and use WPS to connect wireless devices like printers
  • Dell Server Workstation iDRAC Dead after Firmware Update Solution R720, R320, R730
  • Cloned VM/Server/Computer in Linux won't boot and goes to initramfs busybox Solution
  • How To Add Windows 7 8 10 11 to GRUB Boot List Dual Booting
  • How to configure OpenDKIM on Linux with Postfix and setup bind zonefile
  • Debian Ubuntu 10/11/12 Linux how to get tftpd-hpa server setup tutorial
  • efibootmgr: option requires an argument -- 'd' efibootmgr version 15 grub-install.real: error: efibootmgr failed to register the boot entry: Operation not permitted.
  • Apache Error Won't start SSL Cert Issue Solution Unable to configure verify locations for client authentication SSL Library Error: 151441510 error:0906D066:PEM routines:PEM_read_bio:bad end line SSL Library Error: 185090057 error:0B084009:x509 certif
  • Linux Debian Mint Ubuntu Bridge br0 gets random IP
  • redis requirements
  • How to kill a docker swarm
  • docker swarm silly issues
  • isc-dhcp-server dhcpd how to get longer lease
  • nvidia cannot resume from sleep Comm: nvidia-sleep.sh Tainted: Linux Ubuntu Mint Debian
  • zfs and LUKS how to recover in Linux
  • [error] (28)No space left on device: Cannot create SSLMutex Apache Solution Linux CentOS Ubuntu Debian Mint