<?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>Extempore &#187; email</title>
	<atom:link href="http://michaelhendrickx.com/tag/email/feed" rel="self" type="application/rss+xml" />
	<link>http://michaelhendrickx.com</link>
	<description>random ramblings of the disturbed mind</description>
	<lastBuildDate>Tue, 20 Jul 2010 05:39:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Archiving outlook emails, gmail style</title>
		<link>http://michaelhendrickx.com/200906_archiving-outlook-emails-gmail-style.html</link>
		<comments>http://michaelhendrickx.com/200906_archiving-outlook-emails-gmail-style.html#comments</comments>
		<pubDate>Tue, 16 Jun 2009 14:30:19 +0000</pubDate>
		<dc:creator>Michael Hendrickx</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[vba]]></category>

		<guid isPermaLink="false">http://michaelhendrickx.com/?p=154</guid>
		<description><![CDATA[
In Nakheel we have a maximum email quota which gets filled up pretty quickly if you receive large attachements, such as presentations, manuals and silly movies.  I wanted to build a macro that imitates Gmail awesome archiving method.
Based on the lifehackers&#8217;s article, my version had to move the  my selected mails to a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://michaelhendrickx.com/wp-content/uploads/2009/06/archive.jpg"><img src="http://michaelhendrickx.com/wp-content/uploads/2009/06/archive-229x300.jpg" alt="archive" title="archive" width="229" height="300" class="alignright size-medium wp-image-156" /></a><br />
In <a href="http://nakheel.com">Nakheel</a> we have a maximum email quota which gets filled up pretty quickly if you receive large attachements, such as presentations, manuals <del datetime="2009-06-16T14:19:31+00:00">and silly movies</del>.  I wanted to build a macro that imitates Gmail awesome archiving method.</p>
<p>Based on the <a href="http://lifehacker.com/5175347/add-a-gmail+like-archive-button-to-microsoft-outlook">lifehackers&#8217;s article</a>, my version had to move the  my selected mails to a PST file on my disk, freeing up space on my &#8220;online mailbox&#8221;.  </p>
<p>I won&#8217;t repeat how to make the macro and all, the lifehacker&#8217;s article does a very good job in that.  I just made a few changes to the code, and that is below:</p>
<pre>
Sub Archive()
  pst_file = "C:\Backup\archived.pst"
  Set ns = Application.GetNamespace("MAPI")
  ns.AddStore (pst_file)
  Set ArchiveFolder = ns.Folders("archived")

  For Each Msg In ActiveExplorer.Selection
    Msg.Move ArchiveFolder
  Next Msg
End Sub
</pre>
]]></content:encoded>
			<wfw:commentRss>http://michaelhendrickx.com/200906_archiving-outlook-emails-gmail-style.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
