<?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: Import Thunderbird to Zimbra Desktop</title>
	<atom:link href="http://kavaxtreme.radiantchristians.com/2009/10/import-thunderbird-to-zimbra-desktop/feed/" rel="self" type="application/rss+xml" />
	<link>http://kavaxtreme.radiantchristians.com/2009/10/import-thunderbird-to-zimbra-desktop/</link>
	<description>faith, coffee, and web design resources</description>
	<lastBuildDate>Tue, 08 Nov 2011 00:30:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Francois</title>
		<link>http://kavaxtreme.radiantchristians.com/2009/10/import-thunderbird-to-zimbra-desktop/comment-page-1/#comment-55</link>
		<dc:creator>Francois</dc:creator>
		<pubDate>Sat, 20 Aug 2011 10:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://kavaxtreme.radiantchristians.com/?p=49#comment-55</guid>
		<description>Also, I had to make sure the file was ending with .tgz instead of .tar.gz to import properly </description>
		<content:encoded><![CDATA[<p>Also, I had to make sure the file was ending with .tgz instead of .tar.gz to import properly</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francois</title>
		<link>http://kavaxtreme.radiantchristians.com/2009/10/import-thunderbird-to-zimbra-desktop/comment-page-1/#comment-54</link>
		<dc:creator>Francois</dc:creator>
		<pubDate>Sat, 20 Aug 2011 10:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://kavaxtreme.radiantchristians.com/?p=49#comment-54</guid>
		<description>Actually there is a newer thunderbird export plugin named ImportExportTools, see:
http://nic-nac-project.de/~kaosmos/mboximport-en.html
It includes the option to set the file timestamp equal to mail date. By default it&#039;s off, to set it go to menu Tools&gt;ImportExportTools&gt;Options&gt;Add date to the file properties</description>
		<content:encoded><![CDATA[<p>Actually there is a newer thunderbird export plugin named ImportExportTools, see:<br />
<a href="http://nic-nac-project.de/~kaosmos/mboximport-en.html" rel="nofollow">http://nic-nac-project.de/~kaosmos/mboximport-en.html</a><br />
It includes the option to set the file timestamp equal to mail date. By default it&#8217;s off, to set it go to menu Tools&gt;ImportExportTools&gt;Options&gt;Add date to the file properties</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anezch</title>
		<link>http://kavaxtreme.radiantchristians.com/2009/10/import-thunderbird-to-zimbra-desktop/comment-page-1/#comment-42</link>
		<dc:creator>anezch</dc:creator>
		<pubDate>Fri, 04 Feb 2011 03:33:45 +0000</pubDate>
		<guid isPermaLink="false">http://kavaxtreme.radiantchristians.com/?p=49#comment-42</guid>
		<description>Hi, I&#039;m trying to import emails from Thunderbird to Zimbra Desktop version 2.0.1. I&#039;m not using any plugins, instead, I use built-in save function (file-save as) in Thunderbird. I tried some folder structures in the tar.gz archive but it always end up with &#039;Not allowed to import to root folder for this type&#039; when I import it in zd. Is it different saving with built-in save function with using save/export function provided by the plugins?</description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;m trying to import emails from Thunderbird to Zimbra Desktop version 2.0.1. I&#8217;m not using any plugins, instead, I use built-in save function (file-save as) in Thunderbird. I tried some folder structures in the tar.gz archive but it always end up with &#8216;Not allowed to import to root folder for this type&#8217; when I import it in zd. Is it different saving with built-in save function with using save/export function provided by the plugins?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Coco</title>
		<link>http://kavaxtreme.radiantchristians.com/2009/10/import-thunderbird-to-zimbra-desktop/comment-page-1/#comment-41</link>
		<dc:creator>Coco</dc:creator>
		<pubDate>Wed, 01 Dec 2010 00:42:36 +0000</pubDate>
		<guid isPermaLink="false">http://kavaxtreme.radiantchristians.com/?p=49#comment-41</guid>
		<description>Hi, 

I change the code because the days from 1 to 9 were not wotking with the first version...

#! /bin/sh
REP_SOURCE=&quot;/PathToYourEMLFolder&quot;
find ${REP_SOURCE} -type f &#124; while read A ; do
  echo $A ;
  grep -m 1 Date &quot;$A&quot; &#124; while read TD; do
  Length=$(echo ${#TD})
  if [ $Length -eq 38 ] ; then
    echo &quot;======== Jour a 2 chiffres ! =======&quot;
	DD=$(echo $TD &#124; awk &#039;{ print substr($O, 12, 2)}&#039;)
	Month=$(echo $TD &#124; awk &#039;{ print substr($O, 15, 3)}&#039;)
	YYYY=$(echo $TD &#124; awk &#039;{ print substr($O, 19, 4)}&#039;)
	HH=$(echo $TD &#124; awk &#039;{ print substr($0, 24, 2)}&#039;)
	MM=$(echo $TD &#124; awk &#039;{ print substr($0, 27, 2)}&#039;)
  else
	echo &quot;======== Jour a 1 chiffre ! =======&quot;
	DD=0$(echo $TD &#124; awk &#039;{ print substr($O, 12, 1)}&#039;)
	Month=$(echo $TD &#124; awk &#039;{ print substr($O, 14, 3)}&#039;)
	YYYY=$(echo $TD &#124; awk &#039;{ print substr($O, 18, 4)}&#039;)
	HH=$(echo $TD &#124; awk &#039;{ print substr($0, 23, 2)}&#039;)
	MM=$(echo $TD &#124; awk &#039;{ print substr($0, 26, 2)}&#039;)
  fi
  case $Month in
  Jan) MM=01 ;;
  Feb) MM=02 ;;
  Mar) MM=03 ;;
  Apr) MM=04 ;;
  May) MM=05 ;;
  Jun) MM=06 ;;
  Jul) MM=07 ;;
  Aug) MM=08 ;;
  Sep) MM=09 ;;
  Oct) MM=10 ;;
  Nov) MM=11 ;;
  Dec) MM=12 ;;
  esac
  echo $YYYY$MM$DD$HH$MM;
  touch -t $YYYY$MM$DD$HH$MM &quot;$A&quot;; 
  done
done</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>I change the code because the days from 1 to 9 were not wotking with the first version&#8230;</p>
<p>#! /bin/sh<br />
REP_SOURCE=&#8221;/PathToYourEMLFolder&#8221;<br />
find ${REP_SOURCE} -type f | while read A ; do<br />
  echo $A ;<br />
  grep -m 1 Date &#8220;$A&#8221; | while read TD; do<br />
  Length=$(echo ${#TD})<br />
  if [ $Length -eq 38 ] ; then<br />
    echo &#8220;======== Jour a 2 chiffres ! =======&#8221;<br />
	DD=$(echo $TD | awk &#8216;{ print substr($O, 12, 2)}&#8217;)<br />
	Month=$(echo $TD | awk &#8216;{ print substr($O, 15, 3)}&#8217;)<br />
	YYYY=$(echo $TD | awk &#8216;{ print substr($O, 19, 4)}&#8217;)<br />
	HH=$(echo $TD | awk &#8216;{ print substr($0, 24, 2)}&#8217;)<br />
	MM=$(echo $TD | awk &#8216;{ print substr($0, 27, 2)}&#8217;)<br />
  else<br />
	echo &#8220;======== Jour a 1 chiffre ! =======&#8221;<br />
	DD=0$(echo $TD | awk &#8216;{ print substr($O, 12, 1)}&#8217;)<br />
	Month=$(echo $TD | awk &#8216;{ print substr($O, 14, 3)}&#8217;)<br />
	YYYY=$(echo $TD | awk &#8216;{ print substr($O, 18, 4)}&#8217;)<br />
	HH=$(echo $TD | awk &#8216;{ print substr($0, 23, 2)}&#8217;)<br />
	MM=$(echo $TD | awk &#8216;{ print substr($0, 26, 2)}&#8217;)<br />
  fi<br />
  case $Month in<br />
  Jan) MM=01 ;;<br />
  Feb) MM=02 ;;<br />
  Mar) MM=03 ;;<br />
  Apr) MM=04 ;;<br />
  May) MM=05 ;;<br />
  Jun) MM=06 ;;<br />
  Jul) MM=07 ;;<br />
  Aug) MM=08 ;;<br />
  Sep) MM=09 ;;<br />
  Oct) MM=10 ;;<br />
  Nov) MM=11 ;;<br />
  Dec) MM=12 ;;<br />
  esac<br />
  echo $YYYY$MM$DD$HH$MM;<br />
  touch -t $YYYY$MM$DD$HH$MM &#8220;$A&#8221;;<br />
  done<br />
done</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Coco</title>
		<link>http://kavaxtreme.radiantchristians.com/2009/10/import-thunderbird-to-zimbra-desktop/comment-page-1/#comment-40</link>
		<dc:creator>Coco</dc:creator>
		<pubDate>Tue, 30 Nov 2010 11:01:47 +0000</pubDate>
		<guid isPermaLink="false">http://kavaxtreme.radiantchristians.com/?p=49#comment-40</guid>
		<description>I Did a small shell script as a work around concerning the date showed in Zimbra panel are just the imported day. It&#039;s change the date of the EML files after the conversion from mbox file... 

#! /bin/sh
REP_SOURCE=&quot;/PathToYourEMLFolder&quot;
find ${REP_SOURCE} -type f &#124; while read A ; do
  echo $A ;
  grep -m 1 Date &quot;$A&quot; &#124; while read TD; do
  echo &quot;======== On a la date ! =======&quot;;
  DD=$(echo $TD &#124; awk &#039;{ print substr($O, 12, 2)}&#039;);
  Month=$(echo $TD &#124; awk &#039;{ print substr($O, 15, 3)}&#039;);
  YYYY=$(echo $TD &#124; awk &#039;{ print substr($O, 19, 4)}&#039;);
  HH=$(echo $TD &#124; awk &#039;{ print substr($0, 24, 2)}&#039;);
  MM=$(echo $TD &#124; awk &#039;{ print substr($0, 27, 2)}&#039;);
  case $Month in
  Jan) MM=01 ;;
  Feb) MM=02 ;;
  Mar) MM=03 ;;
  Apr) MM=04 ;;
  May) MM=05 ;;
  Jun) MM=06 ;;
  Jul) MM=07 ;;
  Aug) MM=08 ;;
  Sep) MM=09 ;;
  Oct) MM=10 ;;
  Nov) MM=11 ;;
  Dec) MM=12 ;;
  esac
  echo $YYYY$MM$DD$HH$MM;
  touch -t $YYYY$MM$DD$HH$MM &quot;$A&quot;; 
  done
