<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Outlook on Much Ado About IT</title><link>https://it.knightnet.org.uk/tags/outlook/</link><description>
Recent content about Outlook from Much Ado About IT |
Ramblings and rantings from IT Architect &amp; Designer, Julian Knight</description><generator>Hugo | gohugo.io | Theme twenty-sixteen</generator><language>en-gb</language><copyright>This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.</copyright><lastBuildDate>Mon, 24 Apr 2023 21:27:28 +0000</lastBuildDate><atom:link href="https://it.knightnet.org.uk/tags/outlook/feed.xml" rel="self" type="application/rss+xml"/><item><title>Macro to open a web URL from Outlook</title><link>https://it.knightnet.org.uk/kb/ms-office/outlook-macro-open-web-url/</link><guid isPermaLink="true">https://it.knightnet.org.uk/kb/ms-office/outlook-macro-open-web-url/</guid><pubDate>Wed, 25 Apr 2018 10:31:45 +0000</pubDate><guid>https://it.knightnet.org.uk/kb/ms-office/outlook-macro-open-web-url/</guid><description><div>Many of us spend most of our work time in a few applications such as Outlook (email) and a web browser. This example macro for Microsoft Outlook will let you add a button to the Outlook Ribbon that will open a specific website URL.</div><div>&lt;p>To use this macro:&lt;/p>
&lt;ul>
&lt;li>Open the VBA Editor window (&lt;!-- raw HTML omitted -->ctrl&lt;!-- raw HTML omitted -->-&lt;!-- raw HTML omitted -->F11&lt;!-- raw HTML omitted -->)&lt;/li>
&lt;li>Double-click on Project1 &amp;gt; Microsoft Outlook Objects &amp;gt; ThisOutlookSession in the Project pane (top-left)&lt;/li>
&lt;li>Paste the code below&lt;/li>
&lt;li>Customise the Ribbon&lt;/li>
&lt;li>Add a new Group (you can&amp;rsquo;t add your own entries to the standard groups)&lt;/li>
&lt;li>Add the &lt;code>openGoogle&lt;/code> macro (or whatever you&amp;rsquo;ve added), rename and change the icon if desired&lt;/li>
&lt;/ul>
&lt;p>&lt;strong>Note&lt;/strong>: This version will only work for the 64-bit version of Microsoft Outlook.
To use on the 32-bit version, remove the word &lt;code>PtrSafe&lt;/code>.&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" class="chroma">&lt;code class="language-basic" data-lang="basic">&lt;span class="line">&lt;span class="cl">&lt;span class="vg">Option&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">Explicit&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="vg">Private&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">Declare&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">PtrSafe&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">Function&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">ShellExecute&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">_&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w"> &lt;/span>&lt;span class="vg">Lib&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="s2">&amp;#34;shell32.dll&amp;#34;&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">Alias&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="s2">&amp;#34;ShellExecuteA&amp;#34;&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="p">(&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">_&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w"> &lt;/span>&lt;span class="vg">ByVal&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">hWnd&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">As&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">Long&lt;/span>&lt;span class="p">,&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">_&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w"> &lt;/span>&lt;span class="vg">ByVal&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">Operation&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">As&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">String&lt;/span>&lt;span class="p">,&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">_&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w"> &lt;/span>&lt;span class="vg">ByVal&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">Filename&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">As&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">String&lt;/span>&lt;span class="p">,&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">_&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w"> &lt;/span>&lt;span class="vg">Optional&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">ByVal&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">Parameters&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">As&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">String&lt;/span>&lt;span class="p">,&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">_&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w"> &lt;/span>&lt;span class="vg">Optional&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">ByVal&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">Directory&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">As&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">String&lt;/span>&lt;span class="p">,&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">_&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w"> &lt;/span>&lt;span class="vg">Optional&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">ByVal&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">WindowStyle&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">As&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">Long&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="o">=&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">vbMinimizedFocus&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">_&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w"> &lt;/span>&lt;span class="p">)&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">As&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">Long&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="c1">&amp;#39; WARINING: THIS MUST ONLY BE GIVEN SAFE URLs!&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="c1">&amp;#39; DO NOT USE WITH DIRECT USER INPUT&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="vg">Private&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">Sub&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">openUrl&lt;/span>&lt;span class="p">(&lt;/span>&lt;span class="vg">url&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">As&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">String&lt;/span>&lt;span class="p">)&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w"> &lt;/span>&lt;span class="vg">Dim&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">lSuccess&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">As&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">Long&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w"> &lt;/span>&lt;span class="vg">lSuccess&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="o">=&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">ShellExecute&lt;/span>&lt;span class="p">(&lt;/span>&lt;span class="il">0&lt;/span>&lt;span class="p">,&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="s2">&amp;#34;Open&amp;#34;&lt;/span>&lt;span class="p">,&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">url&lt;/span>&lt;span class="p">)&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="vg">End&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">Sub&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="vg">Public&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">Sub&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">openGoogle&lt;/span>&lt;span class="p">()&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w"> &lt;/span>&lt;span class="vg">openUrl&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="s2">&amp;#34;https://google.com&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="vg">End&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="vg">Sub&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div></div></description><author>Julian Knight</author><category domain="https://it.knightnet.org.uk/categories/development">Development</category><category domain="https://it.knightnet.org.uk/categories/microsoft">Microsoft</category><category domain="https://it.knightnet.org.uk/categories/software">Software</category><category domain="https://it.knightnet.org.uk/tags/microsoft">Microsoft</category><category domain="https://it.knightnet.org.uk/tags/office">Office</category><category domain="https://it.knightnet.org.uk/tags/outlook">Outlook</category><category domain="https://it.knightnet.org.uk/tags/vba">VBA</category></item><item><title>A simple mail filer for Microsoft Outlook (VBA)</title><link>https://it.knightnet.org.uk/2015/06/simple-mail-filer-microsoft-outlook-vba-2.html</link><guid isPermaLink="true">https://it.knightnet.org.uk/2015/06/simple-mail-filer-microsoft-outlook-vba-2.html</guid><pubDate>Fri, 05 Jun 2015 19:56:06 +0000</pubDate><guid>https://it.knightnet.org.uk/2015/06/simple-mail-filer-microsoft-outlook-vba-2.html</guid><description><div/><div>&lt;p>Like many people I receive an unmanageable amount of email each day. Many days I get through only around 1/3 of the email I receive.
However, the role I am in professionally requires me to retain a large proportion of correspondence. Some because it relates to ongoing projects, other because of security, audit or compliance reasons.&lt;/p>
&lt;p>In addition, I work across many projects. It isn’t unusual for me to be involved in two dozen projects at any one time on top of my day-to-day management work.&lt;/p>
&lt;p>So I have many folders – hundreds in fact – and filing email into the right folder has become a real drag. It can take an appreciable amount of time to hunt down the correct folder and Outlook does not provide any way to search/filter folder names in the UI.&lt;/p>
&lt;p>Thankfully, I have access to VBA in Outlook. While the experience of using VBA macro’s to control Outlook is rarely pleasant, it does get the job done – mainly.&lt;/p>
&lt;p>My requirements for the utility were as follows:&lt;/p>
&lt;ul>
&lt;li>Must let me select multiple emails, if any have already been filed, show me the folder(s) so I can quickly file new email to the same folder as the rest of the conversation.&lt;/li>
&lt;li>Must give me a list of all my folders with a simple way of filtering the list by typing a few letters.&lt;/li>
&lt;li>Must also let me open a folder for viewing instead of filing or cancelling.&lt;/li>
&lt;/ul>
&lt;p>A couple of hours later, I was able to create a new utility. This has been published to Github and you can find it at:
&lt;!-- raw HTML omitted -->&lt;a href="https://github.com/TotallyInformation/outlook-filer">https://github.com/TotallyInformation/outlook-filer&lt;/a>&lt;!-- raw HTML omitted -->&lt;/p></div></description><author>Julian Knight</author><category domain="https://it.knightnet.org.uk/categories/microsoft">Microsoft</category><category domain="https://it.knightnet.org.uk/categories/software">Software</category><category domain="https://it.knightnet.org.uk/categories/windows">Windows</category><category domain="https://it.knightnet.org.uk/tags/email">email</category><category domain="https://it.knightnet.org.uk/tags/microsoft">Microsoft</category><category domain="https://it.knightnet.org.uk/tags/outlook">Outlook</category><category domain="https://it.knightnet.org.uk/tags/vba">VBA</category></item><item><title>Outlook 2013 URL Protocol Handler</title><link>https://it.knightnet.org.uk/2014/06/outlook-2013-url-protocol-handler.html</link><guid isPermaLink="true">https://it.knightnet.org.uk/2014/06/outlook-2013-url-protocol-handler.html</guid><pubDate>Fri, 27 Jun 2014 21:07:40 +0000</pubDate><guid>https://it.knightnet.org.uk/2014/06/outlook-2013-url-protocol-handler.html</guid><description><div>Outlook has a custom URL protocol that allows interaction with different elements such as folders, mail and calendar items and contacts, Since Outlook 2007, this has been restricted for use only within Outlook itself but there are some tremendous opportunities for use from simple web systems. This post explains how to turn it on, even for Outlook 2013 (Office 365 version). It also gives pointers to other articles on how to use the protocol.</div><div>&lt;p>&lt;strong>Update&lt;/strong> 2018-04-24: Having changed roles at the start of 2017, I am no longer getting quite the volume of email that
I used to. So I no longer need to manage my email in quite the same way. However, the Outlook URL protocol handler
remains very useful, especially when creating To Do lists in other tools and linking back to Outlook emails.&lt;/p>
&lt;hr>
&lt;p>One of the nice features about older versions of Microsoft Outlook was that it had a set of &lt;!-- raw HTML omitted -->URL Protocol Handlers&lt;!-- raw HTML omitted --> (like [outlook:inbox][1]) defined that could be used system wide to trigger actions in Outlook such as opening a folder, creating or editing an item.&lt;/p>
&lt;p>Unfortunately, along the way, these got gradually toned down so that they only worked from within Outlook itself.&lt;/p>
&lt;p>This can still be useful. I’m not sure how many people realise that you can create “folders” in your Outlook mailbox. Choose &lt;code>Properties .../Home Page&lt;/code> and set a URL – maybe your blog or Intranet. Now when you click on the folder, you will see the web page instead of a set of mail items or whatever.&lt;/p>
&lt;p>When using this feature to do some more clever stuff such as creating To Do lists from incoming mail, you might choose to use a dynamic web system to handle the list. &lt;!-- raw HTML omitted -->CouchDB&lt;!-- raw HTML omitted --> or &lt;!-- raw HTML omitted -->Node.JS&lt;!-- raw HTML omitted --> are lightweight web systems that come to mind.&lt;/p>
&lt;p>Then you might find yourself wishing that you could create links in your To Do system back to the original email in Outlook. Well you can! Sort of.&lt;/p>
&lt;p>It turns out that, although the external use of the Outlook: protocol hasn’t been available since Outlook 2003, it can still be turned on, even in Outlook 2013. There is a &lt;!-- raw HTML omitted -->useful article on the TeamScope web site that shows you how to turn on the outlook: protocol system-wide&lt;!-- raw HTML omitted -->.&lt;/p>
&lt;p>One minor wrinkle though if you use Office from an &lt;!-- raw HTML omitted -->Office 365&lt;!-- raw HTML omitted --> subscription – the location for Microsoft Office applications is different! You will find them at: &lt;code>C:\Program Files\Microsoft Office 15\root\office15&lt;/code>.&lt;/p>
&lt;p>Here then is the registry code that you need to enable the protocol:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" class="chroma">&lt;code class="language-ini" data-lang="ini">&lt;span class="line">&lt;span class="cl">&lt;span class="na">Windows Registry Editor Version 5.00&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="k">[HKEY_CLASSES_ROOT\outlook]&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="na">&amp;#34;URL Protocol&amp;#34;&lt;/span>&lt;span class="o">=&lt;/span>&lt;span class="s">&amp;#34;&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="na">@&lt;/span>&lt;span class="o">=&lt;/span>&lt;span class="s">&amp;#34;URL:Outlook Folders&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="k">[HKEY_CLASSES_ROOT\outlook\DefaultIcon]&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="na">@&lt;/span>&lt;span class="o">=&lt;/span>&lt;span class="s">&amp;#34;\&amp;#34;C:\\Program Files\\Microsoft Office 15\\root\\office15\\OUTLOOK.EXE\&amp;#34;&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="k">[HKEY_CLASSES_ROOT\outlook\shell]&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="na">@&lt;/span>&lt;span class="o">=&lt;/span>&lt;span class="s">&amp;#34;open&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="k">[HKEY_CLASSES_ROOT\outlook\shell\open]&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="na">@&lt;/span>&lt;span class="o">=&lt;/span>&lt;span class="s">&amp;#34;&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="k">[HKEY_CLASSES_ROOT\outlook\shell\open\command]&lt;/span>
&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="na">@&lt;/span>&lt;span class="o">=&lt;/span>&lt;span class="s">&amp;#34;\&amp;#34;C:\\Program Files\\Microsoft Office 15\\root\\office15\\OUTLOOK.EXE\&amp;#34; /select \&amp;#34;%1\&amp;#34;&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>Simply save this into a &lt;code>.reg&lt;/code> file and open it to install the changes.&lt;/p>
&lt;p>Now you can use the outlook: protocol anywhere on the system, great for dynamic web systems.
One minor word of warning though – there are dangers! Don’t open links unless you know what they are, where they go and what they do!&lt;/p>
&lt;p>To find out how to use the Outlook protocol handler, try one of the following articles:&lt;/p>
&lt;ul>
&lt;li>&lt;!-- raw HTML omitted -->Slipstick: Using Outlook Links&lt;!-- raw HTML omitted --> – articles on Slipstick are always useful and knowledgeable.&lt;/li>
&lt;li>&lt;!-- raw HTML omitted -->What’s new for Outlook 2013 developers&lt;!-- raw HTML omitted -->&lt;/li>
&lt;li>&lt;!-- raw HTML omitted -->How to hyperlink to Microsoft Outlook messages&lt;!-- raw HTML omitted -->&lt;/li>
&lt;/ul>
&lt;p>One final note. I’m now looking to create some tools that link between Outlook and &lt;!-- raw HTML omitted -->CouchDB&lt;!-- raw HTML omitted -->. CouchDB provides a very lightweight &lt;!-- raw HTML omitted -->NOSQL&lt;!-- raw HTML omitted --> database that uses &lt;!-- raw HTML omitted -->JSON&lt;!-- raw HTML omitted --> and &lt;!-- raw HTML omitted -->JavaScript&lt;!-- raw HTML omitted --> to great effect. I’m already using it to track statistics on incoming/outgoing emails, linking the web interface back to Outlook via the home page method mentioned at the start. I’m going to have a go at creating a task monitor too if I get the time. I am currently reading only around a quarter of the emails in my work inbox and I really need some tools to improve the situation. Food for some more blog posts hopefully.
[1]: outlook:inbox &amp;ldquo;Activate Outlook and show the inbox&amp;rdquo;&lt;/p></div></description><author>Julian Knight</author><category domain="https://it.knightnet.org.uk/categories/development">Development</category><category domain="https://it.knightnet.org.uk/categories/microsoft">Microsoft</category><category domain="https://it.knightnet.org.uk/categories/software">Software</category><category domain="https://it.knightnet.org.uk/tags/couchdb">CouchDB</category><category domain="https://it.knightnet.org.uk/tags/microsoft">Microsoft</category><category domain="https://it.knightnet.org.uk/tags/office">Office</category><category domain="https://it.knightnet.org.uk/tags/outlook">Outlook</category></item><item><title>Critical Bug in Outlook 2007</title><link>https://it.knightnet.org.uk/2009/03/critical-bug-in-outlook-2007.html</link><guid isPermaLink="true">https://it.knightnet.org.uk/2009/03/critical-bug-in-outlook-2007.html</guid><pubDate>Tue, 17 Mar 2009 22:34:00 +0000</pubDate><guid>https://it.knightnet.org.uk/2009/03/critical-bug-in-outlook-2007.html</guid><description><div/><div>&lt;p>I’ve recently &lt;!-- raw HTML omitted -->stumbled on a bug in Outlook 2007&lt;!-- raw HTML omitted -->. Apparently it is &lt;!-- raw HTML omitted -->quite well known&lt;!-- raw HTML omitted --> and the only reason that I hadn’t found it was that I don’t use Outlook as my main email client. In fact I only use email on it to handle meeting requests.
The bug is that Outlook 2007 ignores the setting regarding sending reply requests for IMAP accounts.
If this seems rather irrellivant to you, you might want to think again.
If you have an email account that receives SPAM and you access it via IMAP, Outlook 2007 will ignore your setting for reply requests (the setting is defaulted to prompt). Since many SPAM emails have reply requested turned on, you will suddenly find that Outlook is trying to send a whole load of email messages that do not appear in any folder! You haven’t been asked, it is just doing it.
This is bad enough as you are now leaking information about your account out onto the Internet – but it gets worse!
Outlook does not send the replies out using the account that recieved the SPAM, it sends them out from the DEFAULT account.
So if you have, lets say for example, a work account that doesn’t recieve significant SPAM and is your default account in Outlook. Then you have a second, personal account perhaps, that does recieve significant SPAM. You will suddenly find that Outlook is sending hidden emails from your work account – these are the reply responses from your personal account. Now you are leaking information about your work account.
Now, there is a new, big update to Outlook 2007 that has just been released. It is not yet on Windows Update but Microsoft are touting it as the biggest and best set of updates for Outlook ever – see &lt;!-- raw HTML omitted -->Jimmy May’s blog post&lt;!-- raw HTML omitted --> for more information. Sadly though, despite the hype, the new update does not fix this critical bug.
The update – which will be part of the Service Pack 2 (SP2) for Office 2007 – certainly does vastly speed up the operation of Outlook 2007 so there is some good news.&lt;/p>
&lt;!-- raw HTML omitted -->
&lt;p>&lt;!-- raw HTML omitted --> &lt;!-- raw HTML omitted -->&lt;!-- raw HTML omitted -->Technorati&lt;!-- raw HTML omitted --> : &lt;!-- raw HTML omitted -->IMAP&lt;!-- raw HTML omitted -->, &lt;!-- raw HTML omitted -->Microsoft&lt;!-- raw HTML omitted -->, &lt;!-- raw HTML omitted -->Office&lt;!-- raw HTML omitted -->, &lt;!-- raw HTML omitted -->Outlook&lt;!-- raw HTML omitted -->, &lt;!-- raw HTML omitted -->Software&lt;!-- raw HTML omitted -->, &lt;!-- raw HTML omitted -->Windows&lt;!-- raw HTML omitted -->&lt;!-- raw HTML omitted --> &lt;!-- raw HTML omitted --> &lt;!-- raw HTML omitted -->&lt;!-- raw HTML omitted -->Diigo Tag Search&lt;!-- raw HTML omitted --> : &lt;!-- raw HTML omitted -->IMAP&lt;!-- raw HTML omitted -->, &lt;!-- raw HTML omitted -->Microsoft&lt;!-- raw HTML omitted -->, &lt;!-- raw HTML omitted -->Office&lt;!-- raw HTML omitted -->, &lt;!-- raw HTML omitted -->Outlook&lt;!-- raw HTML omitted -->, &lt;!-- raw HTML omitted -->Software&lt;!-- raw HTML omitted -->, &lt;!-- raw HTML omitted -->Windows&lt;!-- raw HTML omitted -->&lt;!-- raw HTML omitted -->&lt;/p>
&lt;!-- raw HTML omitted --></div></description><author>Julian Knight</author><category domain="https://it.knightnet.org.uk/tags/imap">IMAP</category><category domain="https://it.knightnet.org.uk/tags/office">Office</category><category domain="https://it.knightnet.org.uk/tags/outlook">Outlook</category></item></channel></rss>