Troubleshooting With the Microsoft Exchange Troubleshooting Assistant
Microsoft provides the
Microsoft Exchange Troubleshooting Assistant v1.1 to aid in
troubleshooting problems with Microsoft Exchange Servers. I installed and
ran the tool today to try to figure out why messages sometimes get
stuck in
SMTP
queues on an Exchange 2003 server running on a Windows Small Business
Server (SBS) 2003 system.
[ More
Info ]
[/network/email/exchange]
permanent link
Links Without Underlining
Occasionally, I want a specific link to appear in a webpage without
underlining. You can add
style="text-decoration:none"
with the link to prevent the text associated with the link from being
underlined.
For instance, sometimes I use superscripts in a document to link to
a reference. Normally a link will be underlined, which will look
slightly odd. E.g., if I link back to the reference
1, I
used for this blog entry, the number "1" has an underline below it.
If I don't want it to appear I can use the HTML code below.
<a href="http://www.pageresource.com/html/link3.htm"
style="text-decoration:none"><sup>1</sup></a>
Using that code the reference
1 superscrpt is not
underlined.
If you don't want any URLs in the webpage underlined, you can add the
following code to the head
section of the HTML for the webpage.
<STYLE type="text/css">
<!--
A { text-decoration:none }
-->
</STYLE>
With the above code placed between your <HEAD>
and
</HEAD>
tags, you can
code your links as you normally would, but none of them will be underlined.
The style sheet in the head section will make them all non-underlined.
[/network/web/html]
permanent link
Email Stuck in Exchange SMTP Queues
When a user complained that her email was not reaching a mailing list,
I checked the Exchange server that handles her email and found messages
stuck in
SMTP
queues on the server. I was able to force Exchange to send the queued messages,
but several messages had been stuck in a queue for days with one in a queue
for six days.
[ More Info ]
[/network/email/exchange]
permanent link