<?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: Outlook Reply-To problems.</title>
	<link>http://ask.metafilter.com/24946/Outlook-ReplyTo-problems/</link>
	<description>Comments on Ask MetaFilter post Outlook Reply-To problems.</description>
	<pubDate>Mon, 03 Oct 2005 09:18:28 -0800</pubDate>
	<lastBuildDate>Mon, 03 Oct 2005 09:18:28 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: Outlook Reply-To problems.</title>
		<link>http://ask.metafilter.com/24946/Outlook-ReplyTo-problems</link>	
		<description>How can I set up a permanent Reply-To address in Outlook 2003 on an Exchange server? &lt;br /&gt;&lt;br /&gt; It seems you can only do this manually for each email, or switch to POP3/SMTP. I did find &lt;a href=&quot;http://www.emailaddressmanager.com/outlook/reply-to.html&quot;&gt;this plug-in&lt;/a&gt;, but I&apos;d rather not pay $20 for the privilege.</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2005:site.24946</guid>
		<pubDate>Mon, 03 Oct 2005 07:51:07 -0800</pubDate>
		<dc:creator>MintSauce</dc:creator>
		
			<category>outlook</category>
		
			<category>pc</category>
		
			<category>exchange</category>
		
	</item> <item>
		<title>By: thanotopsis</title>
		<link>http://ask.metafilter.com/24946/Outlook-ReplyTo-problems#394782</link>	
		<description>You mean permanent in what way?  You want the same reply-to address for everyone?  You want the same reply-to address no matter what you put in the From field?&lt;br&gt;
&lt;br&gt;
The Default SMTP address is typically your reply-to address in your email, irrespective of what other email address you&apos;re authorized to use.  If you&apos;re sending &quot;on behalf&quot; of another use in the mailbox store, you&apos;re specified as the Sender, and the From and Reply-To addresses are the addresses of the person on behalf of which you&apos;re sending the email.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.24946-394782</guid>
		<pubDate>Mon, 03 Oct 2005 09:18:28 -0800</pubDate>
		<dc:creator>thanotopsis</dc:creator>
	</item><item>
		<title>By: blue mustard</title>
		<link>http://ask.metafilter.com/24946/Outlook-ReplyTo-problems#394899</link>	
		<description>Here&apos;s a little VB macro that will do what you want, I think.  Use at your own risk... Although it appears to work for me, I haven&apos;t spent a lot of time testing it.  &lt;ol&gt;&lt;li&gt;Open Outlook.&lt;br&gt;
&lt;li&gt;Go to the &quot;Tools&quot; menu, choose the &quot;Macro&quot; submenu, and finally &quot;Visual Basic Editor&quot;.&lt;br&gt;
&lt;li&gt;The VB editor opens, and you should see a &quot;Project Explorer&quot; subwindow, probably in the upper left.  Expand the folders and find the node that says &quot;ThisOutlookSession&quot;.  Double click on this node.&lt;br&gt;
&lt;li&gt;Paste the following code into the large white region.  Change replytoemailaddress@whereever.org to your reply-to email address.&lt;br&gt;
&lt;br&gt;
&lt;code&gt;Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)&lt;br&gt;
    Item.ReplyRecipients.Add &quot;replytoemailaddress@whereever.org&quot;&lt;br&gt;
    Item.ReplyRecipients.Item(1).Resolve&lt;br&gt;
    Item.Save&lt;br&gt;
End Sub&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
&lt;li&gt;In the &quot;File&quot; menu, choose &quot;Save&quot;, and then &quot;Close and Return to Microsoft Outlook&quot;.&lt;br&gt;
&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/ol&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.24946-394899</guid>
		<pubDate>Mon, 03 Oct 2005 12:42:30 -0800</pubDate>
		<dc:creator>blue mustard</dc:creator>
	</item><item>
		<title>By: MintSauce</title>
		<link>http://ask.metafilter.com/24946/Outlook-ReplyTo-problems#395552</link>	
		<description>blue mustard, that works great for the session, but not once you close and restart ... is there anyway of making it more permanent?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.24946-395552</guid>
		<pubDate>Tue, 04 Oct 2005 04:56:35 -0800</pubDate>
		<dc:creator>MintSauce</dc:creator>
	</item><item>
		<title>By: blue mustard</title>
		<link>http://ask.metafilter.com/24946/Outlook-ReplyTo-problems#395568</link>	
		<description>Hmm, that&apos;s interesting. On my machine it persists through a close and restart.  Make sure you save the code by going to the &quot;File&quot; menu and choosing &quot;Save VbaProject.OTM&quot; (step 5). &lt;br&gt;
&lt;br&gt;
If you&apos;re sure you&apos;re saving it, but it still doesn&apos;t stick around when you restart Outlook, I&apos;m not sure what&apos;s happening.... sorry.  I suppose it&apos;s possible there is something overwriting the file when you start Outlook.  You might be able to prevent this by making the macro file read-only.  The macro file is called VbaProject.OTM and can (usually) be found in this directory:&lt;br&gt;
C:\Documents and Settings\username\Application Data\Microsoft\Outlook&lt;br&gt;
&lt;br&gt;
After you make the changes and save, find this file, right click it, and check the &quot;Read only&quot; checkbox.   It will prevent most applications from changing the file.  Again, I&apos;m not sure if this will help, because I&apos;m not sure why the changes aren&apos;t sticking around, but it&apos;s worth a shot.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2005:site.24946-395568</guid>
		<pubDate>Tue, 04 Oct 2005 05:54:46 -0800</pubDate>
		<dc:creator>blue mustard</dc:creator>
	</item>
	</channel>
</rss>
