<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: Easily Use Cron to Backup Thunderbird eMail in Ubuntu Linux</title> <atom:link href="http://ubuntulinuxhelp.com/easily-use-cron-to-backup-thunderbird-email-in-ubuntu-linux/feed/" rel="self" type="application/rss+xml" /><link>http://ubuntulinuxhelp.com/easily-use-cron-to-backup-thunderbird-email-in-ubuntu-linux/</link> <description>Tips, Tricks and How To&#039;s for the Ubuntu Linux User</description> <lastBuildDate>Sun, 29 Jan 2012 22:09:33 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=</generator> <item><title>By: Felix</title><link>http://ubuntulinuxhelp.com/easily-use-cron-to-backup-thunderbird-email-in-ubuntu-linux/#comment-746</link> <dc:creator>Felix</dc:creator> <pubDate>Fri, 29 Aug 2008 11:05:36 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/easily-use-cron-to-backup-thunderbird-email-in-ubuntu-linux/#comment-746</guid> <description>Really cool idea.
I will implement ASAP,
and yes I will also sync with my FTP.
cheers,
www.felipeferreira.net</description> <content:encoded><![CDATA[<p>Really cool idea.<br
/> I will implement ASAP,<br
/> and yes I will also sync with my FTP.<br
/> cheers,<br
/> <a
href="http://www.felipeferreira.net"  rel="nofollow">http://www.felipeferreira.net</a></p> ]]></content:encoded> </item> <item><title>By: Phil</title><link>http://ubuntulinuxhelp.com/easily-use-cron-to-backup-thunderbird-email-in-ubuntu-linux/#comment-745</link> <dc:creator>Phil</dc:creator> <pubDate>Thu, 28 Aug 2008 06:45:33 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/easily-use-cron-to-backup-thunderbird-email-in-ubuntu-linux/#comment-745</guid> <description>Excellent - that would have to be one of the most clearly written set of instructions I have seen in quite a while.  Thank you so much for a very clean solution to this one.Mind you I still think that Thunderbird should have PROPER Export facilities as part of the application just like any other good email client should...Phil</description> <content:encoded><![CDATA[<p>Excellent &#8211; that would have to be one of the most clearly written set of instructions I have seen in quite a while.  Thank you so much for a very clean solution to this one.</p><p>Mind you I still think that Thunderbird should have PROPER Export facilities as part of the application just like any other good email client should.</p><p>..Phil</p> ]]></content:encoded> </item> <item><title>By: Switching From XP to Linux - Should You? &#124; Ubuntu Linux Help</title><link>http://ubuntulinuxhelp.com/easily-use-cron-to-backup-thunderbird-email-in-ubuntu-linux/#comment-744</link> <dc:creator>Switching From XP to Linux - Should You? &#124; Ubuntu Linux Help</dc:creator> <pubDate>Mon, 07 Apr 2008 15:51:29 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/easily-use-cron-to-backup-thunderbird-email-in-ubuntu-linux/#comment-744</guid> <description>[...] Thunderbird Has Lost my eMail in Ubuntu! Easily Use Cron to Backup Thunderbird eMail in Ubuntu Linux [...] </description> <content:encoded><![CDATA[<p>[...] Thunderbird Has Lost my eMail in Ubuntu! Easily Use Cron to Backup Thunderbird eMail in Ubuntu Linux [...]</p> ]]></content:encoded> </item> <item><title>By: UbuntuLinuxHelp</title><link>http://ubuntulinuxhelp.com/easily-use-cron-to-backup-thunderbird-email-in-ubuntu-linux/#comment-743</link> <dc:creator>UbuntuLinuxHelp</dc:creator> <pubDate>Fri, 07 Mar 2008 12:51:51 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/easily-use-cron-to-backup-thunderbird-email-in-ubuntu-linux/#comment-743</guid> <description>Actually, that&#039;s a good idea. If email is important or valuable, one backup might not be the best way. Extending your idea, a copy could even be FTP&#039;d to another location. Maybe I should add this to the script... :)</description> <content:encoded><![CDATA[<p>Actually, that&#8217;s a good idea. If email is important or valuable, one backup might not be the best way. Extending your idea, a copy could even be FTP&#8217;d to another location. Maybe I should add this to the script&#8230; :)</p> ]]></content:encoded> </item> <item><title>By: Ridgeland</title><link>http://ubuntulinuxhelp.com/easily-use-cron-to-backup-thunderbird-email-in-ubuntu-linux/#comment-742</link> <dc:creator>Ridgeland</dc:creator> <pubDate>Fri, 07 Mar 2008 03:25:47 +0000</pubDate> <guid
isPermaLink="false">http://ubuntulinuxhelp.com/easily-use-cron-to-backup-thunderbird-email-in-ubuntu-linux/#comment-742</guid> <description>I&#039;ve been using cron to back up Thunderbird and Firefox for almost two years.  I keep two backups just in case I backup corrupt data once, twice and I&#039;m SOL.
The monthly cron script:
# backup Thunderbird Local Folders from /UserHome (not same as ~/)
# this process keeps two copies of the monthly Local Folders backup
# first delete the older directory
rm -R /Data/Linux/Internet/Mail_Monthly.previous
# then rename the last backup made
mv /Data/Linux/Internet/Mail_Monthly /Data/Linux/Internet/Mail_Monthly.previous
# then create a new backup
cp -r /UserHome/Thunderbird/xxxxxx.default/Mail /Data/Linux/Internet/Mail_MonthlyI use a montly, weekly and daily backup for Firefox bookmarks.  I can afford the GB so I don&#039;t bother with compression.  Note the above is just email.  Address book is a similar script.</description> <content:encoded><![CDATA[<p>I&#8217;ve been using cron to back up Thunderbird and Firefox for almost two years.  I keep two backups just in case I backup corrupt data once, twice and I&#8217;m SOL.<br
/> The monthly cron script:<br
/> # backup Thunderbird Local Folders from /UserHome (not same as ~/)<br
/> # this process keeps two copies of the monthly Local Folders backup<br
/> # first delete the older directory<br
/> rm -R /Data/Linux/Internet/Mail_Monthly.previous<br
/> # then rename the last backup made<br
/> mv /Data/Linux/Internet/Mail_Monthly /Data/Linux/Internet/Mail_Monthly.previous<br
/> # then create a new backup<br
/> cp -r /UserHome/Thunderbird/xxxxxx.default/Mail /Data/Linux/Internet/Mail_Monthly</p><p>I use a montly, weekly and daily backup for Firefox bookmarks.  I can afford the GB so I don&#8217;t bother with compression.  Note the above is just email.  Address book is a similar script.</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Served from: ubuntulinuxhelp.com @ 2012-02-08 23:45:13 by W3 Total Cache -->
