How do I back up Thunderbird emails?
How can I back up Thuderbird 10.0.2 emails,etc to flash drive or external hard drive using Ubuntu 10.10
thunderbird
add a comment |
How can I back up Thuderbird 10.0.2 emails,etc to flash drive or external hard drive using Ubuntu 10.10
thunderbird
add a comment |
How can I back up Thuderbird 10.0.2 emails,etc to flash drive or external hard drive using Ubuntu 10.10
thunderbird
How can I back up Thuderbird 10.0.2 emails,etc to flash drive or external hard drive using Ubuntu 10.10
thunderbird
thunderbird
asked Mar 18 '12 at 16:22
David
76113
76113
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Go to your home folder & press " ctrl + h " to view hidden folders
copy & backup " .thunderbird " folder

Inside .thunderbird you should see a bunch of files and folders named Cache, Mail, ImapMail etc
If not, then you have relocated your profile folder.
Your actual profile folder is defined in a file named 'profiles.ini'
Open it with a text viewer/editor and you will see something like this:
[General]
StartWithLastProfile=1
[Profile0]
Name=Default User
IsRelative=0
Path=/media/diskF/ThunderbirdMail/5mu9j6vu.default
Default=1
The 'Path' is the real folder to backup.
add a comment |
I use this monster command:
rsync -rltgoDvz --modify-window=1 --delete ~/.thunderbird/ --exclude="**/global-messages-db.sqlite" --exclude="**/places.sqlite" --exclude="Crash*Reports/" --exclude="**/Cache/" --exclude="**/startupCache/" --exclude="**/OfflineCache/" /path/to/backup/thunderbird
This is for copying to a samba-mounted NAS. The options are "-avz" but minus -p, as permissions don't copy over correctly (so rsync is never happy). If copying to an ext3 partition you also won't need --modify-window (but it also won't do any harm).
The excludes speed things up, by not copying over files that can be regenerated, or are not needed. Especially global-messages-db.sqlite, which can get very big. Some information on what the files each do is here: http://kb.mozillazine.org/Files_and_folders_in_the_profile_-_Thunderbird
add a comment |
Your mail and settings are located in your home folder under ".thunderbird" hidden folder. Just copy that folder to your USB
sudo cp ~/.thunderbird dev/<usb_drive>/thunderbird
Note for users - the USB drive may be located under/media,/run/mediaetc
– Wilf
Aug 12 '17 at 20:14
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f114015%2fhow-do-i-back-up-thunderbird-emails%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Go to your home folder & press " ctrl + h " to view hidden folders
copy & backup " .thunderbird " folder

Inside .thunderbird you should see a bunch of files and folders named Cache, Mail, ImapMail etc
If not, then you have relocated your profile folder.
Your actual profile folder is defined in a file named 'profiles.ini'
Open it with a text viewer/editor and you will see something like this:
[General]
StartWithLastProfile=1
[Profile0]
Name=Default User
IsRelative=0
Path=/media/diskF/ThunderbirdMail/5mu9j6vu.default
Default=1
The 'Path' is the real folder to backup.
add a comment |
Go to your home folder & press " ctrl + h " to view hidden folders
copy & backup " .thunderbird " folder

Inside .thunderbird you should see a bunch of files and folders named Cache, Mail, ImapMail etc
If not, then you have relocated your profile folder.
Your actual profile folder is defined in a file named 'profiles.ini'
Open it with a text viewer/editor and you will see something like this:
[General]
StartWithLastProfile=1
[Profile0]
Name=Default User
IsRelative=0
Path=/media/diskF/ThunderbirdMail/5mu9j6vu.default
Default=1
The 'Path' is the real folder to backup.
add a comment |
Go to your home folder & press " ctrl + h " to view hidden folders
copy & backup " .thunderbird " folder

Inside .thunderbird you should see a bunch of files and folders named Cache, Mail, ImapMail etc
If not, then you have relocated your profile folder.
Your actual profile folder is defined in a file named 'profiles.ini'
Open it with a text viewer/editor and you will see something like this:
[General]
StartWithLastProfile=1
[Profile0]
Name=Default User
IsRelative=0
Path=/media/diskF/ThunderbirdMail/5mu9j6vu.default
Default=1
The 'Path' is the real folder to backup.
Go to your home folder & press " ctrl + h " to view hidden folders
copy & backup " .thunderbird " folder

Inside .thunderbird you should see a bunch of files and folders named Cache, Mail, ImapMail etc
If not, then you have relocated your profile folder.
Your actual profile folder is defined in a file named 'profiles.ini'
Open it with a text viewer/editor and you will see something like this:
[General]
StartWithLastProfile=1
[Profile0]
Name=Default User
IsRelative=0
Path=/media/diskF/ThunderbirdMail/5mu9j6vu.default
Default=1
The 'Path' is the real folder to backup.
edited Jul 15 '12 at 9:32
Community♦
1
1
answered Mar 18 '12 at 16:33
One Zero
17.1k2272106
17.1k2272106
add a comment |
add a comment |
I use this monster command:
rsync -rltgoDvz --modify-window=1 --delete ~/.thunderbird/ --exclude="**/global-messages-db.sqlite" --exclude="**/places.sqlite" --exclude="Crash*Reports/" --exclude="**/Cache/" --exclude="**/startupCache/" --exclude="**/OfflineCache/" /path/to/backup/thunderbird
This is for copying to a samba-mounted NAS. The options are "-avz" but minus -p, as permissions don't copy over correctly (so rsync is never happy). If copying to an ext3 partition you also won't need --modify-window (but it also won't do any harm).
The excludes speed things up, by not copying over files that can be regenerated, or are not needed. Especially global-messages-db.sqlite, which can get very big. Some information on what the files each do is here: http://kb.mozillazine.org/Files_and_folders_in_the_profile_-_Thunderbird
add a comment |
I use this monster command:
rsync -rltgoDvz --modify-window=1 --delete ~/.thunderbird/ --exclude="**/global-messages-db.sqlite" --exclude="**/places.sqlite" --exclude="Crash*Reports/" --exclude="**/Cache/" --exclude="**/startupCache/" --exclude="**/OfflineCache/" /path/to/backup/thunderbird
This is for copying to a samba-mounted NAS. The options are "-avz" but minus -p, as permissions don't copy over correctly (so rsync is never happy). If copying to an ext3 partition you also won't need --modify-window (but it also won't do any harm).
The excludes speed things up, by not copying over files that can be regenerated, or are not needed. Especially global-messages-db.sqlite, which can get very big. Some information on what the files each do is here: http://kb.mozillazine.org/Files_and_folders_in_the_profile_-_Thunderbird
add a comment |
I use this monster command:
rsync -rltgoDvz --modify-window=1 --delete ~/.thunderbird/ --exclude="**/global-messages-db.sqlite" --exclude="**/places.sqlite" --exclude="Crash*Reports/" --exclude="**/Cache/" --exclude="**/startupCache/" --exclude="**/OfflineCache/" /path/to/backup/thunderbird
This is for copying to a samba-mounted NAS. The options are "-avz" but minus -p, as permissions don't copy over correctly (so rsync is never happy). If copying to an ext3 partition you also won't need --modify-window (but it also won't do any harm).
The excludes speed things up, by not copying over files that can be regenerated, or are not needed. Especially global-messages-db.sqlite, which can get very big. Some information on what the files each do is here: http://kb.mozillazine.org/Files_and_folders_in_the_profile_-_Thunderbird
I use this monster command:
rsync -rltgoDvz --modify-window=1 --delete ~/.thunderbird/ --exclude="**/global-messages-db.sqlite" --exclude="**/places.sqlite" --exclude="Crash*Reports/" --exclude="**/Cache/" --exclude="**/startupCache/" --exclude="**/OfflineCache/" /path/to/backup/thunderbird
This is for copying to a samba-mounted NAS. The options are "-avz" but minus -p, as permissions don't copy over correctly (so rsync is never happy). If copying to an ext3 partition you also won't need --modify-window (but it also won't do any harm).
The excludes speed things up, by not copying over files that can be regenerated, or are not needed. Especially global-messages-db.sqlite, which can get very big. Some information on what the files each do is here: http://kb.mozillazine.org/Files_and_folders_in_the_profile_-_Thunderbird
answered Sep 16 '13 at 6:57
Darren Cook
346317
346317
add a comment |
add a comment |
Your mail and settings are located in your home folder under ".thunderbird" hidden folder. Just copy that folder to your USB
sudo cp ~/.thunderbird dev/<usb_drive>/thunderbird
Note for users - the USB drive may be located under/media,/run/mediaetc
– Wilf
Aug 12 '17 at 20:14
add a comment |
Your mail and settings are located in your home folder under ".thunderbird" hidden folder. Just copy that folder to your USB
sudo cp ~/.thunderbird dev/<usb_drive>/thunderbird
Note for users - the USB drive may be located under/media,/run/mediaetc
– Wilf
Aug 12 '17 at 20:14
add a comment |
Your mail and settings are located in your home folder under ".thunderbird" hidden folder. Just copy that folder to your USB
sudo cp ~/.thunderbird dev/<usb_drive>/thunderbird
Your mail and settings are located in your home folder under ".thunderbird" hidden folder. Just copy that folder to your USB
sudo cp ~/.thunderbird dev/<usb_drive>/thunderbird
answered Mar 18 '12 at 16:35
Ringtail
13.5k1249176
13.5k1249176
Note for users - the USB drive may be located under/media,/run/mediaetc
– Wilf
Aug 12 '17 at 20:14
add a comment |
Note for users - the USB drive may be located under/media,/run/mediaetc
– Wilf
Aug 12 '17 at 20:14
Note for users - the USB drive may be located under
/media, /run/media etc– Wilf
Aug 12 '17 at 20:14
Note for users - the USB drive may be located under
/media, /run/media etc– Wilf
Aug 12 '17 at 20:14
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f114015%2fhow-do-i-back-up-thunderbird-emails%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown