<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>weird kid software &#187; troubleshooting</title>
	<atom:link href="http://www.weirdkid.com/blog/index.php/tag/troubleshooting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.weirdkid.com/blog</link>
	<description>tools to help you convert, import, export and extract email</description>
	<lastBuildDate>Fri, 10 Feb 2012 05:04:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Emailchemy Memory Boost 1.0 Released</title>
		<link>http://www.weirdkid.com/blog/2008/07/13/emailchemy-memory-boost-10-released/</link>
		<comments>http://www.weirdkid.com/blog/2008/07/13/emailchemy-memory-boost-10-released/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 22:55:47 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Emailchemy]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.weirdkid.com/blog/?p=13</guid>
		<description><![CDATA[<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.weirdkid.com/blog/2008/07/13/emailchemy-memory-boost-10-released/' addthis:title='Emailchemy Memory Boost 1.0 Released '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>Today we released the Emailchemy Memory Boost app, and I&#8217;m hoping it helps people deal with some of the gigantic email archives they&#8217;ve been writing to me about. I originally designed Emailchemy to run in as little memory as possible, &#8230; <a href="http://www.weirdkid.com/blog/2008/07/13/emailchemy-memory-boost-10-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.weirdkid.com/blog/2008/07/13/emailchemy-memory-boost-10-released/' addthis:title='Emailchemy Memory Boost 1.0 Released '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div><p>Today we released the <a href="http://www.weirdkid.com/products/emailchemymemboost/index.html">Emailchemy Memory Boost</a> app, and I&#8217;m hoping it helps people deal with some of the gigantic email archives they&#8217;ve been writing to me about.  </p>
<p>I originally designed <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> to run in as little memory as possible, simply because at that time most computers had 32MB total of RAM.  And, being that I was writing <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> in Java, I had to be extra careful about how much heap space (&#8220;working memory&#8221;) <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> required.  This presented a specific requirement to not load an entire email message into memory for processing, because even back then, an email could be 10MB or larger with big attachments and most computers at the time would have choked under that weight.  So, <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> was designed to process the contents of an email in chunks, and it was able to run and convert any email in under 6MB of memory.<br />
<span id="more-13"></span><br />
Even today when computers routinely ship with 1GB of RAM, I insist on sticking to highly efficient use of memory because it forces developers to write better code and it produces executables that can even run on lower-end, older computers.  After all, not everybody buys a new laptop every 2 years. </p>
<p>Now, because <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> is written in Java and therefore runs in a virtual machine, when the application starts it has to tell the virtual machine how much memory to grab from the host computer.  The problem is that Java applications can&#8217;t see how much real memory the host computer has.  So, we&#8217;ve intentionally kept the amount of memory that <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> requests as low as possible &#8212; just high enough to work for most people&#8217;s needs.  If we were to tell <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> to grab too much memory, it would probably crash.</p>
<p>Even though <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> processes the message content in chunks, for some formats it has to scan and build an index of all the little parts that make up a message in the original file, and that index has to be kept in memory throughout the conversion of all the messages.  </p>
<p>So, we&#8217;ve bumped Emailchemy&#8217;s base memory footprint to 128MB just to accommodate these file formats.  But, if a user has very large files, say bigger than a gigabyte or two, then Emailchemy really needs more memory to convert the email at the fastest rate possible.  Then, if a user has extremely large files, say a 17GB PST file, <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> really will need some more memory to even begin extracting and converting messages, because the index for such a file may take up the entirety of Emailchemy&#8217;s default memory allocation.</p>
<p>When people were writing in and asking for help with these super huge files, we tried to walk them through the process of editing a config file or starting <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> from the command line to give it more memory.  In many cases, the users were able to make the changes, but I can&#8217;t imagine trying to walk a marginally computer literate person through that exercise.  So, it became very clear very fast that we needed to provide an easy way to change Emailchemy&#8217;s memory allocation.</p>
<p>But why a separate application?  Why not build this into <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> itself?  Well, remember, <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> can&#8217;t see how much memory the host computer has, so there was a risk that the user would choose a setting that asked for too much memory and thus prevent <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> from launching again.  If <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> can&#8217;t start, then the user won&#8217;t be able to change the setting back, and <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> wouldn&#8217;t be able to change it back itself. Sure, we could have posted instructions on how to completely uninstall and reinstall or manually change the setting back, but just putting this all in a separate application seemed like an easier way to go (for the users) in the long run.  This way, if the user selects too much memory (which they might, because do average computer users really knows how much memory their computer has free?  Probably not.), then they can always just run the memory setting application again and change Emailchemy&#8217;s memory back to the default setting.</p>
<p>Anyway, this is becoming a rather long-winded explanation of why the <a href="http://www.weirdkid.com/products/emailchemymemboost/index.html">Emailchemy Memory Boost</a> was needed.  Ideally, most people shouldn&#8217;t need it, because it&#8217;s hard enough to explain why it&#8217;s needed at all.</p>
<p>So, in a nutshell, if you have really big email files to convert, and <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> appears to be running slowly (say, only a message or two per second), or if <a href="http://www.weirdkid.com/products/emailchemy/index.html">Emailchemy</a> stops completely when opening your giant file, try using the <a href="http://www.weirdkid.com/products/emailchemymemboost/index.html">Emailchemy Memory Boost</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weirdkid.com/blog/2008/07/13/emailchemy-memory-boost-10-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Mac OS X Mail import wizard bug</title>
		<link>http://www.weirdkid.com/blog/2008/02/28/another-mac-os-x-mail-import-wizard-bug/</link>
		<comments>http://www.weirdkid.com/blog/2008/02/28/another-mac-os-x-mail-import-wizard-bug/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 22:33:41 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Emailchemy]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mail]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.weirdkid.com/blog/?p=4</guid>
		<description><![CDATA[<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.weirdkid.com/blog/2008/02/28/another-mac-os-x-mail-import-wizard-bug/' addthis:title='Another Mac OS X Mail import wizard bug '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>Just got a kind note from Mike, a Mac user, saying that Emailchemy was the only Mac-based method he could find to convert his Windows Outlook PST file to Mac OS X Mail. 1GB in 20 minutes, not bad at &#8230; <a href="http://www.weirdkid.com/blog/2008/02/28/another-mac-os-x-mail-import-wizard-bug/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.weirdkid.com/blog/2008/02/28/another-mac-os-x-mail-import-wizard-bug/' addthis:title='Another Mac OS X Mail import wizard bug '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div><p>Just got a kind note from Mike, a Mac user, saying that Emailchemy was the only Mac-based method he could find to convert his Windows Outlook PST file to Mac OS X Mail.  1GB in 20 minutes, not bad at all. </p>
<p>Anyway, he wrote to also report another quirk in Mac OS X Mail&#8217;s import feature.  I say &#8220;another&#8221; because I&#8217;ve already noted (and reported to Apple) a few others.  The issue he reported was that when importing mbox folders in Mail 2.0 format (Mac Mail .mbox folders are not the same as standard mbox files), Mail will import all the folders but some folders that are deeper in the hierarchy have all their messages show up blank.  Mike reported that importing mbox folders in the Mail 1.0 format worked fine, however.</p>
<p>The problem with the Mail import bugs (I&#8217;m not calling them quirks anymore) is that they are often hard to reproduce and there may only be a few other users who ever see this issue.  </p>
<p>This is why I recommend using Emailchemy&#8217;s embedded IMAP server (the IMAP ImportServer tool) if you can.  It bypasses the import wizard by providing you a desktop mail server that you download your converted mail from.  It&#8217;s as simple as creating a new email account and downloading the mail.</p>
<p>Aside from the bugs in the import wizard, I like using Mac OS X Mail.  It&#8217;s what I&#8217;ve been using for the past several years and I haven&#8217;t seen anything else I like on the Mac yet. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.weirdkid.com/blog/2008/02/28/another-mac-os-x-mail-import-wizard-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac Users: take the update</title>
		<link>http://www.weirdkid.com/blog/2008/02/20/mac-users-take-the-update/</link>
		<comments>http://www.weirdkid.com/blog/2008/02/20/mac-users-take-the-update/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 05:47:10 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Emailchemy]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.weirdkid.com/blog/?p=3</guid>
		<description><![CDATA[<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.weirdkid.com/blog/2008/02/20/mac-users-take-the-update/' addthis:title='Mac Users: take the update '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>Today I noticed we had a few customers, Mac users using Mac OS X 10.5.1, who reported odd behavior until they installed the Mac OS X 10.5.2 update.  So if you&#8217;re using the latest Emailchemy (v 9.6) and Mac OS &#8230; <a href="http://www.weirdkid.com/blog/2008/02/20/mac-users-take-the-update/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.weirdkid.com/blog/2008/02/20/mac-users-take-the-update/' addthis:title='Mac Users: take the update '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div><p>Today I noticed we had a few customers, Mac users using Mac OS X 10.5.1, who reported odd behavior until they installed the Mac OS X 10.5.2 update. </p>
<p>So if you&#8217;re using the latest Emailchemy (v 9.6) and Mac OS X 10.5.1, and you are seeing things like missing file dialogs or conversions that seem to never finish, try installing the 10.5.2 update from Apple.One note on installing Mac OS X updates:  I am a Mac user too, and I&#8217;ve noticed that with my Macs that I have increased system stability if I install the &#8220;combo&#8221; update instead of the &#8220;incremental&#8221; update that comes through the Software Update app.  </p>
<p>I can&#8217;t explain why, but after I&#8217;ve re-installed the &#8220;combo&#8221; update (available from the Mac OS X Support downloads page) over the Software Update update, most &#8220;odd&#8221; system issues disappear.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weirdkid.com/blog/2008/02/20/mac-users-take-the-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