done</description>
		<content:encoded><![CDATA[<p>I Did a small shell script as a work around concerning the date showed in Zimbra panel are just the imported day. It&#8217;s change the date of the EML files after the conversion from mbox file&#8230; </p>
<p>#! /bin/sh<br />
REP_SOURCE=&#8221;/PathToYourEMLFolder&#8221;<br />
find ${REP_SOURCE} -type f | while read A ; do<br />
  echo $A ;<br />
  grep -m 1 Date &#8220;$A&#8221; | while read TD; do<br />
  echo &#8220;======== On a la date ! =======&#8221;;<br />
  DD=$(echo $TD | awk &#8216;{ print substr($O, 12, 2)}&#8217;);<br />
  Month=$(echo $TD | awk &#8216;{ print substr($O, 15, 3)}&#8217;);<br />
  YYYY=$(echo $TD | awk &#8216;{ print substr($O, 19, 4)}&#8217;);<br />
  HH=$(echo $TD | awk &#8216;{ print substr($0, 24, 2)}&#8217;);<br />
  MM=$(echo $TD | awk &#8216;{ print substr($0, 27, 2)}&#8217;);<br />
  case $Month in<br />
  Jan) MM=01 ;;<br />
  Feb) MM=02 ;;<br />
  Mar) MM=03 ;;<br />
  Apr) MM=04 ;;<br />
  May) MM=05 ;;<br />
  Jun) MM=06 ;;<br />
  Jul) MM=07 ;;<br />
  Aug) MM=08 ;;<br />
  Sep) MM=09 ;;<br />
  Oct) MM=10 ;;<br />
  Nov) MM=11 ;;<br />
  Dec) MM=12 ;;<br />
  esac<br />
  echo $YYYY$MM$DD$HH$MM;<br />
  touch -t $YYYY$MM$DD$HH$MM &#8220;$A&#8221;;<br />
  done<br />
