Outlook hangs on emails that have images with invalid network paths
At first I thought this could be an isolated problem, but several email from different sources are presenting the same problem. Whenever the email contains an (AFAIK malformed) youtube thumbnail URI, outlook 2010 (14.0.6112.5000 x64) hangs with this dialog on the foreground
The offending source code is
<img alt=3D"" border=3D"0" src=3D"//" style=3D"display: block; border: 0;" width=3D"200">Interestingly enough, this image displays fine when viewed via webmail (google apps).
- Shouldn't out look treat this link just like any other broken link and not hang ?
- Why does the URI work on webmail but not for outlook?
- Any suggestions on a temporary workaround?
4 Answers
One "solution" is to edit your hosts file to map img.youtube.com to your local IP address (127.0.0.1) so it fails instantly, rather than taking 1 minute to fail to find \img.youtube.com.
In my case the emails had an image attempting to load from //feeds.feedburner.com blocking that network location is rather severe though if you run an RSS reader.
1According to , the fix is to switch to Outlook 2013.
1This is a bug in Outlook (prior to and including 2010), as documented here. When an image points to a non-existing network share* (instead of a web server), Outlook’s “Internet picture blocking” functionality doesn’t kick in and Outlook still tries to retrieve the content in a foreground thread, which causes it to stall for about 1 minute.
*While the URLs that begin with // are simply protocol relative URLs, some email clients (Outlook especially, as usual) won’t try to use HTTP or HTTPS as the protocol. Instead they’ll use the file:// protocol and assume the resource you’re referring to is on the local machine (hence Outlook thinking it is a non-existing network share).
UPDATE: a few years later, a hotfix can be downloaded here, though it doesn't seem to always work in my case.
Bottom line: its not safe to use protocol relative URL in email.
This hotfix fixes problems with images in Outlook 2010
1