BUG: Periods removed from img and a tags in msg body

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I generate an html email to send via SmtpMail, it will (apparently) randomly remove a period in the filename for some image and anchor tags, but not all

For example, in the email body, i may have an image
<img border="0" src="http://servername/filename.gif"
But it will be received in Outlook as
<img border="0" src="http://servername/filenamegif"
NOTE THE MISSING PERIOD IN THE FILENAME

The same thing can occur for an anchor tag (link). If it references "myfile.asp", it may appear as "myfileasp", again missing the period

This does not happen to all links or images. I can't figure out what the pattern is. There has been a notion that the firewall or proxy servers are performing this as a "feature", but I don't know where to look to try validate this. Help!
 
I've never seen this. I could be a proxy or mail server doing this, but
it's unlikely.

Have you tried URLEncode'ing the src attribute?


--
CharlieN
VSU

This posting is provided "AS IS" with no warranties, and confers no rights.

Note: For the benefit of the community-at-large, all responses to this
message are best directed to the newsgroup/thread from which they
originated.
--------------------
Thread-Topic: Periods removed from img and a tags in msg body
thread-index: AcQBWY/LmZaAXcSYSJiLXelqkEi+Fw==
X-Tomcat-NG: microsoft.public.dotnet.languages.vb
From: "=?Utf-8?B?Sm9obiBCdWVsbA==?="
Subject: BUG: Periods removed from img and a tags in msg body
Date: Wed, 3 Mar 2004 11:56:05 -0800
Lines: 11
Message-ID: <[email protected]>
MIME-Version: 1.0
Content-Type: text/plain;
charset="Utf-8"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
Content-Class: urn:content-classes:message
Importance: normal
Priority: normal
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
Newsgroups: microsoft.public.dotnet.languages.vb
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.vb:186288
NNTP-Posting-Host: tk2msftcmty1.phx.gbl 10.40.1.180
X-Tomcat-NG: microsoft.public.dotnet.languages.vb

When I generate an html email to send via SmtpMail, it will (apparently)
randomly remove a period in the filename for some image and anchor tags,
but not all!

For example, in the email body, i may have an image:
<img border="0" src="http://servername/filename.gif">
But it will be received in Outlook as:
<img border="0" src="http://servername/filenamegif">
NOTE THE MISSING PERIOD IN THE FILENAME!

The same thing can occur for an anchor tag (link). If it references
"myfile.asp", it may appear as "myfileasp", again missing the period.

This does not happen to all links or images. I can't figure out what the
pattern is. There has been a notion that the firewall or proxy servers are
performing this as a "feature", but I don't know where to look to try
validate this. Help!
 
I have now tried URLEncode, but it seems that Outlook can't interpret the encoding (%2E for periods) and won't properly locate and display the image.
 
Back
Top