Quote:
Originally posted by pmaloney
Hey!
I've tried to backup and restore all the mail files in Mozilla, but didn't have any luck. So I switched to Kmail and heven't tried it yet.
Does anyone know the proper way to backup and restore mail in linux? IN whatever email client you want....I'll try anything four times...
Cheers!
|
Gidday!
I'm using KMail here at work, and "saving" my KMail-directory
to a novell-network server here @ work with a little rsync script
that's run from .bash_logout ... works fine for me :) - actually I've
gone one step further ... in my home I created a directory called
work, in that I put symlinks of all directories & files that I want to
be back-up'ed.
#!/bin/sh
cd ~
rsync -a -v -L work/ /h/USERS/tink/work/
The only potential problem that I can see in your setup (I didn't look
at how Mozilla stores the mail) is that your user ID (not the name,
the associated UID number) is different on the new distro and you
therefor might not have access rights to it?
Cheers,
Tink