<?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>databasically // Kansas City Small Business IT &#38;&#38; Ruby on Rails Programming &#187; Sysadmin</title>
	<atom:link href="http://databasically.com/category/blog/sysadmin/feed/" rel="self" type="application/rss+xml" />
	<link>http://databasically.com</link>
	<description>Kansas City Small Business IT</description>
	<lastBuildDate>Fri, 20 Apr 2012 04:38:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Using aliases to forward incoming mail on Ubuntu</title>
		<link>http://databasically.com/2012/01/25/using-aliases-to-forward-incoming-mail-on-ubuntu/</link>
		<comments>http://databasically.com/2012/01/25/using-aliases-to-forward-incoming-mail-on-ubuntu/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 08:13:26 +0000</pubDate>
		<dc:creator>Wes</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://databasically.com/?p=635</guid>
		<description><![CDATA[I only need to do this every couple years when I renew an SSL certificate and they want to verify domain ownership by sending to some non-standard address like ssladmin@example.com. So, here&#8217;s how: Edit the virtual alias file: (sudo) vi /etc/postfix/virtual Add your alias and the address(es) it forwards to: ssladmin@example.com realemail@example.com contact@example.com sales@gmail.com,support@gmail.com Reload [...]]]></description>
			<content:encoded><![CDATA[<p>I only need to do this every couple years when I renew an SSL certificate and they want to verify domain ownership by sending to some non-standard address like <code>ssladmin@example.com</code>.</p>
<p>So, here&#8217;s how:</p>
<p>Edit the virtual alias file:</p>
<pre name="code" class="ruby">
(sudo) vi /etc/postfix/virtual
</pre>
<p>Add your alias and the address(es) it forwards to:</p>
<pre name="code" class="ruby">
ssladmin@example.com   realemail@example.com
contact@example.com    sales@gmail.com,support@gmail.com
</pre>
<p>Reload the postfix virtual table:</p>
<pre name="code" class="ruby">
postmap /etc/postfix/virtual
</pre>
<p>Also make sure you have following line in /etc/postfix/main.cf file:</p>
<pre name="code" class="ruby">
virtual_alias_maps = hash:/etc/postfix/virtual
</pre>
<p>If you didn&#8217;t have that and you just added it, reload all of postfix:</p>
<pre name="code" class="ruby">
service postfix reload
</pre>
]]></content:encoded>
			<wfw:commentRss>http://databasically.com/2012/01/25/using-aliases-to-forward-incoming-mail-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove all those .DS_Store files</title>
		<link>http://databasically.com/2011/06/06/remove-all-those-ds_store-files/</link>
		<comments>http://databasically.com/2011/06/06/remove-all-those-ds_store-files/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 14:36:17 +0000</pubDate>
		<dc:creator>Wes</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://databasically.com/?p=579</guid>
		<description><![CDATA[I don&#8217;t like committing .DS_Store files into my projects, so here&#8217;s an easy way to remove them: Run this from your project folder: # Recursively erase all .DS_Store files in this folder and below find . -name \.DS_Store -exec rm -v {} \; Also, you can prevent the DS_Store files from being created. Run this [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t like committing .DS_Store files into my projects, so here&#8217;s an easy way to remove them:</p>
<p>Run this from your project folder:</p>
<pre name="code" class="ruby">
# Recursively erase all .DS_Store files in this folder and below
find . -name \.DS_Store -exec rm -v {} \;
</pre>
<p>Also, you can prevent the DS_Store files from being created.  Run this from the Terminal:</p>
<pre name="code" class="ruby">
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
</pre>
]]></content:encoded>
			<wfw:commentRss>http://databasically.com/2011/06/06/remove-all-those-ds_store-files/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mac OS X: find the program running on a port</title>
		<link>http://databasically.com/2011/06/02/mac-os-x-find-the-program-running-on-a-port/</link>
		<comments>http://databasically.com/2011/06/02/mac-os-x-find-the-program-running-on-a-port/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 10:01:55 +0000</pubDate>
		<dc:creator>Wes</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://databasically.com/?p=560</guid>
		<description><![CDATA[Sometimes, there&#8217;s a program running on a port and you don&#8217;t know what it is. How do you find out? I find this happens when I start a webserver up to test something locally and then I forget about it. So, if I wanted to find out what was running on port 80: sudo lsof [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes, there&#8217;s a program running on a port and you don&#8217;t know what it is.  How do you find out?</p>
<p><span id="more-560"></span></p>
<p>I find this happens when I start a webserver up to test something locally and then I forget about it.  So, if I wanted to find out what was running on port 80:</p>
<pre class="ruby">  sudo lsof -i :80 # checks port 80

  COMMAND   PID USER   FD   TYPE    DEVICE SIZE/OFF NODE NAME
  ruby    64888   wg    6u  IPv4 0x6ddd270      0t0  TCP *:gds_db (LISTEN)</pre>
<p>&nbsp;</p>
<p>This command shows a list of open files. The -i option checks for internet addresses with the colon symbol representing a port (instead of an actual IP address).  Note, I&#8217;ve only used this on Mac OS X.  I&#8217;m not sure if there&#8217;s an equivalent for *nix or if it&#8217;s available in some package.</p>
]]></content:encoded>
			<wfw:commentRss>http://databasically.com/2011/06/02/mac-os-x-find-the-program-running-on-a-port/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tools we love</title>
		<link>http://databasically.com/2011/05/27/tools-we-love/</link>
		<comments>http://databasically.com/2011/05/27/tools-we-love/#comments</comments>
		<pubDate>Fri, 27 May 2011 03:05:07 +0000</pubDate>
		<dc:creator>Wes</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://databasically.com/?p=548</guid>
		<description><![CDATA[We spend a lot of time on our computers, so we spend a lot of time trying out new tools. Here are some of our favorites: Backblaze Backblaze backs your computer up, offsite, automatically. Killer features: Protect from your computer crashing Restore a file you accidentally delete or change Offsite storage Unlimited space Can encrypt [...]]]></description>
			<content:encoded><![CDATA[<p>We spend a lot of time on our computers, so we spend a lot of time trying out new tools.  Here are some of our favorites:</p>
<h2><a href="http://bit.ly/backblaze-db">Backblaze</a></h2>
<p>Backblaze backs your computer up, offsite, automatically.</p>
<p>Killer features:</p>
<ul>
<li>Protect from your computer crashing</li>
<li>Restore a file you accidentally delete or change</li>
<li> Offsite storage</li>
<li>Unlimited space</li>
<li>Can encrypt your data if you need/want to</li>
<li><a href="http://bit.ly/k3dCCb" target="_blank">Locate My Computer</a>, if your computer is lost or stolen, backblaze can help you track it down</li>
</ul>
<p>Cost:</p>
<ul>
<li>$5 per month per computer</li>
<li>$50 per year per computer</li>
</ul>
<h2><a href="http://bit.ly/hZ1j0w" target="_blank">Dropbox</a></h2>
<p><a href="http://bit.ly/hZ1j0w" target="_blank">Dropbox</a> synchronizes files across multiple computers.</p>
<p>Killer features:</p>
<ul>
<li>Keep folders in synch across multiple computers. No more emailing files to yourself</li>
<li>Share folders with other people.  For instance, I shared a folder with my bookkeeper to put receipts into, we have a shared folder for work projects, you can share folders with clients to transfer files back and forth</li>
<li>Public folder. If you want to send a big file to someone and can&#8217;t email it, you can put the file in your dropbox public folder. That uploads it and you can send a link to the person and they can download it from the dropbox server.</li>
<li>Mini backup. Files in here are available from the dropbox website, so in a pinch you can login to the Dropbox website and get that presentation you forgot.</li>
</ul>
<p>Cost:</p>
<ul>
<li>Free, can store up to 2GB</li>
<li>$10/month for 50GB storage</li>
<li>$20/month for 100GB storage</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://databasically.com/2011/05/27/tools-we-love/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Godaddy: Common name my.domain.com is already present in a current certificate</title>
		<link>http://databasically.com/2010/09/13/godaddy-common-name-my-domain-com-is-already-present-in-a-current-certificate/</link>
		<comments>http://databasically.com/2010/09/13/godaddy-common-name-my-domain-com-is-already-present-in-a-current-certificate/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 19:00:49 +0000</pubDate>
		<dc:creator>Wes</dc:creator>
				<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://databasically.com/?p=359</guid>
		<description><![CDATA[When submitting a CSR for creating a new SSL certificate on godaddy.com I received this error: Common name my.domain.com is already present in a current certificate For those searching for a quick answer: you need to renew the other certificate or get it revoked. I took this site over from another developer, so I didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>When submitting a CSR for creating a new SSL certificate on <a href="http://bit.ly/dbgddyffa">godaddy.com</a> I received this error:</p>
<blockquote><p>Common name my.domain.com is already present in a current certificate</p></blockquote>
<p>For those searching for a quick answer: you need to <strong>renew</strong> the other certificate or get it <strong>revoked</strong>.</p>
<p>I took this site over from another developer, so I didn&#8217;t have access to the SSL account that he used to purchase the certificate. </p>
<p>My first call to general support told me I would have to prove an interest in the domain name, either through knowing the account login or some other method, like altering a DNS record or something.  He bounced me to SSL support for future help.</p>
<p>Called godaddy SSL support (480-505-8852) and they said:</p>
<p>The current certificate needs to be revoked, so current owner of domain needs to get involved. I asked if the DNS option was a possibility, because trying to get an email to a no-longer-there contact&#8217;s email address sent on to me reliably could be problematic.</p>
<p>After talking to a supervisor, I gave them my email address and they sent me an email:</p>
<blockquote><p>We need to validate your domain access or control. </p>
<p>Your domain&#8217;s WHOIS record does not present a valid registrant and/or administrative email address, you will need to complete domain control verification.</p>
<p>There are several alternative methods you can choose from below to complete domain control verification.</p>
<p>This is a special code for you to use when completing one of the two methods below: abc123</p>
<p>Domain Zone Control</p>
<p>Access your domain name&#8217;s DNS control panel and create a CNAME using the special code as the hostname. The points-to address does not matter. CNAME = abc123.mydomain.com</p>
<p>Website Control Validation</p>
<p>Create a webpage on your root domain using the special code above. Example: your domain name is mydomain.com and if the code is abc123 , you would create a webpage named abc123.html and upload it to the root domain so it resolves as mydomain.com/abc123.html. You must use html as the page extension.</p>
<p>************************************************<br />
The webpage will also need to contain the special code in the body. We will not accept a blank page.<br />
************************************************</p></blockquote>
<p>I replied to that email after setting up the CNAME and making sure it worked.</p>
<p>I waited the requested 15 minutes and called back in to get a status update.  The customer service rep grabbed a supervisor and they submitted it and I got on with my SSL request.</p>
]]></content:encoded>
			<wfw:commentRss>http://databasically.com/2010/09/13/godaddy-common-name-my-domain-com-is-already-present-in-a-current-certificate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing A Virtual Machine With Dell OEM Disks</title>
		<link>http://databasically.com/2010/03/10/installing-a-virtual-machine-with-dell-oem-disks/</link>
		<comments>http://databasically.com/2010/03/10/installing-a-virtual-machine-with-dell-oem-disks/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 21:53:07 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://databasically.com/?p=264</guid>
		<description><![CDATA[If you&#8217;re willing to put in the effort (and assuming you&#8217;re legal), it could work, but I&#8217;d suggest using a retail license which avoids the caveats you&#8217;ll soon be reading about below: First, some helpful information: OEM Dell installation CDs depend on the SLP code in the Dell BIOS for activation.  If the installation program [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re willing to put in the effort (and assuming you&#8217;re legal), it could work, but I&#8217;d suggest using a retail license which avoids the caveats you&#8217;ll soon be reading about below:</p>
<p><strong>First, some helpful information:</strong></p>
<p>OEM Dell installation CDs depend on the SLP code in the Dell BIOS for activation.  If the installation program can&#8217;t see the real bios, it can&#8217;t activate.  With a commercially purchased installation CD this is not a problem as you have a COA that can be activated on line or by phone.  OEM installation CDs cannot be activated on line, and since Dell is responsible for support of an OEM disk that was issued by Dell, Microsoft will not normally give you an activation key if you call them.  You can try the phone method, of course, since so far as I can tell you are running only Windows XP Pro rather than both Vista and Windows XP.  Once you explain what you are doing they might grant you an activation code.</p>
<p>If you are installing an OEM version onto a virtual machine, it will not activate as it cannot see the BIOS String of the real Dell machine. It is only seeing the Virtual BIOS which doesn&#8217;t have the SLP String to activate.</p>
<p><strong>How to resolve this:</strong></p>
<ol>
<li>Boot up XP Pro VM installation, and select the Telephone activation option for the XP activation.</li>
<li>Call MS. Try to go on to speak to a representative to explain further.</li>
<li>Here it&#8217;s important to explain exactly what you&#8217;re doing to the rep &#8212; Explain that you simply want to activate this one XP license, on the Dell with which it was purchased, but you are doing so in a virtual machine. They can quickly confirm why it&#8217;s not working, due to not seeing the real BIOS.</li>
<li>You should end up transferred to the Product Key Team.</li>
<li>Once connected with the Product Key Team, they should provide you with a new product key (after confirming you are installing XP on the Dell that it came with and installing just one instance) there are a couple more steps &#8212; after entering the new product key, give the new activation code to the rep, get the confirmation to enter in the activation screen; and with luck, success!</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://databasically.com/2010/03/10/installing-a-virtual-machine-with-dell-oem-disks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu postfix error &#8212; postdrop: warning: unable to look up public/pickup: No such file or directory</title>
		<link>http://databasically.com/2009/12/02/ubuntu-postfix-error-postdrop-warning-unable-to-look-up-publicpickup-no-such-file-or-directory/</link>
		<comments>http://databasically.com/2009/12/02/ubuntu-postfix-error-postdrop-warning-unable-to-look-up-publicpickup-no-such-file-or-directory/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 20:40:36 +0000</pubDate>
		<dc:creator>Wes</dc:creator>
				<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://www.databasically.com/?p=176</guid>
		<description><![CDATA[I installed postfix and got this error: postdrop: warning: unable to look up public/pickup: No such file or directory. Turns out that sendmail was previously installed and that was messing things up. I had to stop sendmail and make the appropriate directory and restart postfix. Specifically: mkfifo /var/spool/postfix/public/pickup ps aux &#124; grep mail kill sudo [...]]]></description>
			<content:encoded><![CDATA[<p>I installed postfix and got this error:<br />
<code>postdrop: warning: unable to look up public/pickup: No such file or directory.</code><br />
<span id="more-176"></span><br />
Turns out that sendmail was previously installed and that was messing things up.  I had to stop sendmail and make the appropriate directory and restart postfix.</p>
<p>Specifically:<br />
<code><br />
mkfifo /var/spool/postfix/public/pickup<br />
ps aux | grep mail<br />
kill <sendmail process id><br />
sudo /etc/init.d/postfix restart<br />
</sendmail></code></p>
]]></content:encoded>
			<wfw:commentRss>http://databasically.com/2009/12/02/ubuntu-postfix-error-postdrop-warning-unable-to-look-up-publicpickup-no-such-file-or-directory/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>XP password reset</title>
		<link>http://databasically.com/2009/01/23/xp-password-reset/</link>
		<comments>http://databasically.com/2009/01/23/xp-password-reset/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 16:29:50 +0000</pubDate>
		<dc:creator>Wes</dc:creator>
				<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://www.databasically.com/?p=83</guid>
		<description><![CDATA[Someone asked me to fix their computer, but they didn&#8217;t know any of the passwords for it. Short of formatting it, I didn&#8217;t really know what to do. After some searching, I found the Offline NT Password &#38; Registry Editor, Bootdisk / CD which worked perfectly. Download the CD image Burn to a CD Boot [...]]]></description>
			<content:encoded><![CDATA[<p>Someone asked me to fix their computer, but they didn&#8217;t know any of the passwords for it.  Short of formatting it, I didn&#8217;t really know what to do.</p>
<p>After some searching, I found the <a href="http://home.eunet.no/pnordahl/ntpasswd/">Offline NT Password &amp; Registry Editor, Bootdisk / CD</a> which worked perfectly.</p>
<ul>
<li>Download the CD image</li>
<li>Burn to a CD</li>
<li>Boot to the CD</li>
<li>A small linux program runs</li>
<li>Answer a few questions about what partition and the user(s) you need to clear and/or reset the password for</li>
<li>Write your changes to the disk</li>
</ul>
<p>You can also edit the registry if you need to hack some bad keys out of there, like spyware startup entries.</p>
<p>Super handy tool!</p>
]]></content:encoded>
			<wfw:commentRss>http://databasically.com/2009/01/23/xp-password-reset/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing SFTP on Windows 2003 Server</title>
		<link>http://databasically.com/2009/01/19/installing-sftp-on-windows-2003-server/</link>
		<comments>http://databasically.com/2009/01/19/installing-sftp-on-windows-2003-server/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 16:43:18 +0000</pubDate>
		<dc:creator>Wes</dc:creator>
				<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://www.databasically.com/?p=78</guid>
		<description><![CDATA[I needed to set up a quick FTP server on a Windows server. I don&#8217;t like opening FTP ports if I can help it, so I wanted to find a easy SFTP server. This one is great and super easy to set up: http://www.coreftp.com/server/ You give it a username and password and a directory where [...]]]></description>
			<content:encoded><![CDATA[<p>I needed to set up a quick FTP server on a Windows server.  I don&#8217;t like opening FTP ports if I can help it, so I wanted to find a easy SFTP server.  This one is great and super easy to set up:</p>
<p><a href="http://www.coreftp.com/server/   ">http://www.coreftp.com/server/<br />
</a></p>
<p>You give it a username and password and a directory where the user should end up. Simple, but effective.</p>
<div id="attachment_81" class="wp-caption aligncenter" style="width: 319px"><img class="size-full wp-image-81" title="coreftp-setup" src="http://www.databasically.com/wp-content/uploads/2009/01/coreftp-setup.png" alt="CoreFTP setup" width="309" height="282" /><p class="wp-caption-text">CoreFTP setup</p></div>
]]></content:encoded>
			<wfw:commentRss>http://databasically.com/2009/01/19/installing-sftp-on-windows-2003-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restore IMAP mail from local cache via Time Machine</title>
		<link>http://databasically.com/2009/01/16/restore-imap-mail-from-local-cache-via-time-machine/</link>
		<comments>http://databasically.com/2009/01/16/restore-imap-mail-from-local-cache-via-time-machine/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 23:11:53 +0000</pubDate>
		<dc:creator>Wes</dc:creator>
				<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://www.databasically.com/?p=75</guid>
		<description><![CDATA[I had a real scary moment last night. I was cleaning off my server and deleted the home directory for my databasically email account. I don&#8217;t host the website on that server, so I thought removing the home directory would be fine. However, I do host the mail on that server and it&#8217;s stored in [...]]]></description>
			<content:encoded><![CDATA[<p>I had a real scary moment last night.  I was cleaning off my server and deleted the home directory for my databasically email account. I don&#8217;t host the website on that server, so I thought removing the home directory would be fine.  However, I do host the mail on that server and it&#8217;s stored in the home directory.</p>
<p>I had Apple Mail.app running and connected to that mailbox.  I didn&#8217;t really notice it until a few minutes later when a message came in on another account.</p>
<p>My work account was blank.  Empty. Also, I had a nice exclamation point saying the account couldn&#8217;t be found.</p>
<p>Whoops.  Oh hell.</p>
<p>I have my computer hooked to an external hard drive which I&#8217;m using as my Time Machine (the built-in Mac backup software) drive.  I poked through the folders from an hour ago and found all my mail.</p>
<p>The mail is stored in ~/Library/Mail/, where each IMAP account has a folder called <strong>IMAP-user@host</strong>. This folder contains many folders with the .imapmbox extension.</p>
<p>Here&#8217;s how I restored my mailbox:</p>
<ul>
<li>Recreated my home directory and made sure that the email address still worked.  You may want to set up a new account if you&#8217;re moving hosts or whatever.  Get a working IMAP account up and running.</li>
<li>Put the IMAP-user@host folder to my Desktop.  Actually, I restored it from Time Machine and then copied it to the Desktop. I selected &#8220;Keep both&#8221; when doing the Time Machine restore which renamed my existing folder to end in &#8220;(original)&#8221;.  I moved the restored folder to my Desktop and removed the &#8220;(original)&#8221;.</li>
<li>Renamed each folders&#8217; extension from <strong>.imapmbox</strong> to <strong>.mbox</strong> . Make sure you get any subfolders as well.</li>
<li>Import the file:  File &gt; Import Mailboxes &gt; Mail for Mac OS X</li>
<li>Select the parent folder (IMAP-user@host) containing all your .mbox files.</li>
<li>Your mail will be imported to a folder named <strong>Import</strong> inside the On My Mac folder.</li>
<li>Drag your mail to your new/restored IMAP mailbox.  I copied 5000 messages at a time without an issue.</li>
</ul>
<p>Hopefully you never need this information.</p>
<p>If it helped you out or if you have any other information, please let me know in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://databasically.com/2009/01/16/restore-imap-mail-from-local-cache-via-time-machine/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