done</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://kavaxtreme.radiantchristians.com/2009/10/import-thunderbird-to-zimbra-desktop/comment-page-1/#comment-23</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sat, 25 Sep 2010 18:13:54 +0000</pubDate>
		<guid isPermaLink="false">http://kavaxtreme.radiantchristians.com/?p=49#comment-23</guid>
		<description>Your instructions made the import process a walk in the park. Had a bit of a problem using the mbx2eml utility. The SmartSave addin worked for me.

Just one thing to note when importing your mail. The folder names have to be unique. Some of my personal folders were not imported the first time. A second import renamed all the folders and a manual move and attempt to rename the moved folders highlighted an issue with duplicate names (identical names in different parts of the folder structure).</description>
		<content:encoded><![CDATA[<p>Your instructions made the import process a walk in the park. Had a bit of a problem using the mbx2eml utility. The SmartSave addin worked for me.</p>
<p>Just one thing to note when importing your mail. The folder names have to be unique. Some of my personal folders were not imported the first time. A second import renamed all the folders and a manual move and attempt to rename the moved folders highlighted an issue with duplicate names (identical names in different parts of the folder structure).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick vV</title>
		<link>http://kavaxtreme.radiantchristians.com/2009/10/import-thunderbird-to-zimbra-desktop/comment-page-1/#comment-16</link>
		<dc:creator>Rick vV</dc:creator>
		<pubDate>Fri, 30 Jul 2010 19:19:46 +0000</pubDate>
		<guid isPermaLink="false">http://kavaxtreme.radiantchristians.com/?p=49#comment-16</guid>
		<description>The Import process went fine, and most of the dates remained as they were, but some messages picked up the time that the mbx2eml process ran (Win7 64bit, Zimbra Desktop 1.04, Thunderbird v3).
Thanks for the tutorial</description>
		<content:encoded><![CDATA[<p>The Import process went fine, and most of the dates remained as they were, but some messages picked up the time that the mbx2eml process ran (Win7 64bit, Zimbra Desktop 1.04, Thunderbird v3).<br />
Thanks for the tutorial</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marijan</title>
		<link>http://kavaxtreme.radiantchristians.com/2009/10/import-thunderbird-to-zimbra-desktop/comment-page-1/#comment-15</link>
		<dc:creator>Marijan</dc:creator>
		<pubDate>Tue, 20 Jul 2010 14:00:30 +0000</pubDate>
		<guid isPermaLink="false">http://kavaxtreme.radiantchristians.com/?p=49#comment-15</guid>
		<description>Hi!
I&#039;m trying to import inbox from Thunderbird to Zimbra Web Client. All steps but the final one work well. Zimbra says that importing was successfull, but nothing happens in inbox. I can&#039;t see any imported mail. Nor is the size (in MB) of the inbox larger.
I noticed that when I export my inbox from Zimbra, it creates bot msf and meta file for each e-mail. But when creating eml files with mbx2eml I don&#039;t get any meta files. Could that be the problem?
I would be very thankful for some answer.</description>
		<content:encoded><![CDATA[<p>Hi!<br />
I&#8217;m trying to import inbox from Thunderbird to Zimbra Web Client. All steps but the final one work well. Zimbra says that importing was successfull, but nothing happens in inbox. I can&#8217;t see any imported mail. Nor is the size (in MB) of the inbox larger.<br />
I noticed that when I export my inbox from Zimbra, it creates bot msf and meta file for each e-mail. But when creating eml files with mbx2eml I don&#8217;t get any meta files. Could that be the problem?<br />
I would be very thankful for some answer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aris</title>
		<link>http://kavaxtreme.radiantchristians.com/2009/10/import-thunderbird-to-zimbra-desktop/comment-page-1/#comment-11</link>
		<dc:creator>Aris</dc:creator>
		<pubDate>Fri, 11 Jun 2010 08:52:45 +0000</pubDate>
		<guid isPermaLink="false">http://kavaxtreme.radiantchristians.com/?p=49#comment-11</guid>
		<description>Greetings, Zimbra desktop 1.0.4 refuses to import.

I managed to convert some mails to .msg format. I created a Test folder, I archived it to tar and the to gzip.

I press import on Zimbra, it say Import complete but no mails appear.</description>
		<content:encoded><![CDATA[<p>Greetings, Zimbra desktop 1.0.4 refuses to import.</p>
<p>I managed to convert some mails to .msg format. I created a Test folder, I archived it to tar and the to gzip.</p>
<p>I press import on Zimbra, it say Import complete but no mails appear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lorenzo Gitto</title>
		<link>http://kavaxtreme.radiantchristians.com/2009/10/import-thunderbird-to-zimbra-desktop/comment-page-1/#comment-10</link>
		<dc:creator>Lorenzo Gitto</dc:creator>
		<pubDate>Fri, 19 Mar 2010 17:25:14 +0000</pubDate>
		<guid isPermaLink="false">http://kavaxtreme.radiantchristians.com/?p=49#comment-10</guid>
		<description>Hello Everyone,
Procedure works very well but date showed in Zimbra panel are just the imported day date. So I miss the original date!! What happend? I used mbx2eml
Thank you to you all</description>
		<content:encoded><![CDATA[<p>Hello Everyone,<br />
Procedure works very well but date showed in Zimbra panel are just the imported day date. So I miss the original date!! What happend? I used mbx2eml<br />
Thank you to you all</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: kavaxtreme.radiantchristians.com @ 2012-02-09 07:24:55 -->
