<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: Exporting outlook email as common format</title>
	<link>http://ask.metafilter.com/28600/Exporting-outlook-email-as-common-format/</link>
	<description>Comments on Ask MetaFilter post Exporting outlook email as common format</description>
	<pubDate>Wed, 07 Dec 2005 10:11:01 -0800</pubDate>
	<lastBuildDate>Wed, 07 Dec 2005 10:11:01 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: Exporting outlook email as common format</title>
		<link>http://ask.metafilter.com/28600/Exporting-outlook-email-as-common-format</link>	
		<description>How do I export outlook email to a common format that I can read anywhere including a MAC.

I want to be able to save all my outlook emails but not as a .pst because outlook is the only one that can later read that pst.  Is there any tool or export I can use to get each message as a rich text file or some other standard format? The only way I see possible right now is to use the export function to create a tab separated windows or dos file. This sort of works but its messy and all the emails show up as one file. 

I also thought about maybe exporting it to an access MDB where each record is an email and then creating a report to display them nicely but i dont think the field is large enough to store entire messages in some cases.

If anyone knows of cheap software that can do this or perhaps a neat hack please let me know. 

Thanks!

</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2005:site.28600</guid>
		<pubDate>Wed, 07 Dec 2005 09:46:55 -0800</pubDate>
		<dc:creator>postergeist</dc:creator>
		
			<category>outlook</category>
		
			<category>email</category>
		
	</item> <item>
		<title>By: odinsdream</title>
		<link>http://ask.metafilter.com/28600/Exporting-outlook-email-as-common-format#449958</link>	
		<description>Here&apos;s a quick stab at VBA code to save all the messages in the inbox as individual text files:&lt;br&gt;
&lt;br&gt;
Sub ExportAll()&lt;br&gt;
    &lt;br&gt;
    Dim Message As MailItem&lt;br&gt;
    &lt;br&gt;
    Set myNameSpace = Application.GetNamespace(&quot;MAPI&quot;)&lt;br&gt;
    Set myInbox = myNameSpace.GetDefaultFolder(olFolderInbox)&lt;br&gt;
   &lt;br&gt;
    For Each Message In myInbox.Items&lt;br&gt;
        Message.SaveAs &quot;C:\MailMessages\&quot; &amp;amp; Message.Subject &amp;amp; &quot;.txt&quot;, olTXT&lt;br&gt;
    Next Message&lt;br&gt;
    &lt;br&gt;
End Sub&lt;br&gt;
&lt;br&gt;
You can go to Tools &amp;gt; Macros &amp;gt; Visual Basic Editor, then inside the editor, go to Insert &amp;gt; Module. In the new window, paste the above code.&lt;br&gt;
&lt;br&gt;
Some potential problems: Subjects being the filename could result in identical filenames, so you&apos;d likely overwrite some of the previously-saved messages, which is bad. I&apos;d probably experiment with changing that line to something like:&lt;br&gt;
Message.SaveAs &quot;C:\MailMessages\&quot; &amp;amp; SequenceNumber &amp;amp; Message.Subject &amp;amp; &quot;.txt&quot;, olTXT&lt;br&gt;
&lt;br&gt;
...where SequenceNumber is a running counter of how many messages have been exported, for example.&lt;br&gt;
&lt;br&gt;
You should create whatever directory is specified above before running the code. In this case I made C:\MailMessages</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.28600-449958</guid>
		<pubDate>Wed, 07 Dec 2005 10:11:01 -0800</pubDate>
		<dc:creator>odinsdream</dc:creator>
	</item><item>
		<title>By: odinsdream</title>
		<link>http://ask.metafilter.com/28600/Exporting-outlook-email-as-common-format#449960</link>	
		<description>To save from a personal folder, the Outlook VB help hints that you&apos;d use something like:&lt;br&gt;
&lt;br&gt;
Set myInbox = myNameSpace.Folders(&quot;Personal Folders&quot;).Folders(&quot;Vioxx Advertisements to Review Later&quot;)&lt;br&gt;
&lt;br&gt;
... good luck!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.28600-449960</guid>
		<pubDate>Wed, 07 Dec 2005 10:14:06 -0800</pubDate>
		<dc:creator>odinsdream</dc:creator>
	</item><item>
		<title>By: willnot</title>
		<link>http://ask.metafilter.com/28600/Exporting-outlook-email-as-common-format#449971</link>	
		<description>&lt;a href=&quot;http://www.slipstick.com&quot;&gt;Slipstick&lt;/a&gt; is my first source for Outlook enhancements. Here is a &lt;a href=&quot;http://www.slipstick.com/addins/housekeeping.htm&quot;&gt;page of archive utilities&lt;/a&gt; (scroll down to &quot;User Tools&quot;). I haven&apos;t tried any of them, but you can probably find what you want in there somewhere.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.28600-449971</guid>
		<pubDate>Wed, 07 Dec 2005 10:21:06 -0800</pubDate>
		<dc:creator>willnot</dc:creator>
	</item><item>
		<title>By: postergeist</title>
		<link>http://ask.metafilter.com/28600/Exporting-outlook-email-as-common-format#449986</link>	
		<description>odinsdream this is sweet !! Thanks for the effort I really appreciate it !</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.28600-449986</guid>
		<pubDate>Wed, 07 Dec 2005 10:38:57 -0800</pubDate>
		<dc:creator>postergeist</dc:creator>
	</item><item>
		<title>By: tomierna</title>
		<link>http://ask.metafilter.com/28600/Exporting-outlook-email-as-common-format#449989</link>	
		<description>1) Set up a local IMAP server.&lt;br&gt;
&lt;br&gt;
2) Set up an IMAP account within Outlook to connect to your local IMAP server.&lt;br&gt;
&lt;br&gt;
3) Copy all desired mail to the Inbox/subfolders of the IMAP account.&lt;br&gt;
&lt;br&gt;
4) Log in to local IMAP server from Mac and download mail.&lt;br&gt;
&lt;br&gt;
Bonus: Use an IMAP server which stores messages as individual plain text files. Then, you can copy the entire account directory wherever you&apos;d like.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.28600-449989</guid>
		<pubDate>Wed, 07 Dec 2005 10:42:19 -0800</pubDate>
		<dc:creator>tomierna</dc:creator>
	</item><item>
		<title>By: blindcarboncopy</title>
		<link>http://ask.metafilter.com/28600/Exporting-outlook-email-as-common-format#450163</link>	
		<description>You can open any message in its own window, and go File -&amp;gt; Save. This will let you say rich email in .html or .rtf (also as a .msg file, but I suspect this isn&apos;t of much use in your situation).</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.28600-450163</guid>
		<pubDate>Wed, 07 Dec 2005 13:02:27 -0800</pubDate>
		<dc:creator>blindcarboncopy</dc:creator>
	</item><item>
		<title>By: Sharcho</title>
		<link>http://ask.metafilter.com/28600/Exporting-outlook-email-as-common-format#450228</link>	
		<description>I think you&apos;re looking at the problem from the wrong angle.&lt;br&gt;
If you want mail to be accessed from multiple platforms, multiple emali clients, from multiple computers then IMAP is the way to go, otherwise you&apos;ll never be able to keep everything in sync.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.28600-450228</guid>
		<pubDate>Wed, 07 Dec 2005 13:34:12 -0800</pubDate>
		<dc:creator>Sharcho</dc:creator>
	</item>
	</channel>
</rss>
