<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Email management, storage and security for business email admins</title>
	<atom:link href="http://www.theemailadmin.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.theemailadmin.com</link>
	<description></description>
	<lastBuildDate>Thu, 09 Feb 2012 14:00:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Exchange Management Shell vs PowerShell</title>
		<link>http://www.theemailadmin.com/2012/02/exchange-management-shell-vs-powershell/</link>
		<comments>http://www.theemailadmin.com/2012/02/exchange-management-shell-vs-powershell/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 14:00:24 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5385</guid>
		<description><![CDATA[One of the things that I get a lot of questions about when I start leading people down the CLI path is whether or not the Exchange Management Shell is just PowerShell with a fancier icon. We frequently open the EMS in order to perform certain managerial tasks in Exchange, and we hear more and [...]<p><a href="http://www.theemailadmin.com/2012/02/exchange-management-shell-vs-powershell/">Exchange Management Shell vs PowerShell</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F02%2Fexchange-management-shell-vs-powershell%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F02_2Fexchange-management-shell-vs-powershell_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F02%2Fexchange-management-shell-vs-powershell%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/02/EMSvPS.jpg"><img class="alignright size-medium wp-image-5386" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/02/EMSvPS-300x124.jpg" alt="" width="300" height="124" /></a>One of the things that I get a lot of questions about when I start leading people down the CLI path is whether or not the Exchange Management Shell is just PowerShell with a fancier icon. We frequently open the EMS in order to perform certain managerial tasks in Exchange, and we hear more and more coming out of Redmond regarding PowerShell. So let’s discuss it.</p>
<p>As it turns out, the Exchange Management Shell <em>is</em> PowerShell (big surprise there) but it’s a more specialized environment than you get when simply running PowerShell.exe, with a lot of specific settings to make it talk to Exchange. In this post, we’ll go over the differences, and when you want to use one or the other.<span id="more-5385"></span></p>
<p>The Exchange Management Shell (EMS) uses PowerShell as its base, but it expands upon PowerShell in a number of ways. Many of these you could do yourself, either manually by entering specific commands, or by automating those tasks in your profile. When you launch the EMS, you connect to a remote session on an Exchange server using Windows Remote Management 2.0 (WinRM). Even if you are running the EMS on the only Exchange server in your environment, you connect to that WRM. The only exception to this is the Edge Transport server. Because it is a standalone role, when you launch the Exchange Management Shell, you connect to the local server only, much like you did in Exchange 2007.</p>
<p>When you connect, authentication checks create a session for you with access to the cmdlets and parameters you have permission to run based on your assigned management roles. The cmdlets are contained within three snap-ins:</p>
<ol>
<li>Microsoft.Exchange.Management.PowerShell.E2010</li>
<li>Microsoft.Exchange.Management.PowerShell.Setup</li>
<li>Microsoft.Exchange.Management.Powershell.Support</li>
</ol>
<p>You could load those into a PowerShell session using the <strong>Add-PsSnapin</strong> command but there are still differences between the two environments. Launching PowerShell and adding the snapins would give you access to the cmdlets, but first, you would still need to connect your session to the WinRM instance running on the Exchange server. You would also be running all of the available commands as cmdlets. When you launch the EMS, you run these as functions.</p>
<p>When it comes to writing scripts, the good news is that because EMS is built on top of PowerShell, there’s no real difference when it comes to scripting and using the EMS. Some of the system variables do not work fully in the EMS though, so if you are going to write a script that uses a system variable, you are better off adding the snap-ins to PowerShell.</p>
<p>While most Exchange admins tend to use the remote desktop client to connect to an Exchange Server, when they want to run EMS commands that is not necessary. If you are running a 64 bit desktop, you can install the Exchange Management Tools on your workstation from the Exchange installer. Users with the –RemotePowerShellEnabled attribute set to true, and assigned to at least one Exchange management role, will be able to run the EMS on their workstation and manage Exchange.</p>
<p>In future posts, we’ll start to dig deeper into the EMS and explore just how powerful and useful this administrative interface is.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/02/exchange-management-shell-vs-powershell/">Exchange Management Shell vs PowerShell</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/02/exchange-management-shell-vs-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Ready for DMARC &#8211; A Review of SPF and DKIM</title>
		<link>http://www.theemailadmin.com/2012/02/get-ready-for-dmarc-a-review-of-spf-and-dkim/</link>
		<comments>http://www.theemailadmin.com/2012/02/get-ready-for-dmarc-a-review-of-spf-and-dkim/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 14:00:11 +0000</pubDate>
		<dc:creator>Jeff Orloff</dc:creator>
				<category><![CDATA[security]]></category>
		<category><![CDATA[Bank of America]]></category>
		<category><![CDATA[DKIM]]></category>
		<category><![CDATA[DomainKeys]]></category>
		<category><![CDATA[DomainKeys Identified Mail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[PayPal]]></category>
		<category><![CDATA[sender policy framework]]></category>
		<category><![CDATA[Simple Mail Transfer Protocol]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5360</guid>
		<description><![CDATA[Just recently, a new industry consortium made up of email providers, financial institutions, social media properties and security providers put their heads together and came up with the DMARC (Domain based Message Authentication, Reporting and Conformance) specification. With a goal of setting up a collaborative effort to help organizations recognize and fight spoofed emails, spam, [...]<p><a href="http://www.theemailadmin.com/2012/02/get-ready-for-dmarc-a-review-of-spf-and-dkim/">Get Ready for DMARC &#8211; A Review of SPF and DKIM</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F02%2Fget-ready-for-dmarc-a-review-of-spf-and-dkim%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F02_2Fget-ready-for-dmarc-a-review-of-spf-and-dkim_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F02%2Fget-ready-for-dmarc-a-review-of-spf-and-dkim%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/02/dkim.png"><img class="alignright size-full wp-image-5361" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/02/dkim.png" alt="" width="278" height="242" /></a>Just recently, a new industry consortium made up of email providers, financial institutions, social media properties and security providers put their heads together and came up with the DMARC (Domain based Message Authentication, Reporting and Conformance) specification.</p>
<p>With a goal of setting up a collaborative effort to help organizations recognize and fight spoofed emails, spam, and phishing attempts, this group is relying on the deployment of the Sender Policy Framework and DomainKeys Identified Mail to complement existing anti-spam solutions.</p>
<p>With industry leaders like Google, Microsoft, PayPal and Bank of America already signed on, along with 11 other companies, DMARC’s work is certain to make a splash in the IT world.</p>
<p>To better help IT departments understand what DMARC is trying to do, and better prepare them to make a decision regarding DMARC, let’s take a little time and refresh our memory on SPF and DKIM.<span id="more-5360"></span></p>
<h2>Sender Policy Framework</h2>
<p>One of the major flaws in the Simple Mail Transfer Protocol is that is allows any computer to send an email using a forged email address. For example, anyone exploiting SMTP could send a spoofed email from their computer at home and make it look like it was coming from a bank.</p>
<p>To address this major flaw in SMTP’s security, the Sender Policy Framework was created in 2003 by Meng Weng Wong. Using special DNS records, the owner of a domain has the ability to specify which computers are allowed to send email messages with the sender address in the specific domain.</p>
<p>Should an unauthorized computer attempt to send a message from the domain in question the SMTP server rejects the sender and the unauthorized computer will receive a rejection message.</p>
<p>SPF is not without vulnerabilities though. Spoofing the mail header information such as From or Sender is not something that SPF helps to protect against. It is also open to what is known as a wide mask vulnerability where spammers specify a wide mask of valid server addresses in hope that spam from their botnets become SPF valid and pass through spam filters.</p>
<h2>DomainKeys Identified Mail</h2>
<p>DKIM came about by merging the DomainKeys and Identified Internet Mail standards with the purpose of associating a domain name to an email message through a digital signature that can be validated by the recipient.</p>
<p>The signer attaches the digital signature to the message being sent using a private key. A verifier that receives the message then relies on the public key to validate the legitimacy of the signature.</p>
<p>So if an email arrives in a person’s inbox from their bank, and their bank uses DKIM then they can feel confident that the message did in fact come from their bank.</p>
<p>If a spammer tries to send a phishing email to the same person and claims to be a representative of the same bank, the message will be rejected and quarantined by the server – never showing up to the intended recipient.</p>
<p>Flaws found in DKIM include the ability to forward a verified message with the content having been modified. Since SPF does not allow for this, it is common to see DKIM and SPF combined.</p>
<p>DKIM is also known to be resource intensive as a result of the cryptographic checksums that validate the digital signature.</p>
<h2>SPF, DKIM and DMARC</h2>
<p>According to DMARC.org, DKIM and SPF relate to their specification in the following ways:</p>
<p><strong>DomainKeys Identified Mail (DKIM)</strong></p>
<ul>
<li>DKIM provides a method for validating a domain name identity that is associated with a message through cryptographic authentication.</li>
<li>DMARC uses DKIM results as one method (SPF being the other) for receivers to check email./li&gt;</li>
</ul>
<p><strong>Sender Policy Framework (SPF)</strong></p>
<ul>
<li>SPF provides a method for validating the envelope sender domain identity that is associated with a message through path-based authentication.</li>
<li>DMARC uses SPF results as one method (DKIM being the other) for receivers to check email.</li>
</ul>
<p>Using the DMARC specification, member organizations can rely on the collaborative efforts of the group to share resources so that spoofed emails can be easily spotted and the amount of resources used in the process can be reduced.</p>
<p>Additionally, they are calling for email senders to sign 100% of their outgoing messages to insure the validity of emails sent.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/02/get-ready-for-dmarc-a-review-of-spf-and-dkim/">Get Ready for DMARC &#8211; A Review of SPF and DKIM</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/02/get-ready-for-dmarc-a-review-of-spf-and-dkim/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Troubleshooting Exchange Networking: NICs (Part 4)</title>
		<link>http://www.theemailadmin.com/2012/02/troubleshooting-exchange-networking-nics-part-4/</link>
		<comments>http://www.theemailadmin.com/2012/02/troubleshooting-exchange-networking-nics-part-4/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 14:00:24 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5367</guid>
		<description><![CDATA[Often Exchange administrators will receive escalated help desk tickets from users complaining that Exchange is “slow” and demanding resolution. These sorts of tickets can be extremely challenging to work, since the subjective nature of slowness is often combined with an inability to replicate the problem, or the problem is intermittent. The Exchange admin can take [...]<p><a href="http://www.theemailadmin.com/2012/02/troubleshooting-exchange-networking-nics-part-4/">Troubleshooting Exchange Networking: NICs (Part 4)</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F02%2Ftroubleshooting-exchange-networking-nics-part-4%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F02_2Ftroubleshooting-exchange-networking-nics-part-4_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F02%2Ftroubleshooting-exchange-networking-nics-part-4%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/02/NICs.jpg"><img class="alignright size-full wp-image-5368" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/02/NICs.jpg" alt="" width="225" height="225" /></a>Often Exchange administrators will receive escalated help desk tickets from users complaining that Exchange is “slow” and demanding resolution. These sorts of tickets can be extremely challenging to work, since the subjective nature of slowness is often combined with an inability to replicate the problem, or the problem is intermittent. The Exchange admin can take a look at the server(s) for high CPU utilization, low memory conditions, disk and network queue lengths exceeding the norm, and finding nothing, shrug it back off to the desktop support team as a client issue.</p>
<p>While it is often a client issue, there are several places between Outlook and a user’s mailbox that can cause intermittent slowness, and are fair to call networking bottlenecks. In a six part series of articles, we’ll look at how Exchange interacts on the network with various other services to help you identify network issues, and troubleshoot them when they occur.</p>
<p>In many cases, troubleshooting Exchange network bottlenecks will require a network trace, and may also require performance monitor counters. This series of articles will talk about both of those in general terms; how to use NetMon or Wireshark, and PerfMon are out of scope. In Part 4 of this series, we’re going to look at the humble physical layer (DoD, not OSI) and discuss troubleshooting NICs.<span id="more-5367"></span></p>
<h2>NICs</h2>
<p>We’re now down where the rubber meets the road, that is, where the packets meet the wire. Your Network Interface Cards can be the most important part of the entire network connectivity between client process and server process, and are also the most commonly overlooked aspect of the entire communications channel. I’ve seen many a case where Exchange network performance issues came down to problems with the NIC, but days had gone by troubleshooting the problem, or weeks just accepting the poor performance, before anyone thought to look at the NICs. <em>If the NICs aren’t happy, ain’t nobody happy</em> so let’s make sure those NICs smile.</p>
<p>The differences between the various physical connections are beyond the scope of this article, but the recommendations and troubleshooting suggestions in this article should apply equally to all types of NIC, whether copper or fibre based, and whether physical or virtual. Let’s start with some best practices for connecting up all your servers and clients:</p>
<h2>Use quality NICs</h2>
<p>There are times to save money, and there are times to spend the extra for the best, and as far as Exchange servers are concerned, you cannot go wrong spending a little extra on the higher quality NICs. Single port or multi-port, specific name brand not as important, but don’t buy the cheap one off NICs or limit yourself to what is built-in to your server.</p>
<h2>Use good cables</h2>
<p>I take pride in my ability to “roll my own” cables (Ethernet, not fibre-optic) and I also know that name-brand cables can cost a fortune, but here again is where you don’t want to take any chances. All of your drop cables should be commercially made, but at the same time, don’t assume that because they are, they are faultless. Make it a habit to test all cables early in the troubleshooting process if not at time of install.</p>
<h2>Use quality, managed switches</h2>
<p>Inexpensive unmanaged switches are good for home use, or to provide last minute patches in a meeting room without wireless, but have no place in a datacenter. Make sure all your servers directly connect to managed switches that can provide you details and statistics about the physical connection.</p>
<p>With that out of the way, now we’ll move on to some more best practices that should also be the second steps you take on the server when troubleshooting connectivity issues, right after reseating all the cables.</p>
<h2>Hardware Drivers</h2>
<p>Make absolutely certain you are running the latest hardware drivers. Check the vendor site, and read the documentation for any known issues that might correlate to your problem, but unless there is something contraindicated in that documentation, make sure you have the latest supported drivers. If you do though, consider downgrading one rev just in case you have encountered a new bug.</p>
<h2>Firmware</h2>
<p>Don’t just stop at the software drivers for your NICs, make sure you have the latest firmware installed as well.</p>
<h2>TCPIP.SYS</h2>
<p>Check the Microsoft operating system drivers for your specific platform, and if you are not running the latest TCPIP driver, upgrade immediately. I have personally seen dozens of problems magically disappear just by catching up on patches. Of course, I do recommend staying current on all patches, but this is one that should have no exceptions.</p>
<h2>Teaming</h2>
<p>More connectivity problems have been “solved” by “breaking the team” than any other single fix in history. If you have having network connectivity problems and are using network teaming, break the team and see if the problem goes away. Do this early on, as it is a quick thing to check, and to put back if that is not the problem. Odds are that it is, and in that case, you need to troubleshoot network teaming, not Exchange networking. The solution will usually be with updating drivers, fixing a problem with your configuration, or something on the switch.</p>
<h2>Receive Side Scaling and ToE</h2>
<p>If your multi-processor Exchange server is slamming one CPU(or core) and the rest are sitting idle, it’s a good bet you don’t have RSS enabled. RSS lets your server balance NIC interrupts across all the CPUs, which leads to better overall performance. It’s on by default in 2008 and 2008R2, but might have been turned off by another admin. If you see high CPU on only one processor, check with this command.</p>
<p><strong>netsh interface tcp show global</strong></p>
<p>If Receive-side Scalaing state shows as disabled, you’ve found the culprit.</p>
<p>That same command will also show you the status of TCP Chimney Offload, or ToE. With compatible NICs, ToE can provide much better throughput on large file transfers (like database replication for DAGs, mailbox moves, etc.) and reduced CPU utilization. With it off, those operations will take much longer, have lower throughput, and cause higher CPU utilization. 2008 disables ToE by default, while 2008 R2 uses an automatic setting. If your NICs support ToE, make sure you are using it by enabling it (if necessary) in the O/S, and then setting the advanced properties of the NIC to use it.</p>
<h2>Using Hardware Load Balancers</h2>
<p>The biggest challenge to troubleshooting load balanced servers is that the problem usually will manifest itself as intermittent, or isolated to a single client or subnet. If load balancers are in the mix, test from your machine, but test against the VIP and against each physical server one by one. If you cannot reproduce the problem, try the same process from the client. This may be one time where you have to use a HOSTS file to trick the client into connecting to each server one by one. If you don’t have admin access to the hardware load balancer, get on with that admin to do your tests so they can view realtime logs to see if anything stands out.</p>
<h2>The Microsoft Network Load Balancing Service</h2>
<p>If you are trying to load balance Exchange servers and are running into problems using software load balancing, my money is on the problem being in your switch configuration, and not with the MS NLB service. The easy test is to move the VIP to one of the servers, validate that everything works, and then move the VIP to the other and validate again. If it works without NLB in the mix, then it is not Exchange you should be looking at. MS NLB works great, though it is limited to IP based affinity and not port based, but there are so many ways the switch and/or router that your server connects to can screw up NLB, I’ll frequently recommend against using it unless I can directly manage the switches myself, or I know the person who does and that he or she understands their side of making NLB work.</p>
<p>See  <a target="_blank" href="http://technet.microsoft.com/en-us/library/ff625247.aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/ff625247.aspx?referer=');">http://technet.microsoft.com/en-us/library/ff625247.aspx</a> for some more tips on MS NBL, and if you are using VMware to virtualize your servers, see this article for specific settings in VMware. <a target="_blank" href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1007371" onclick="pageTracker._trackPageview('/outgoing/kb.vmware.com/selfservice/microsites/search.do?language=en_US_amp_cmd=displayKC_amp_externalId=1007371&amp;referer=');">http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1007371</a></p>
<h2>Coming up next</h2>
<p>In Part 5, we will look at the issues that can cause Exchange problems when making RPC calls, and how to troubleshoot those problems. Here’s a rundown of the six parts in this series. We’ll update with live links as each part is published over the next several weeks.</p>
<ol>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-dns-part-1/">Introduction and DNS</a></li>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/">Active Directory</a></li>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-firewalls-part-3/" target="_blank">Firewalls</a></li>
<li>NICs (this post)</li>
<li>RPCs</li>
<li>Client side issues</li>
</ol>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/02/troubleshooting-exchange-networking-nics-part-4/">Troubleshooting Exchange Networking: NICs (Part 4)</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/02/troubleshooting-exchange-networking-nics-part-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Addressing Three Major Email Threats</title>
		<link>http://www.theemailadmin.com/2012/02/addressing-three-major-email-threats/</link>
		<comments>http://www.theemailadmin.com/2012/02/addressing-three-major-email-threats/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 15:00:02 +0000</pubDate>
		<dc:creator>Jeff Orloff</dc:creator>
				<category><![CDATA[email security]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Advance-fee fraud]]></category>
		<category><![CDATA[Email address]]></category>
		<category><![CDATA[Email client]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[PayPal]]></category>
		<category><![CDATA[phishing]]></category>
		<category><![CDATA[Rustock botnet]]></category>
		<category><![CDATA[spam email]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5325</guid>
		<description><![CDATA[According to most reports, the amount of email spam is diminishing. Experts credit the takedown of massive botnets like Rustock, a more educated user base and advancements in spam fighting technologies for this trend. However, even though one of the most annoying, and troublesome, threats to email accounts is on a downswing it doesn’t mean [...]<p><a href="http://www.theemailadmin.com/2012/02/addressing-three-major-email-threats/">Addressing Three Major Email Threats</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F02%2Faddressing-three-major-email-threats%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F02_2Faddressing-three-major-email-threats_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F02%2Faddressing-three-major-email-threats%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/Email_Security_Image_XSmall_400x300.jpg"><img class="alignright size-full wp-image-5326" style="border-image: initial; border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/Email_Security_Image_XSmall_400x300.jpg" alt="" width="280" height="210" /></a>According to most reports, the amount of email spam is diminishing.</p>
<p>Experts credit the takedown of massive botnets like Rustock, a more educated user base and advancements in spam fighting technologies for this trend. However, even though one of the most annoying, and troublesome, threats to email accounts is on a downswing it doesn’t mean for one second that email is no longer a part of the IT infrastructure that is vulnerable to threats.</p>
<p>Understanding the different ways cyber criminals and script kiddies can use vulnerabilities in email clients and servers to attack a system will help any email administrator keep email services running smoothly, and the entire infrastructure safe from a great number of exploits that can do some serious damage.<span id="more-5325"></span></p>
<p>Listed below are three of the most serious problems that, if ignored, can cause some serious security problems with your email systems.</p>
<p><strong>1. Malware being spread via email</strong></p>
<p>To say that spam levels are dropping dramatically is almost a half truth. While users are seeing less spam advertising pharmaceuticals, financial services, pornography and work at home schemes it doesn’t necessarily mean that spam itself is being beat back.</p>
<p>Actually, while the use of spam for advertising and marketing may be down the numbers are increasing for spam messages that carry something far worse than the Nigerian prince scam. These messages actually contain malware or links to malicious sites.</p>
<p>Knowing full well that many users have been taught not to download attachments they don’t trust, cyber criminals have turned to simply inserting a link to a web site in their emails. When the victim clicks the link, they are taken to a site that runs scripts to infect their computers with Trojan horses, keystroke loggers and other types of malicious software.</p>
<p><strong>2. Information leaks</strong></p>
<p>Not all threats come from outside. Anyone who has worked to secure confidential data knows all too well that one of the biggest areas of concern is information being leaked from an inside threat.</p>
<p>Inside threats happen through a variety of means. You could have a disgruntled employee who is looking to hurt the company or you could have an employee who is looking to make a little extra money moonlighting as a corporate spy. There have even been instances where someone lands a job with a company for the sole reason of stealing confidential or proprietary information.</p>
<p>While these scenarios seem like they came from a Hollywood studio, they do happen &#8211; just not that often.</p>
<p>Most likely, you will find that information is leaked by accident. An employee includes something in an email message that is considered sensitive. That email, once it leaves the protection of your company, can now be forwarded on or even intercepted in transit. The contents can then be easily exposed revealing trade secrets, private information or even embarrassing content.</p>
<p><strong>3. Go phish</strong></p>
<p>Phishing is a threat that has been on the radar of most IT administrators for some time. And with recent data breaches, like the recent attack against Epsilon, millions of corporate email addresses have been compromised and are ready to be used in phishing attacks.</p>
<p>The scary part of phishing attacks nowadays is that it is becoming harder to tell them apart from legitimate emails. Take a look at recent PayPal and banking emails that have been sent out requesting people to reset their account passwords or log in to address some issues with their account.</p>
<p>It is becoming tough for people to tell the difference between a real request from their financial institution and one aimed at compromising their login details.</p>
<p>Of course, financial data isn’t the only thing that phishers chum the waters for. They know full well that a majority of people use the same user name and passwords for a majority of web sites. If they can capture a password, they can usually recreate the username for your businesses network resources to allow them free reign over anything the victim has access to.<br />
Safeguarding against email based attacks is something that every IT admin needs to take seriously if they want to protect their network. Employing a solution that addresses the mail servers, mail client, users and other network resources is one of the key steps to protect against as many points of attack as possible.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/02/addressing-three-major-email-threats/">Addressing Three Major Email Threats</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/02/addressing-three-major-email-threats/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Rejoice, for the PST Capture Tool Has Been Launched!</title>
		<link>http://www.theemailadmin.com/2012/02/rejoice-for-the-pst-capture-tool-has-been-published/</link>
		<comments>http://www.theemailadmin.com/2012/02/rejoice-for-the-pst-capture-tool-has-been-published/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 14:00:37 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[PST files]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5341</guid>
		<description><![CDATA[&#160; The Exchange Team first indicated it was coming back in July 2011. We’ve been anxiously awaiting it ever since, and it has finally arrived. Microsoft’s free PST Capture Tool is available for download now. This tool is designed to hunt down PSTs on your network and provide administrators with a management console which will [...]<p><a href="http://www.theemailadmin.com/2012/02/rejoice-for-the-pst-capture-tool-has-been-published/">Rejoice, for the PST Capture Tool Has Been Launched!</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F02%2Frejoice-for-the-pst-capture-tool-has-been-published%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F02_2Frejoice-for-the-pst-capture-tool-has-been-published_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F02%2Frejoice-for-the-pst-capture-tool-has-been-published%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>&nbsp;</p>
<p><a target="_blank" href="http://www.theemailadmin.com/wp-content/uploads/2012/01/party1.jpg"><img class="alignright size-full wp-image-5346" style="border-image: initial; border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/party1.jpg" alt="" width="204" height="204" /></a>The Exchange Team first indicated it was coming back in July 2011. We’ve been anxiously awaiting it ever since, and it has finally arrived. Microsoft’s free PST Capture Tool is available for <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=f6006c4b-a6a9-4e83-81b3-e770d37f63ff" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/downloads/details.aspx?FamilyID=f6006c4b-a6a9-4e83-81b3-e770d37f63ff&amp;referer=');">download now</a>.</p>
<p>This tool is designed to hunt down PSTs on your network and provide administrators with a management console which will enable them to either migrate the content to Exchange 2010 on premise, or to Office 365. It uses a client-server approach, requiring a management console to be installed on a server, and agents to be deployed to all systems which you want to scan for PSTs.<span id="more-5341"></span></p>
<p>To use the tool you must first install the PST Capture Console onto a workstation or server with Outlook 2010 (64 bit) installed. During the install you specify the service account to use, and the port the service will bind to if you don’t want to use the default 6674. Then you install the PST Capture Agent on each computer that you want to search for PSTs. During the install of the agent you specify the FQDN of the Capture Console, and the port if you changed it from the default.</p>
<p>You’ll also need a service account that has been assigned  permissions based on the import scenario you want to implement.</p>
<table width="486" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="bottom" width="130"><strong>Scenario</strong></td>
<td valign="bottom" width="356"><strong>Permissions required</strong></td>
</tr>
<tr>
<td valign="top" width="130">Installing PST Capture</td>
<td valign="top" width="356">
<ul>
<li>Local administrator privileges on the computer where you want to install the PST Capture Console or PST Capture agent.</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="130">Searching for PSTs</td>
<td valign="top" width="356">
<ul>
<li>You must be logged on with local administrator privileges on the computer where you run the PST Capture Console.</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="130">Importing PSTs to mailboxes in your Exchange Online (Office 365) organization</td>
<td valign="top" width="356">
<ul>
<li>You must be logged on with local administrator privileges on the computer where you run the PST Capture Console.</li>
<li>The user account you specify on the <strong>Online Connection Settings</strong> tab of the PST Capture settings must be assigned the Organization Management role.</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="130">Importing PSTs to mailboxes in your Exchange Online (BPOS) organization</td>
<td valign="top" width="356">
<ul>
<li>You must be logged on with local administrator privileges on the computer where you run the PST Capture Console.</li>
<li>The user account you specify on the <strong>Online Connection Settings</strong> tab of the PST Capture settings must be an Exchange Online administrator account.</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="130">Importing PSTs to mailboxes in your on-premises organization</td>
<td valign="top" width="356">
<ul>
<li>You must be logged on with local administrator privileges on the computer where you run the PST Capture Console.</li>
<li>The user account that the PST Capture Central Service uses must be mailbox-enabled.</li>
<li>The user account that the PST Capture Central Service uses must be assigned the Public Folder Management role in your Exchange organization.</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="130">Importing PSTs to archive mailboxes in your on-premises organization</td>
<td valign="top" width="356">
<ul>
<li>You must be logged on with local administrator privileges on the computer where you run the PST Capture Console.</li>
<li>The user account that the PST Capture Central Service uses must be mailbox-enabled.</li>
<li>The user account that the PST Capture Central Service uses must be assigned the Organization Management role in your Exchange organization.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>Running import operations can be bandwidth intensive. The agent will copy the PST files to the server running the management console. Then the management console server will either copy the data to a CAS server which will then copy it to a mailbox server, or if the destination is in Office 365, the management console will copy the data directly to Office 365. If you were keeping count, that means a PST might transit the network anywhere from two to four times, depending upon the source of the PST (local hard drive or network share) and the destination. It’s recommended that the management console server be local to the CAS server as well, and in the case of Office 365 customers, close to the Internet egress point.</p>
<p>With the release of the PST Capture Tool, admins now have a free tool to help finally eradicate PST files. Good hunting!</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/02/rejoice-for-the-pst-capture-tool-has-been-published/">Rejoice, for the PST Capture Tool Has Been Launched!</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/02/rejoice-for-the-pst-capture-tool-has-been-published/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Government Can Force You to Decrypt Your Data</title>
		<link>http://www.theemailadmin.com/2012/01/government-can-force-you-to-decrypt-your-data/</link>
		<comments>http://www.theemailadmin.com/2012/01/government-can-force-you-to-decrypt-your-data/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 14:00:15 +0000</pubDate>
		<dc:creator>John P Mello Jr</dc:creator>
				<category><![CDATA[Email archiving & storage]]></category>
		<category><![CDATA[email security]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[intrusion]]></category>
		<category><![CDATA[passwords]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5322</guid>
		<description><![CDATA[Administrators confident about the safety of their data encrypted on company laptops should start squirming if a recent court decision passes muster in the United States. The case involves a Colorado woman who has been ordered to open the encrypted drives on her laptop for federal investigators. Unlike the cops on television shows and movies, [...]<p><a href="http://www.theemailadmin.com/2012/01/government-can-force-you-to-decrypt-your-data/">Government Can Force You to Decrypt Your Data</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fgovernment-can-force-you-to-decrypt-your-data%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Fgovernment-can-force-you-to-decrypt-your-data_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fgovernment-can-force-you-to-decrypt-your-data%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/GFI-165-key.jpg"><img class="size-medium wp-image-5337 alignright" style="border-image: initial; border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/GFI-165-key-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p>Administrators confident about the safety of their data encrypted on company laptops should start squirming if a recent court decision passes muster in the United States.</p>
<p>The case involves a Colorado woman who has been ordered to open the encrypted drives on her laptop for federal investigators.</p>
<p>Unlike the cops on television shows and movies, who always seem to have a computer wizard on hand to decrypt a hard drive or crack a password, law enforcement authorities in Colorado, stymied by the encryption on a notebook in the possession of Romona Fricosu, simply went to a judge and asked him to order her to type in her password so they could see what was in the encrypted files.</p>
<p>In arguing against opening the files, Fricosu claimed doing so would violate her civil rights, in particular her Fifth Amendment rights against self-incrimination. Her reasoning was that the government, by forcing her to give up her password for decrypting the drive, were forcing her to incriminate herself if there were anything on the drive tying her to their criminal investigation of a mortgage scam. They believe Friscou is involved the scam that defrauded banks in the Colorado Springs area of some $900,000.<span id="more-5322"></span></p>
<p>Federal District Court Judge Robert Blackburn didn&#8217;t buy that argument. Fricosu might be self-incriminating  herself if she were being asked to utter the password to the files or to give it to the investigators in some other way. However, she was only being asked to type in the password.</p>
<p>The government said it wasn&#8217;t interested in knowing what the password was. In fact, it said Fricosu could type the password into the laptop without any government operatives hovering over her. For that reason, the password could be treated like a key is treated in the physical world. Since the courts have ruled that the government can compel someone to give it the key to a safe or other repository of potential evidence in a case, Judge Robinson reasoned, it can compel Fricosu to type in her password.</p>
<p>Although the Fricosu case will be appealed and isn&#8217;t settled in law yet, it should give administrators some food for thought. It&#8217;s not that far of a stretch, for instance, from treating a password for decrypting files  as a key to treating passwords to anything that way.</p>
<p>That can have broad implications for your data&#8217;s security should you ever have to lock horn with any government for any reason. While Fricosu was involved in a criminal matter, the logic underlying the case could be extended to non-criminal government activity such as tax audits or compliance reviews.</p>
<p>With that in mind, should alternatives to passwords be considered? For example, if voice recognition were used to replace passwords, then the &#8220;utterance&#8221; test might be met and your data might be better protected against intrusive legal searches. Then there&#8217;s the question of whether other biometric solutions used for authentication are as legally vulnerable as simple passwords. If a retina has to be supplied to open a laptop, is that a potential act of incrimination?</p>
<p>One thing administrators should take away from the Fricosu decision, should it be upheld by the appellate courts, is that their passwords and the passwords of their organization&#8217;s users aren&#8217;t as safe as they as they used to be—and neither is anything that can be decrypted with a password.</p>
<p>&nbsp;</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/government-can-force-you-to-decrypt-your-data/">Government Can Force You to Decrypt Your Data</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/government-can-force-you-to-decrypt-your-data/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>30 New Custom Attributes? Not So Fast</title>
		<link>http://www.theemailadmin.com/2012/01/30-new-custom-attributes-not-so-fast/</link>
		<comments>http://www.theemailadmin.com/2012/01/30-new-custom-attributes-not-so-fast/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 14:00:39 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5329</guid>
		<description><![CDATA[Back in early December, I wrote an article called A Deeper Look into Exchange 2010 SP2 where I discussed some of the new changes being added to Exchange and to the Active Directory schema. If you didn’t read that article, click the link above, and then come back here. It’s okay, I’ll wait. Back and [...]<p><a href="http://www.theemailadmin.com/2012/01/30-new-custom-attributes-not-so-fast/">30 New Custom Attributes? Not So Fast</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2F30-new-custom-attributes-not-so-fast%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2F30-new-custom-attributes-not-so-fast_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2F30-new-custom-attributes-not-so-fast%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/caution.jpg"><img class="alignright size-full wp-image-5330" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/caution.jpg" alt="" width="300" height="168" /></a>Back in early December, I wrote an article called <strong><a title="Permanent Link to A Deeper Look into Exchange 2010 SP2" href="http://www.theemailadmin.com/2011/12/a-deeper-look-into-exchange-2010-sp2/">A Deeper Look into Exchange 2010 SP2</a></strong> where I discussed some of the new changes being added to Exchange and to the Active Directory schema. If you didn’t read that article, click the link above, and then come back here. It’s okay, I’ll wait. Back and ready to go? Good. In that article I indicated that the new extension attributes could be available for customers who want to store additional information in Active Directory but don’t have suitable attributes already in place, and don’t want to roll their own schema extensions.</p>
<p>In a new post over at the Exchange Team Blog, <a target="_blank" href="http://blogs.technet.com/b/exchange/" onclick="pageTracker._trackPageview('/outgoing/blogs.technet.com/b/exchange/?referer=');">You Had Me at EHLO</a>, Nino Bilic wrote an article a couple of weeks ago that has prompted me to update you about this, and to revise what I said, in his post on <a target="_blank" href="http://blogs.technet.com/b/exchange/archive/2012/01/17/custom-aka-extension-attributes-in-exchange-2010-sp2-and-their-use.aspx" onclick="pageTracker._trackPageview('/outgoing/blogs.technet.com/b/exchange/archive/2012/01/17/custom-aka-extension-attributes-in-exchange-2010-sp2-and-their-use.aspx?referer=');">Custom (aka. Extension) attributes in Exchange 2010 SP2 and their use</a>, Bilic talks in detail on the two additions to the object class ms-Exch-Custom-Attributes.<span id="more-5329"></span></p>
<p>Here’s where clarifications are necessary, and where I had the wrong idea about all those new extension attributes. Microsoft considers ms-Exch-Extension-Attribute1 through 15 to be “all yours”. As Bilic stated it, “you are free to use them as you used them before”. If you ever read the TechNet article <a target="_blank" href="http://technet.microsoft.com/en-us/library/ee423541.aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/ee423541.aspx?referer=');">Understanding Custom Attributes</a>, then you probably are already using those first 15 attributes for anything and everything you might want to store in Active Directory. The Exchange Management Shell even makes it trivially easy to set/edit/remove values from those attributes, shorthanding them to “CustomAttribute#” and allowing you to write to them using the <strong>Set-Mailbox</strong> command. Logic suggests that by creating CustomAttribute16 through 45, Microsoft was just being generous and giving you more fields to play with. Not so much.</p>
<p>According to Bilic, CustomAttribute16 through 45 are for “future use” and should be considered reserved. What they are being used for remains to be seen, and there are no hints in the article or elsewhere, but CustomAttribute16 through 45 cannot be modified using the <strong>Set-Mailbox –CustomAttributeX</strong> command the way 1 through 15 can be, nor are they exposed in the UI, and Bilic went on to say “we cannot recommend that you use non-Exchange tools to edit their values because we might use those attributes in the future for various Exchange features.” Can you update those values with ADSI Edit or some third party tool? Probably. Should you? Not a chance.</p>
<p>The bottom line is to keep your hands off of CustomAttributes 15 through 45, but to also keep your fingers crossed that some new functionality will be forthcoming. If the 15 attributes we’ve had all this time are not enough, keep in mind that SP2 did add ms-exch-extension-custom-attribute1 to 5, which are multi-value attributes that can store tons more information about an object. They have been shorthanded to ExtensionCustomAttribute1 to 5, and can be accessed using the <strong>Set-Mailbox</strong> command. Hopefully that will be enough to fit any needs you have in the foreseeable future.</p>
<p>&nbsp;</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/30-new-custom-attributes-not-so-fast/">30 New Custom Attributes? Not So Fast</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/30-new-custom-attributes-not-so-fast/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>5 Common Outlook Errors and How to Fix Them</title>
		<link>http://www.theemailadmin.com/2012/01/5-common-outlook-errors-and-how-to-fix-them/</link>
		<comments>http://www.theemailadmin.com/2012/01/5-common-outlook-errors-and-how-to-fix-them/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 14:00:35 +0000</pubDate>
		<dc:creator>Jeff Orloff</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[AppData]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email archiving]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Exchange Server]]></category>
		<category><![CDATA[Microsoft Outlook]]></category>
		<category><![CDATA[Microsoft TechNet]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[Program Files]]></category>
		<category><![CDATA[Simple Mail Transfer Protocol]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5294</guid>
		<description><![CDATA[Email is one of the most important communications tools for businesses. When it stops working, people start to get nervous. While there are many things that a user can do to mess up their email, many of these problems can be resolved with a restart of the software or the computer. However when the old [...]<p><a href="http://www.theemailadmin.com/2012/01/5-common-outlook-errors-and-how-to-fix-them/">5 Common Outlook Errors and How to Fix Them</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2F5-common-outlook-errors-and-how-to-fix-them%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2F5-common-outlook-errors-and-how-to-fix-them_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2F5-common-outlook-errors-and-how-to-fix-them%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/error_button.png"><img class="alignright size-full wp-image-5295" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/error_button.png" alt="" width="209" height="209" /></a>Email is one of the most important communications tools for businesses. When it stops working, people start to get nervous.</p>
<p>While there are many things that a user can do to mess up their email, many of these problems can be resolved with a restart of the software or the computer.</p>
<p>However when the old standby of restarting doesn’t work, it is time for the email administrator to start looking into the issue a bit more deeply.</p>
<p>Here are some of the more common errors found in Outlook 2007 along with some of the ways you can make things right again:<span id="more-5294"></span></p>
<h2>1. Error message that reads: “Cannot open your default e-mail folders. The information store could not be opened.”</h2>
<p>This issue can be fixed by first locating Outlook.exe that can be found here: C:\Program Files\Microsoft Office\Office12.</p>
<p>Next, right click Outlook.exe and then click on Properties.</p>
<p>On the Compatibility tab, clear the check box that reads &#8216;Run this program in compatibility mode&#8217;. Then click Ok and restart Outlook.</p>
<h2>2. Error message that reads: “Your Microsoft Exchange Server is unavailable.”</h2>
<p>This error is a bit trickier to resolve only because there can be many different causes.</p>
<p><em>No data connection</em> – test your SMTP connection using telnet. If you are unsure how to do this, Microsoft has provided a guide on their TechNet site that walks you through this process: <a target="_blank" href="http://technet.microsoft.com/en-us/library/bb123686.aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/bb123686.aspx?referer=');">http://technet.microsoft.com/en-us/library/bb123686.aspx</a>.</p>
<p><em>Office Outlook files are locked</em> – there are times when .ost and .pst files are accidentally, or purposefully, set to read only. Check the permissions of these two files by navigating to:</p>
<p>C:\Users\&lt;username&gt;\AppData\Local\Microsoft\Outlook\ for .pst files and C:\Program Files\Microsoft Office\Office12\ for .ost files. Make sure that neither is set to read only.</p>
<p><em>Third party applications are interfering with Outlook</em> – many programs, including anti-malware solutions, can interfere with Outlook connecting to the Exchange Server. To check to see if this is the cause, start Outlook in safe mode.</p>
<p>Outlook files are corrupted – this can happen after an upgrade is applied to Outlook. If any of the .dat files listed below are present they should be deleted or renamed.</p>
<ul>
<li>Extend.dat – Located in C:\Documents and Settings\<em>&lt;username&gt;</em>\Local Settings\Application Data\Microsoft\Outlook\</li>
<li>Frmcache.dat – Located in C:\Documents and Settings\<em>&lt;username&gt;</em>\Application Data\Microsoft\Forms\</li>
<li>Views.dat – Located in C:\Documents and Settings\<em>&lt;username&gt;</em>\Application Data\Microsoft\Outlook\</li>
<li>Outcmd.dat – Located in C:\Documents and Settings\<em>&lt;username&gt;</em>\Application Data\Microsoft\Outlook\</li>
</ul>
<p>All the files, with the exception of Outcmd.dat will be re-created. The Outcmd.dat file saves customized toolbar settings so if it is removed these settings will have to be re-applied.</p>
<h2>3. Office Outlook will not open personal folders or personal folders do not show up in Outlook.</h2>
<p>Personal folders are often the root of many problems related to Outlook. Microsoft has published the Inbox Repair tool, Scanpst.exe, that can be used to scan .pst and .ost files for errors in the file structure. If this is not intact, it will reset the file structure and rebuild the headers.</p>
<p>This tool will only work on the files that reside on your computer’s hard drive, not the files on the Microsoft Exchange Server.</p>
<p>This will also help to resolve the error message: &#8220;Cannot open your default e-mail folder. The file c:\users\owner\documents\software info\outlook.pst is not a personal folders file&#8221;.</p>
<h2>4. Error messages that read either: “The action cannot be completed. The connection to the Microsoft Exchange Server is unavailable. Your network adapter does not have a default gateway” or “Your Microsoft Exchange Server is unavailable”.</h2>
<p>This error occurs when Outlook is unsure of the default gateway address. The former is the error message that shows when the Outlook profile is configured automatically and the latter appears when the profile is manually configured. Both have the same fix.</p>
<p>To repair this you will need to edit the registry so clicking on Start and then Run is necessary. Then, enter regedit in the Open box and click OK.</p>
<p>Next, navigate to the registry key: HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\RPC. On the Edit menu, point to New, and then click DWORD Value.  Type DefConnectOpts, and then press ENTER. Now, right-click DefConnectOpts, and then click Modify. In the Value data box, type 0, and then click OK.</p>
<h2>5. None of the authentication methods supported by this client are supported by your server.</h2>
<p>This happens to people when they use their computer in multiple locations. For example, a laptop is taken home and connected to the home network or perhaps a computer is taken on the road. Basically, it comes from authentication rules for the SMTP server.</p>
<p>When this error occurs go to the Account Settings tab and click on Change then More Settings. Now select the Outgoing Server tab.</p>
<p>The option that reads: “My outgoing server requires authentication” and the one that reads: “Log on to incoming mail server before sending mail” should both be looked at. If there is a check in the option box remove it.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/5-common-outlook-errors-and-how-to-fix-them/">5 Common Outlook Errors and How to Fix Them</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/5-common-outlook-errors-and-how-to-fix-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Troubleshooting Exchange Networking: Firewalls (Part 3)</title>
		<link>http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-firewalls-part-3/</link>
		<comments>http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-firewalls-part-3/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 15:19:31 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5297</guid>
		<description><![CDATA[Often, Exchange administrators will receive escalated help desk tickets from users complaining that Exchange is “slow” and demanding resolution. These sorts of tickets (slow being at best a relative term and never specific enough about what precisely is considered to be slow) can be extremely challenging to work, since the subjective nature of slowness is [...]<p><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-firewalls-part-3/">Troubleshooting Exchange Networking: Firewalls (Part 3)</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Ftroubleshooting-exchange-networking-firewalls-part-3%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Ftroubleshooting-exchange-networking-firewalls-part-3_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Ftroubleshooting-exchange-networking-firewalls-part-3%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/firewall.jpg"><img class="alignright size-medium wp-image-5298" style="margin: 10px; border: 0px solid black;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/firewall-300x167.jpg" alt="" width="300" height="167" /></a>Often, Exchange administrators will receive escalated help desk tickets from users complaining that Exchange is “slow” and demanding resolution. These sorts of tickets (slow being at best a relative term and never specific enough about what precisely is considered to be slow) can be extremely challenging to work, since the subjective nature of slowness is often combined with an inability to replicate the problem, or the problem is intermittent. The Exchange admin can take a look at the server(s) for high CPU utilization, low memory conditions, disk and network queue lengths exceeding the norm, and finding nothing, shrug it back off to the desktop support team as a client issue. While it is often a client issue, there are several places between Outlook and a user’s mailbox that can cause intermittent slowness, and are fair to call networking bottlenecks. In a six part series of articles, we’ll look at how Exchange interacts on the network with various other services to help you identify network issues, and troubleshoot them when they occur.</p>
<p>In many cases, troubleshooting Exchange network bottlenecks will require a network trace, and may also require performance monitor counters. This series of articles will talk about both of those in general terms; how to use NetMon or Wireshark, and PerfMon are out of scope. In Part 3 of this series, we’re going to discuss the connectivity you need to permit through firewalls for Exchange to function properly on the network.<span id="more-5297"></span></p>
<h2>Firewalls</h2>
<p>There are at least three places where a firewall can cause problems for Exchange. The most common is at your Internet border, when you are trying to support a protocol and the firewall is not permitting the necessary traffic. The second is between your DMZ and the internal network, which can cause issues for both Edge Transport servers and Client Access Servers, depending upon whether you pass traffic into them directly (which is not recommended) or you publish the CAS services using TMG or some other reverse web proxy. The third, which is both the least common and the most problematic, is when there are firewalls between different internal Exchange servers, or between Exchange servers and Active Directory.</p>
<p>Clients on the Internet must connect to the CAS servers for the various protocols they will use. Other Internet mail servers must connect to the Edge Transport server to exchange SMTP messages, and all Exchange server roles except the Edge Transport Server must query AD directly for configuration information, and to perform LDAP lookups for servers in different sites. They will also need to communicate with Active Directory to authenticate users. Edge Transport servers have to communicate with Hub Transport servers both to update their configuration, and to pass SMTP traffic in to the internal network. Any time a firewall is between two Exchange servers, or between an internal Exchange server and either Active Directory or any other part of the Exchange environment, you must ensure that all required traffic is permitted to pass through the firewall. Firewalls frequently translate IP addresses, called NAT. NAT is okay for some protocols; for others not so much. Windows 2008 and 2008 R2 servers will source all ephemeral connections from ports between 49152 and 65535. If you have any Exchange servers running 2003 or 2003 R2, you will need to expand that range to 1025-65535. The same can be said for clients. Windows Vista and 7 will source their connections from ports between 49152 and 65535. XP clients will source from 1025 to 65535.</p>
<p>Let’s look at each of the roles to see more about the required connectivity.</p>
<h2>Edge Transport Server Role</h2>
<p>Of course, your firewall needs to permit inbound TCP 25 from the Internet (ip any) to enable other Internet mail servers to send it email, and source ports can be anything from 1025 on up. You should also permit TCP port 587, which is commonly used by clients sending TCP over TLS connections. Older firewalls sometimes attempt to perform a rudimentary form of Intrusion Protection (fixup, inspect, etc.) which can often cause more problems than it solves, so consider carefully whether to enable that or not.</p>
<p>The Edge Transport server doesn&#8217;t access Active Directory directly, it stores it configuration in an instance of Active Directory Lightweight Directory Services. It uses an Edge Subscription to subscribe to a Hub Transport server in an Active Directory site, which will use the Microsoft Exchange EdgeSync service to synchronize Active Directory data to AD LDS. The Edge Transport server must be able to communicate to each and every Hub Transport server within the site it is subscribed to over TCP port 50636. That’s every Hub Transport server in the site, not just one or two, and it will source its queries from an ephemeral port between 49152 and 65535. If you add a Hub Transport server to the site, you must update your firewall rules to include the new server and update your Edge subscription.</p>
<p>&nbsp;</p>
<p>You can use NAT for both Internet traffic in to the Edge Transport server, and from the Edge Transport server into the Hub Transport servers in the subscribed site.</p>
<h2>Hub Transport Server Role</h2>
<p>The Hub Transport server must contact Active Directory to perform message categorization, necessary for recipient lookup and routing resolution. This will include the location of the recipient&#8217;s mailbox and any restrictions or permissions that may apply. It will also use LDAP queries to expand the membership of distribution lists to determine membership of a dynamic distribution list.</p>
<p>&nbsp;</p>
<p>It’s best if there is no firewall between a Hub Transport server and the Domain Controllers in the same site, but if you must place a firewall between them, ensure that the Exchange server can reach all Domain Controllers in the site over all the following ports and protocols.Collapse this tableExpand this table</p>
<table border="0" cellspacing="1" cellpadding="0">
<tbody>
<tr>
<td valign="top"><strong>Application protocol</strong></td>
<td valign="top"><strong>Protocol</strong></td>
<td valign="top"><strong>Ports</strong></td>
</tr>
<tr>
<td valign="top">Global Catalog Server</td>
<td valign="top">TCP</td>
<td valign="top">3269</td>
</tr>
<tr>
<td valign="top">Global Catalog Server</td>
<td valign="top">TCP</td>
<td valign="top">3268</td>
</tr>
<tr>
<td valign="top">LDAP Server</td>
<td valign="top">TCP</td>
<td valign="top">389</td>
</tr>
<tr>
<td valign="top">LDAP Server</td>
<td valign="top">UDP</td>
<td valign="top">389</td>
</tr>
<tr>
<td valign="top">LDAP SSL</td>
<td valign="top">TCP</td>
<td valign="top">636</td>
</tr>
<tr>
<td valign="top">LDAP SSL</td>
<td valign="top">UDP</td>
<td valign="top">636</td>
</tr>
<tr>
<td valign="top">RPC</td>
<td valign="top">TCP</td>
<td valign="top">135</td>
</tr>
<tr>
<td valign="top">RPC randomly allocated high TCP ports</td>
<td valign="top">TCP</td>
<td valign="top">49152 &#8211; 65535</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Collapse this tableExpand this table</p>
<table border="0" cellspacing="1" cellpadding="0">
<tbody>
<tr>
<td valign="top"><strong>Application protocol</strong></td>
<td valign="top"><strong>Protocol</strong></td>
<td valign="top"><strong>Ports</strong></td>
</tr>
<tr>
<td valign="top">DCOM¹</td>
<td valign="top">TCP + UDP</td>
<td valign="top"><em>random port number between 49152 &#8211; 65535</em></td>
</tr>
<tr>
<td valign="top">ICMP (ping)</td>
<td valign="top">ICMP</td>
<td></td>
</tr>
<tr>
<td valign="top">LDAP</td>
<td valign="top">TCP</td>
<td valign="top">389</td>
</tr>
<tr>
<td valign="top">SMB</td>
<td valign="top">TCP</td>
<td valign="top">445</td>
</tr>
<tr>
<td valign="top">RPC</td>
<td valign="top">TCP</td>
<td valign="top">135, <em>random port number between 49152 &#8211; 65535</em><strong></strong></td>
</tr>
<tr>
<td valign="top">SMTP</td>
<td valign="top">TCP</td>
<td valign="top">25</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>NAT is no good here; it can break RPC DCOM traffic which is used for some Active Directory functions.</p>
<h2>Client Access Server Role</h2>
<p>The Client Access server role services clients connecting from the Internet who want to use Outlook Web App, POP3, IMAP4, or ActiveSync. When a connection is received, the Client Access server authenticates the user against AD and then queries to determine the appropriate mailbox server. If the user&#8217;s mailbox is in the same site, the user is connected directly to their mailbox. If in a different site, the connection is redirected to a Client Access server in the remote site.</p>
<p>If you are going to provide client connections directly to the CAS server, you must permit the following for the relevant client protocols.Collapse this tableExpand this table</p>
<table border="0" cellspacing="1" cellpadding="0">
<tbody>
<tr>
<td valign="top"><strong>Application protocol</strong></td>
<td valign="top"><strong>Protocol</strong></td>
<td valign="top"><strong>Ports</strong></td>
</tr>
<tr>
<td valign="top">IMAP</td>
<td valign="top">TCP</td>
<td valign="top">143</td>
</tr>
<tr>
<td valign="top">IMAP over SSL</td>
<td valign="top">TCP</td>
<td valign="top">993</td>
</tr>
<tr>
<td valign="top">POP3</td>
<td valign="top">TCP</td>
<td valign="top">110</td>
</tr>
<tr>
<td valign="top">POP3 over SSL</td>
<td valign="top">TCP</td>
<td valign="top">995</td>
</tr>
<tr>
<td valign="top">Randomly allocated high TCP ports</td>
<td valign="top">TCP</td>
<td valign="top"><em>random port number between 49152 &#8211; 65535</em></td>
</tr>
<tr>
<td valign="top">RPC</td>
<td valign="top">TCP</td>
<td valign="top">135</td>
</tr>
<tr>
<td valign="top">RPC over HTTPS</td>
<td valign="top">TCP</td>
<td valign="top">443 or 80</td>
</tr>
<tr>
<td valign="top">SMTP</td>
<td valign="top">TCP</td>
<td valign="top">25</td>
</tr>
</tbody>
</table>
<h2>Unified Messaging Server Role</h2>
<p>The Unified Messaging server will need essentially the same connectivity as the Hub Transport server role, plus whatever required ports are necessary for your particular VoIP gateway. Consult your vendor’s documentation for those specifics.</p>
<p>&nbsp;</p>
<h2>Mailbox Server Role</h2>
<p>The Mailbox server will also need the same connectivity as detailed for the Hub Transport server role.</p>
<p>&nbsp;</p>
<h2>Limiting RPC ports</h2>
<p>Firewall admins don’t like to carve large holes in their walls, and will often request that you limit the port ranges used by RPC connections. This is supported, and well documented, but be warned. It is <em>very common</em> to limit RPC connections to too narrow a range of ports. This will manifest as random failures particularly at peak load times, with tons of 1722 errors. If you must restrict RPC ports, I suggest you start with a range of at least 1000 ports, and carefully monitor clients and servers to ensure that this is enough to support all connections during peak times.</p>
<h2>Troubleshooting Exchange firewall issues</h2>
<p>Knowing the ports Exchange uses will help you troubleshoot issues. If you suspect Exchange is having a problem caused by a firewall, it’s best if you can work directly with the firewall administrator, who can monitor the source and/or destination IP addresses to see if rules are blocking. If that is not possible, you can test connectivity between Exchange and Active Directory or other Exchange servers by using the <a target="_blank" href="http://www.microsoft.com/download/en/details.aspx?id=24009" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/download/en/details.aspx?id=24009&amp;referer=');">PortQueryUI</a> tool. You can also use PING, the TCPING tool, or even the Windows Telnet client to see whether you can connect to the port or not.</p>
<p>PortQueryUI can provide specific success or failures, but you can use PING to make sure you can reach the destination server, and then TCPING or Telnet to confirm whether or not you can make a connection on the specific ports required. If you get timeouts or refusals, and you have confirmed the destination server is up and running, then you are probably dealing with a firewall issue. There’s no real workaround here; the firewall admin must permit the required traffic for all services.</p>
<h2>Coming up next</h2>
<p>In Part 4, we will look at the issues that can cause Exchange problems when NICs are involved, and how to troubleshoot those problems. Here’s a rundown of the six parts in this series. We’ll update with live links as each part is published over the next several weeks:</p>
<ol>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-dns-part-1/">Introduction and DNS</a></li>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/">Active Directory</a></li>
<li>Firewalls (this post)</li>
<li>NICs</li>
<li>RPCs</li>
<li>Client side issues</li>
</ol>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-firewalls-part-3/">Troubleshooting Exchange Networking: Firewalls (Part 3)</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-firewalls-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Deserts Exchange Users by Killing Message Continuity</title>
		<link>http://www.theemailadmin.com/2012/01/google-deserts-exchange-users-by-killing-message-continuity/</link>
		<comments>http://www.theemailadmin.com/2012/01/google-deserts-exchange-users-by-killing-message-continuity/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 16:00:20 +0000</pubDate>
		<dc:creator>John P Mello Jr</dc:creator>
				<category><![CDATA[Email archiving & storage]]></category>
		<category><![CDATA[email management]]></category>
		<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[Disaster]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Recovery]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5291</guid>
		<description><![CDATA[Google recently hung a &#8216;going out of business&#8217; sign on its Message Continuity service for users of Microsoft Exchange. Google will continue to provide the service to its users until their contracts run out, but after that, they&#8217;re on their own. Since the service was launched a little over a year ago, &#8220;hundreds&#8221; of businesses [...]<p><a href="http://www.theemailadmin.com/2012/01/google-deserts-exchange-users-by-killing-message-continuity/">Google Deserts Exchange Users by Killing Message Continuity</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fgoogle-deserts-exchange-users-by-killing-message-continuity%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Fgoogle-deserts-exchange-users-by-killing-message-continuity_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fgoogle-deserts-exchange-users-by-killing-message-continuity%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/Google.png.jpg"><img class="size-medium wp-image-5317 alignright" style="border: 0px solid black; margin: 10px;" title="Google.png" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/Google.png-300x125.jpg" alt="" width="300" height="125" /></a>Google recently hung a &#8216;going out of business&#8217; sign on its Message Continuity service for users of Microsoft Exchange. Google will continue to provide the service to its users until their contracts run out, but after that, they&#8217;re on their own.</p>
<p>Since the service was launched a little over a year ago, &#8220;hundreds&#8221; of businesses have subscribed to the offering, which uses Google&#8217;s cloud to provide email continuity when a Microsoft Exchange environment is interrupted for any reason.</p>
<p>Hundreds of users, though, can&#8217;t compete with the &#8220;millions&#8221; of businesses that have moved their entire email operation to Google Apps, so Searchzilla has decided to scrap its continuity product for Exchange  and concentrate all its resources on its application suite.<span id="more-5291"></span></p>
<p>Current users of the continuity product were &#8220;encouraged to consider using Google Apps as their primary messaging and collaboration platform&#8221; in a <a target="_blank" href="http://googleblog.blogspot.com/2012/01/renewing-old-resolutions-for-new-year.html" onclick="pageTracker._trackPageview('/outgoing/googleblog.blogspot.com/2012/01/renewing-old-resolutions-for-new-year.html?referer=');">company blog</a> written by Vice President of Product Management Dave Girouard.</p>
<p>The brusque departure by Google from the Exchange disaster recovery scene contrasts sharply with how it entered it:</p>
<blockquote><p>&#8220;Google Message Continuity advances our commitment to providing rapidly deployed, cost-effective email management solutions for organizations of all sizes,&#8221; Enterprise Product Manager Matthew O’Connor <a target="_blank" href="http://googleenterprise.blogspot.com/2010/12/bringing-gmails-reliability-to.html#utm_campaign=en&amp;utm_source=en-na-us-ogbblog-gmclaunch_12092010&amp;utm_medium=blog" onclick="pageTracker._trackPageview('/outgoing/googleenterprise.blogspot.com/2010/12/bringing-gmails-reliability-to.html_utm_campaign=en_amp_utm_source=en-na-us-ogbblog-gmclaunch_12092010_amp_utm_medium=blog?referer=');">wrote</a> when the continuity product was announced.</p></blockquote>
<p>Looking back on the announcement, it appears that Google&#8217;s &#8220;commitment&#8221; to the Exchange market was as solid as an adolescent&#8217;s commitment to the latest fad.</p>
<p>That&#8217;s not to say that Google&#8217;s intentions in offering an Exchange product weren&#8217;t clear from the start for careful readers of the company&#8217;s pronouncements. &#8220;Additionally, for organizations interested in eventually moving to Google Apps, Google Message Continuity can provide a smooth bridge to the cloud,&#8221; O&#8217;Connor slyly observed in his blog item.</p>
<p>O&#8217;Connor&#8217;s colleague, Rajen Sheth, the group product manager for Google Apps had a similar pitch at the time:</p>
<blockquote><p>&#8220;Google Message Continuity can also help organizations transition to Google Apps down the road,&#8221; he <a target="_blank" href="http://googleblog.blogspot.com/2010/12/introducing-google-message-continuity.html" onclick="pageTracker._trackPageview('/outgoing/googleblog.blogspot.com/2010/12/introducing-google-message-continuity.html?referer=');">wrote</a>. &#8220;Since Microsoft Exchange and Gmail are always in sync with one another, there’s no need to migrate email data when eventually deploying Google Apps.&#8221;</p></blockquote>
<p>Little did those who signed on for Google&#8217;s continuity solution realize when they did so that if they didn&#8217;t &#8220;transition&#8221; to Google Apps fast enough to suit the Ferret King, they&#8217;d be left looking for another business interruption solution within a year&#8217;s time.</p>
<p>Google has been criticized in the past for its flighty attitude toward product development. Some detractors maintain that Google often enters markets to be disruptive, not competitive. Like a <a target="_blank" href="http://www.onlineorganizing.com/NewslettersArticle.asp?newsletter=go&amp;article=79" onclick="pageTracker._trackPageview('/outgoing/www.onlineorganizing.com/NewslettersArticle.asp?newsletter=go_amp_article=79&amp;referer=');">sea gull boss</a>, it will undercut competitors in a market and when things don&#8217;t work, abandon that market, leaving customers who had faith in the Google brand to clean up the mess.</p>
<p>That kind of product management may work with consumers, but it leaves something to be desired in the business world. Google&#8217;s competitor in the enterprise market, Microsoft, knows that. While the Redmond crew have suffered a few slings and arrows for sticking with products too long, their commitment to legacy products has been an important, if sometimes overlooked, part of their success in the business market.</p>
<p>Google&#8217;s forsaking of Message Continuity brings to mind some remarks by Microsoft Senior Director of Online Services Tom Rizzo in his famous &#8220;Google Graveyard Spooks Customers&#8221; blog written on Halloween last year:</p>
<blockquote><p>&#8220;Google releases experimental products and tracks adoption to determine whether to continue providing them,&#8221; he <a target="_blank" href="http://blogs.technet.com/b/whymicrosoft/archive/2011/10/31/google-graveyard-spooks-customers.aspx" onclick="pageTracker._trackPageview('/outgoing/blogs.technet.com/b/whymicrosoft/archive/2011/10/31/google-graveyard-spooks-customers.aspx?referer=');">wrote</a>. &#8220;Its products are like spaghetti, Google throws them up against the wall to see if they stick.&#8221;</p>
<p>&#8220;The burials of de-supported products are more examples of what is convenient for Google and not good for business,&#8221; he added.</p></blockquote>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/google-deserts-exchange-users-by-killing-message-continuity/">Google Deserts Exchange Users by Killing Message Continuity</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/google-deserts-exchange-users-by-killing-message-continuity/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>7 Reasons Public Folders Need to Go Away</title>
		<link>http://www.theemailadmin.com/2012/01/7-reasons-public-folders-need-to-go-away/</link>
		<comments>http://www.theemailadmin.com/2012/01/7-reasons-public-folders-need-to-go-away/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 14:00:38 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5305</guid>
		<description><![CDATA[If you are still on an Exchange 2003 or 2007 platform and are starting to plan your upgrade to Exchange 2010 (or your to the cloud), you are probably looking at your public folders and thinking to yourself: “oh gods no please don’t make me go through them! I promise I will be good from [...]<p><a href="http://www.theemailadmin.com/2012/01/7-reasons-public-folders-need-to-go-away/">7 Reasons Public Folders Need to Go Away</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2F7-reasons-public-folders-need-to-go-away%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2F7-reasons-public-folders-need-to-go-away_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2F7-reasons-public-folders-need-to-go-away%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<div><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/folders.jpg"><img class="alignright size-full wp-image-5306" style="border: 0px solid black; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/folders.jpg" alt="" width="238" height="212" /></a>If you are still on an Exchange 2003 or 2007 platform and are starting to plan your upgrade to Exchange 2010 (or your to the cloud), you are probably looking at your public folders and thinking to yourself: “oh gods no please don’t make me go through them! I promise I will be good from now on and eat my vegetables and clean my room please oh please oh please don’t make me deal with the public folders and please don’t send me to the cornfield!”. Okay, you might not have quite that, emotional reaction, but if you aren’t dreading the task, you haven’t started to think about it yet.</div>
<div>Public folders were one of those good ideas that just didn’t really pan out the way folks expected, and their time has come and gone. Unfortunately, they were embraced without governance or guidance, and now companies are faced with hundreds if not thousands of folders in a structure that shows no consistency, with hundreds of thousands of messages scattered hither and yon. Ask your users about their public folders and most of them will respond like you’re talking about their children, but the time has come to start cleaning the house.<span id="more-5305"></span></div>
<div>Here are seven reasons public why folders need to go away. Maybe one of these reasons will be enough for you to start the process:</p>
</div>
<h2>1. Eventually, they won’t be supported anymore.</h2>
<div>While Microsoft has no plans to stop support for Public Folders in Exchange 2010 or the next version, they have stated that Public Folders are being unemphasized, and are encouraging customers to look at alternative ways to store data. The writing is on the wall for Public Folders. Office 365 does not support them at all, and while they are not the only hosted Exchange provider, they do set the bar. And while other hosted Exchange providers are offering Public Folders as an option, a quick perusal indicates they are limited in number and size. Your mileage may vary today, but I don’t expect that to be the case for much longer.</p>
</div>
<h2>2. Anybody remember where we stored that customer list?</h2>
<div>Indexing may be the only way to find anything in a Public Folder store, and that can be time consuming and resource intensive. Public Folder structures tend to resemble a free for all, with little organization to help users find data. Favourites can help, but only if a user can first find where the folder they want to favourite is.</p>
</div>
<h2>3. Collaboration? Not so much.</h2>
<div>Public Folders support permissions, and several users can have write perms to the same folder and its contents, but collaborative editing is not supported.</p>
</div>
<h2>4. Backups? We don’t need no stinking backups!</h2>
<div>Public Folder databases tend to grow out of control, and while you can back up and restore Public Folder databases, individual folders or items within them can be more of a challenge. They don’t get to use recovery storage groups like mailboxes do.</p>
</div>
<h2>5. Public Folder management tools, what Public Folder management tools?</h2>
<div>You can manage Public Folders using the Exchange Management Console and the Shell, but the management is pretty rudimentary. It gets the job done, but only just.</p>
</div>
<h2>6. Wow! I remember that. Gosh, I haven’t seen that in years!</h2>
<div>Public Folders are the garage, basement, attic, and self-storage facilities of corporate data. In an organisation with hundreds to thousands of Public Folders, it’s not at all uncommon to find that maybe a dozen are used by more than a single user, or with any frequency at all. Others are the catch-all bin for distribution list mailings that no one has read in years. Again, you may be the exception that proves the rule, so surprise me in the comments if you really have a dynamic Public Folder structure that users access regularly.</p>
</div>
<h2>7. When I grow up, I want to be SharePoint.</h2>
<div>The successor to Public Folders, both in terms of technology, functionality, and scalability, is SharePoint. Whether by plan or happenstance, SharePoint has all of the features, capabilities, and management tools you could want. Collaboration, search, granular backups, and so many ways to extend the product, make SharePoint the logical replacement for your Public Folders.</p>
</div>
<div>With the writing on the wall for Public Folders, take time now to start the process in your environment. Stop creating new ones, start encouraging data owners to perform their Spring Cleaning, and look to SharePoint or other portal technologies.</div>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/7-reasons-public-folders-need-to-go-away/">7 Reasons Public Folders Need to Go Away</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/7-reasons-public-folders-need-to-go-away/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Microsoft&#8217;s Trustworthy Computing  Program Turns 10</title>
		<link>http://www.theemailadmin.com/2012/01/microsofts-trustworthy-computing-program-turns-10/</link>
		<comments>http://www.theemailadmin.com/2012/01/microsofts-trustworthy-computing-program-turns-10/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 14:00:56 +0000</pubDate>
		<dc:creator>John P Mello Jr</dc:creator>
				<category><![CDATA[email security]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[trustworthy computing]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5258</guid>
		<description><![CDATA[For computer security experts, January 15 marked the anniversary of a red letter day. It was the 10th anniversary of the day that Microsoft decided to get serious about security. On that day in 2002, a memo from Bill Gates to Microsoft employees declared the company would be entering a new era, an era of [...]<p><a href="http://www.theemailadmin.com/2012/01/microsofts-trustworthy-computing-program-turns-10/">Microsoft&#8217;s Trustworthy Computing  Program Turns 10</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fmicrosofts-trustworthy-computing-program-turns-10%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Fmicrosofts-trustworthy-computing-program-turns-10_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fmicrosofts-trustworthy-computing-program-turns-10%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_5271" class="wp-caption alignright" style="width: 310px"><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/GFI164-bill_gates.jpeg"><img class="size-medium wp-image-5271" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/GFI164-bill_gates-300x300.jpg" alt="" width="300" height="300" /></a><p class="wp-caption-text">Gates: Momentous security memo</p></div>
<p>For computer security experts, January 15 marked the anniversary of a red letter day. It was the 10th anniversary of the day that Microsoft decided to get serious about security.</p>
<p>On that day in 2002, a memo from Bill Gates to Microsoft employees declared the company would be entering a new era, an era of &#8220;Trustworthy Computing.&#8221;</p>
<blockquote><p>&#8220;In the past,&#8221; <a target="_blank" href="http://www.microsoft.com/Presspass/Features/2012/jan12/GatesMemo.mspx" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/Presspass/Features/2012/jan12/GatesMemo.mspx?referer=');">Gates wrote</a>, &#8220;we’ve made our software and services more compelling for users by adding new features and functionality, and by making our platform richly extensible. We’ve done a terrific job at that, but all those great features won’t matter unless customers trust our software.&#8221;</p>
<p>&#8220;So now,&#8221; he continued, &#8220;when we face a choice between adding features and resolving security issues, we need to choose security.&#8221;<span id="more-5258"></span></p></blockquote>
<p>Gates&#8217; commitment to security came when the Windows world was reeling from two monster malware attacks from the previous year Code Red and Nimda. Code Red exploited buffer overflows to attack Internet Information Services (ISS) running under Windows Server. It infected an estimated 300,000 PCs.</p>
<p>Unlike Code Red, Nimda was a worm that used multiple attack vectors to rapidly infect computers connected to the Internet. The technique was extremely effective and within 22 minutes of its release on September 18, 2012, it became the most widespread malware in the world.</p>
<p>It&#8217;s with that backdrop that Gates emailed his memo to his employees. One group of workers was particularly glad to see their boss&#8217;s missive: the company&#8217;s malware fighters.</p>
<blockquote><p>&#8220;It’s not an understatement that the memo felt, to me, like the arrival of Gandalf and Eomer at Helm’s Deep in the film <em>The Lord of the Rings: The Two Towers</em> at a moment of great despair; at last we were getting some relief and might survive&#8221; Christopher Budd, who worked on security issues for 10 years at Microsoft, <a target="_blank" href="http://betanews.com/2012/01/16/10-years-after-bill-gates-trustworthy-computing-memo-what-it-meant-for-microsoft-and-why-every-tech-company-needs-one/" onclick="pageTracker._trackPageview('/outgoing/betanews.com/2012/01/16/10-years-after-bill-gates-trustworthy-computing-memo-what-it-meant-for-microsoft-and-why-every-tech-company-needs-one/?referer=');">wrote in Betanews</a>.</p></blockquote>
<blockquote><p>&#8220;In a single movement, Gates enshrined security, privacy and reliability as central, aspirational ideals,&#8221; Budd observed. &#8220;Like all ideals, there have been better and worse times in realizing them, but their central importance was never open to question. That memo eliminated the resistance that made our work so hard and gave us the power to do the right thing for customers.&#8221;</p></blockquote>
<p>Budd asserted that the memo gave the security and privacy factions in the company the power to stand toe-to-toe with those primarily concerned with revenue and growth. He wrote:</p>
<blockquote><p>&#8220;In a way, it represents a statement of conscience for the company and we used it as such, with success.&#8221;</p></blockquote>
<p>Since the memo was issued, Microsoft has made security an important part of its product development cycle. That&#8217;s led to security features like library randomization and BitLocker drive encryption in Windows 7 and Secure Boot, a way in Windows 8 to foil BIOS attacks. It has made Windows Server IIS as secure as its open source competitor, Apache, too.</p>
<p>It has also lifted Microsoft&#8217;s browser, Internet Explorer, from a security nightmare to one of the most secure ways to surf the Web today. A 2010 report from independent software tester NSS Labs found:</p>
<blockquote><p>&#8220;Internet Explorer 9 was by far the best at protecting users against socially-engineered malware.&#8221;</p></blockquote>
<p>Unfortunately, it&#8217;s hard to change a bad security reputation forged over many years and IE&#8217;s user share has fallen from its once dominant position of more than 90 percent to under 50 percent of all users.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/microsofts-trustworthy-computing-program-turns-10/">Microsoft&#8217;s Trustworthy Computing  Program Turns 10</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/microsofts-trustworthy-computing-program-turns-10/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Customize the Exchange Management Shell</title>
		<link>http://www.theemailadmin.com/2012/01/customize-the-exchange-management-shell/</link>
		<comments>http://www.theemailadmin.com/2012/01/customize-the-exchange-management-shell/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 14:00:04 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[ems]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5274</guid>
		<description><![CDATA[Customize the Exchange Management Shell as an Exchange administrator, it’s only a matter of time before you embrace the dark side and come to know the true power of shell. The Exchange Management Shell is the direct interface between you and the underlying PowerShell cmdlets that are used to query, configure, and manage Exchange. Getting [...]<p><a href="http://www.theemailadmin.com/2012/01/customize-the-exchange-management-shell/">Customize the Exchange Management Shell</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fcustomize-the-exchange-management-shell%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Fcustomize-the-exchange-management-shell_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fcustomize-the-exchange-management-shell%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/ems.jpg"><img class="alignright size-full wp-image-5279" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/ems.jpg" alt="" width="136" height="122" /></a>Customize the Exchange Management Shell as an Exchange administrator, it’s only a matter of time before you embrace the dark side and come to know the true power of shell. The Exchange Management Shell is the direct interface between you and the underlying PowerShell cmdlets that are used to query, configure, and manage Exchange. Getting comfortable with a command line interface after years of GUI work is a big shift for many admins, but if you start out slow, and work your way through things step by step, you’ll soon find that you are a PowerShell Jedi. Making something your own is the first step towards getting comfortable with it, so in this post, we’ll see how to customize the Exchange Management Shell to make it your own.<span id="more-5274"></span></p>
<p>Again, the Exchange Management Shell (EMS) is simply Exchange’s pathway into PowerShell. If you look at the properties of the EMS shortcut, you will see that it does three things:</p>
<p>C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -noexit -command &#8220;. &#8216;C:\Program Files\Microsoft\Exchange Server\V14\bin\RemoteExchange.ps1&#8242;; Connect-ExchangeServer -auto;&#8221;</p>
<ol>
<li>It launches PowerShell,</li>
<li>It runs a PowerShell script called RemoteExchange.ps1, and finally</li>
<li>Automatically connects to the localhost Exchange server.</li>
</ol>
<p>PowerShell uses profiles to control how it looks and feels. You can also use profiles to configure PowerShell with your own aliases, functions, etc. If you examine the RemoteExchange.ps1 script referenced in the path above, you will find that it configures the size of the EMS window, provides the tips you see at launch, and defines some functions specific to Exchange.</p>
<p>To tailor the appearance of your EMS, you can create/edit your PowerShell profile. You won’t always have a profile to start with. When you open the EMS, type this command:</p>
<pre>Test-Path $profile</pre>
<p>If you have a profile the result will show True. If you don’t, it will show… care to guess? That’s right, False. To start working with your profile, enter this command:</p>
<pre>notepad $profile</pre>
<p>If you didn’t have a profile, you will be prompted to create one. Now that you have a profile, what can you do? I like to have the EMS automatically open in the scratch directory I tend to save working scripts, output files, etc., in and change up the colors a little bit. Here’s an example profile file:</p>
<pre>$Shell = $Host.UI.RawUI
$Shell.WindowTitle="A little knowledge is a dangerous thing"
$Shell.BackgroundColor="Black"
$Shell.ForegroundColor="Green"
Set-Location C:\\scratch</pre>
<p>Let’s see what we’re doing here. First, we create a variable called $Shell, and populate it with the properties of the $Host.UI.RawUI, which stores all the attributes of the UI. Then, we set the value of the WindowTitle attribute (quote enclosed), set the foreground and background color, and then essentially we CD into our c:\scratch directory. Here’s a list of the colors you can use:</p>
<ul>
<li>Black</li>
<li>Blue</li>
<li>Cyan</li>
<li>DarkBlue</li>
<li>DarkCyan</li>
<li>DarkGray</li>
<li>DarkGreen</li>
<li>DarkMagenta</li>
<li>DarkRed</li>
<li>DarkYellow</li>
<li>Gray</li>
<li>Green</li>
<li>Magenta</li>
<li>Red</li>
<li>White</li>
<li>Yellow</li>
</ul>
<p>Save the file, and then launch the EMS. You should see your EMS with the foreground and background colors that you chose, and that your current directory is c:\scratch (or whatever you chose). Notice what you don’t see? Your Window title should display “Machine:FQDN” of your Exchange server. When you use the Connect-Exchange server command, it updates the window title to reflect the server. However, when you launch the regular PowerShell (instead of the EMS) you will see your catch window title at the top.</p>
<p>We’ll look more into PowerShell and the power of the EMS in upcoming posts. If you have a particular customization you like to use, please feel free to share it in a comment below.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/customize-the-exchange-management-shell/">Customize the Exchange Management Shell</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/customize-the-exchange-management-shell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Common Mistakes When Sending Emails</title>
		<link>http://www.theemailadmin.com/2012/01/common-mistakes-when-sending-emails/</link>
		<comments>http://www.theemailadmin.com/2012/01/common-mistakes-when-sending-emails/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 14:00:03 +0000</pubDate>
		<dc:creator>Jeff Orloff</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Email address]]></category>
		<category><![CDATA[message]]></category>
		<category><![CDATA[Microsoft Outlook]]></category>
		<category><![CDATA[New York Times]]></category>
		<category><![CDATA[Subscription business model]]></category>
		<category><![CDATA[Times]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5264</guid>
		<description><![CDATA[In an age where millions of emails are sent every day it is hard to find someone who hasn’t made a mistake when sending a message. If you are using Microsoft Outlook and Exchange, you can quickly recall a message and delete unread copies, if you are lucky that is and no one has opened [...]<p><a href="http://www.theemailadmin.com/2012/01/common-mistakes-when-sending-emails/">Common Mistakes When Sending Emails</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fcommon-mistakes-when-sending-emails%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Fcommon-mistakes-when-sending-emails_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fcommon-mistakes-when-sending-emails%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/business-man-mistake-whoops.jpg"><img class="alignright size-full wp-image-5265" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/business-man-mistake-whoops.jpg" alt="" width="240" height="180" /></a>In an age where millions of emails are sent every day it is hard to find someone who hasn’t made a mistake when sending a message.</p>
<p>If you are using Microsoft Outlook and Exchange, you can quickly recall a message and delete unread copies, if you are lucky that is and no one has opened the email. If someone has already opened your errant message, then it’s too late.</p>
<p>Companies have become a bit more cognizant that some employees are just a bit too quick to pull the Send trigger on their mail. To compensate, many have put into place a time delay that gives someone the opportunity to think twice about a message that was sent out and stop it before it is delivered.<span id="more-5264"></span></p>
<p>Just recently, the <a target="_blank" href="http://www.allspammedup.com/2012/01/coffee-the-new-york-times-and-spam/" onclick="pageTracker._trackPageview('/outgoing/www.allspammedup.com/2012/01/coffee-the-new-york-times-and-spam/?referer=');">New York Times suffered a rather embarrassing incident</a> where they had planned to send a few hundred emails out to some of their subscribers offering them a discounted rate if they did not cancel their subscription. Instead the message went out to over 8 million people.</p>
<p>That was mistake number one.</p>
<p>This was then followed up by a message that read:</p>
<blockquote><p>&#8220;If you received an email today about canceling your NYT subscription, ignore it. It&#8217;s not from us&#8221;</p></blockquote>
<p>sent out via Twitter. So they were blaming the mistake on someone else, a spammer perhaps.</p>
<p>But, as it was later discovered, the Times was the guilty party. They did send the initial message and then pawned off the responsibility.</p>
<h2>Where the mistake hurt</h2>
<p>This gaffe wound up costing the Times. Not only was their reputation hurt, but so was their bank account.</p>
<p>Since a discounted rate was promised to the few hundred who were thinking of cancelling their subscription to the Times, other customers felt slighted. Their loyalty, so it seemed, accounted for little reward.</p>
<p>To make up for it, the Times extended the discount to everyone who received the errant email, but only for part of a day. By the afternoon of their offer, they had put a halt to the discounted rates. This decision then led to a Twitter account called @NYTSpam that made fun of the error fully disclosing that it was a:</p>
<blockquote><p>&#8220;Parody account. Not affiliated with @NYTimes or actual spammers &#8212; just sick of bad digital strategy.&#8221;</p></blockquote>
<p>The account currently has over 200 followers.</p>
<p>The Times is not alone when it comes to paying the price for a bad email going public. These things actually happen all the time. But when it happens to a small business, we don’t really hear about it.</p>
<p>To keep the lid on scandals and humiliation that can be suffered due to email, it is important that you cover certain things with your employees.</p>
<p>Anyone who emails on behalf of the company should understand the following:</p>
<ol>
<li>Never send an email when you are angry or emotional. This leads to things being said that you may want to take back.</li>
<li>Write, edit, send. Never type out an email and hit the send button without reading it over. Not only for spelling and grammar errors that could hurt your reputation, but also for the tone of the email. People read into things and if the tone is not what you intend it could lead to problems later.</li>
<li>Check your list. This ties in directly to the Times situation. Make sure that you are sending your email message to the right people. This becomes more important with so many organizations automatically populating the TO and CC fields as you type names. Make sure that you don’t rely simply on the names suggested to you. Be careful using the Reply to All as well.</li>
<li>Never punish or praise in an email message. Not only can the content of an email be misconstrued because of a lack of emotion, but it can also become evidence or public record. If you fail to follow human resources procedures, email can be a pretty solid form of documentation.</li>
<li>Don’t share company secrets via email. Whether they be financial, trade or even personal secrets they should never be relayed through an email message. It is far too easy for someone to accidentally, or purposefully, forward that message on to others.</li>
</ol>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/common-mistakes-when-sending-emails/">Common Mistakes When Sending Emails</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/common-mistakes-when-sending-emails/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Troubleshooting Exchange Networking: Active Directory (Part 2)</title>
		<link>http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/</link>
		<comments>http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 16:54:45 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5260</guid>
		<description><![CDATA[Often Exchange administrators will receive escalated help desk tickets from users complaining that Exchange is “slow” and demanding resolution. These sorts of tickets (slow being at best a relative term, and never specific enough about what precisely is considered to be slow) can be extremely challenging to work, since the subjective nature of slowness is [...]<p><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/">Troubleshooting Exchange Networking: Active Directory (Part 2)</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Ftroubleshooting-exchange-networking-active-directory-part-2%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Ftroubleshooting-exchange-networking-active-directory-part-2_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Ftroubleshooting-exchange-networking-active-directory-part-2%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/ad.jpg"><img class="alignright size-medium wp-image-5261" style="border-width: 0px;border-color: black;border-style: solid;margin: 10px" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/ad-300x220.jpg" alt="" width="300" height="220" /></a>Often Exchange administrators will receive escalated help desk tickets from users complaining that Exchange is “slow” and demanding resolution. These sorts of tickets (slow being at best a relative term, and never specific enough about what precisely is considered to be slow) can be extremely challenging to work, since the subjective nature of slowness is often combined with an inability to replicate the problem, or the problem is intermittent. The Exchange admin can take a look at the server(s) for high CPU utilization, low memory conditions, disk and network queue lengths exceeding the norm, and finding nothing, shrug it back off to the desktop support team as a client issue. While it is often a client issue, there are several places between Outlook and a user’s mailbox that can cause intermittent slowness, and are fair to call networking bottlenecks. In a six-part series of articles, we’ll look at how Exchange interacts on the network with various other services to help you identify network issues, and troubleshoot them when they occur.<span id="more-5260"></span></p>
<p>In many cases, troubleshooting Exchange network bottlenecks will require a network trace, and may also require performance monitor counters. This series of articles will talk about both of those in general terms; how to use NetMon or Wireshark, and PerfMon are out of scope. In Part 2 of this series, we’re going to discuss how Exchange is dependent upon and interacts with Active Directory on the network.</p>
<h2>Active Directory</h2>
<p>There’s a ton of network interactions between Exchange servers and Active Directory, which is why you are required to have a Global Catalog server in every site in which you have an Exchange server. An Active Directory site is usually defined as a collection of subnets with sufficient bandwidth to support replication, and that can lead to sites spanning WAN links. While the WAN may have sufficient bandwidth and low enough latency to support Active Directory replication and authentication traffic, any AD client that is in a site may connect to, and query, and Domain Controller within that site. When the target of queries is across the WAN, the total latency of the WAN link can add up to noticeable delays. Understanding just how much goes on between your Exchange server and your Global Catalog server may be enough to make you change the word “site” to “subnet.” Exchange servers will bind to a randomly selected domain controller and global catalog server in the same site, to minimize WAN traffic. Ensure that there are redundant servers will keep WAN traffic to a minimum, and optimize Exchange performance.</p>
<blockquote><p>Note: Read-Only domain controllers are not usable by Exchange. Exchange must access writable domain controllers.</p></blockquote>
<h2>Configuration information</h2>
<p>The configuration partition in Active Directory contains critical data about the forest-wide configuration. Exchange configuration information can be found in a subfolder of the Services container in the Configuration partition. This includes:</p>
<ol>
<li>Address lists</li>
<li>Address and display templates</li>
<li>Administrative groups</li>
<li>Client access settings</li>
<li>Connections</li>
<li>Messaging records management, mobile, and UM mailbox policies</li>
<li>Global settings</li>
<li>E-mail address policies</li>
<li>System policies</li>
<li>Transport settings</li>
</ol>
<p>All Exchange server roles, except the Edge Transport Server, will query AD directly for this information. Here’s more specific information on how each role depends upon AD. You can also read more about that here <a target="_blank" href="http://technet.microsoft.com/en-us/library/aa998561.aspx" target="_blank" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/aa998561.aspx?referer=');">http://technet.microsoft.com/en-us/library/aa998561.aspx</a>.</p>
<h2>Hub Transport Server Role</h2>
<p>The Hub Transport server must contact Active Directory to perform message categorization, necessary for recipient lookup and routing resolution. This will include the location of the recipient&#8217;s mailbox and any restrictions or permissions that may apply. It will also use LDAP queries to expand the membership of distribution lists to determine membership of a dynamic distribution list.</p>
<p>The Hub Transport Server will use cached information regarding the AD site topology to determine routing for message delivery between sites. If the Hub Transport server determines that a mailbox is in the same site, it will deliver the message directly to the Mailbox server, otherwise it will route the message to a Hub Transport server in the destination site.</p>
<p>The Hub Transport server uses the application partition of Active Directory to store and access configuration information, including transport rules, journal rules, and connectors.</p>
<h2>Client Access Server Role</h2>
<p>The Client Access server role services clients connecting from the Internet who want to use Outlook Web App, POP3, IMAP4, or ActiveSync. When a connection is received, the Client Access server authenticates the user against AD and then queries to determine the appropriate mailbox server. If the user&#8217;s mailbox is in the same site, the user is connected directly to their mailbox. If in a different site, the connection is redirected to a Client Access server in the remote site.</p>
<h2>Unified Messaging Server Role</h2>
<p>The Unified Messaging server queries Active Directory to retrieve global configuration information, such as dial plans, IP gateways, and hunt groups. When a message is received by the Unified Messaging server, it matches the telephone number to a recipient address, then the location of the user’s mailbox. It can then route the voicemail message to a Hub Transport server for delivery to the mailbox.</p>
<h2>Mailbox Server Role</h2>
<p>The Mailbox server also stores configuration information Active Directory, including agent configuration, address lists, and policies. The Mailbox server will use this to enforce mailbox policies and global settings.</p>
<h2>Edge Transport Server Role</h2>
<p>The Edge Transport server doesn&#8217;t access Active Directory. It stores it configuration in an instance of Active Directory Lightweight Directory Services. It uses an Edge Subscription to subscribe to a Hub Transport server in an Active Directory site, which will use the Microsoft Exchange EdgeSync service to synchronize Active Directory data to AD LDS.</p>
<h2>Site definitions</h2>
<p>There are two rules of thumb for Active Directory site design and how it impacts Exchange:</p>
<ol>
<li>Make sure every single subnet that hosts an Exchange server belongs to a site</li>
<li>Don’t let any of those sites span the WAN, no matter how much bandwidth you have available.</li>
</ol>
<p>If an Exchange server cannot determine its AD site because the subnet does not belong to a site, the MSExchangeDSA will fail with a 2114 and MSExchangeSA will fail with a 1005. In both cases it is because Exchange could not determine the AD site based on the subnet. Even the fastest WAN links have higher latency than the slowest LAN links, and that latency will have a cumulative and negative impact on Exchange performance as the server is waiting on responses from domain controllers if the DC is on the far side of the WAN from the Exchange server.</p>
<h2>Troubleshooting Exchange interaction with Active Directory</h2>
<p>Knowing how Exchange depends upon Active Directory will help you troubleshoot issues. The four main categories of problem are:</p>
<ol>
<li>Network latency between the Exchange server and GC/DC</li>
<li>Firewall rules blocking connection attempts</li>
<li>Incorrect site configuration</li>
<li>Replication problems within AD</li>
</ol>
<p>If you suspect Exchange is having a problem accessing Active Directory, first ensure that Exchange can communicate with a domain controller for each domain in the forest that has users with mailboxes, and that there is at least one domain controllers in the same site that is a global catalog server. Look for errors including 2114, 1005, and 1722.</p>
<p>Test connectivity between Exchange and Active Directory by using the <a target="_blank" href="http://www.microsoft.com/download/en/details.aspx?id=24009" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/download/en/details.aspx?id=24009&amp;referer=');">PortQueryUI</a> tool, and the response times to LDAP queries using <a target="_blank" href="http://support.microsoft.com/kb/224543" target="_blank" onclick="pageTracker._trackPageview('/outgoing/support.microsoft.com/kb/224543?referer=');">LDP.EXE</a> and a protocol analyzer. And of course, ensure that you have no replication problems with your Active Directory. A domain controller that stops replicating because of DNS islanding or other connectivity issues with the rest of the forest will directly impact AD. Changes in AD (like name, group membership, SMTP proxy addresses, etc.) must replicate to all domain controllers that Exchange relies upon before you can be sure that Exchange will pick up on/display the differences.</p>
<p>Performance will be enhanced by redundancy. When possible, ensure that there are multiple global catalog servers in the same site as every Exchange server, and that every domain in the forest with Exchange users is represented.</p>
<p>Performance of Exchange will also improve directly with the capabilities of those domain controllers. When the DC is able to cache the entire Active Directory in memory, response to queries from Exchange will be much faster. Look at implementing 64bit DCs with enough RAM to cache the entire database.</p>
<p>On a domain controller a quick way to check for replication problems is to run this command in an administrative command prompt</p>
<p><code>Repadmin /replsummary [enter]</code></p>
<p>Check for fails, servers that are down or unreachable, and larger times since the last replication event.</p>
<h2>Coming up next</h2>
<p>In Part 3, we will look at the connectivity requirements for Exchange as they relate to firewalls, and how to troubleshoot those problems. Here’s a rundown of the six parts in this series. We’ll update with live links as each part is published over the next several weeks:</p>
<ol>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-dns-part-1/">Introduction and DNS</a></li>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/" target="_blank">Active Directory</a></li>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-firewalls-part-3/" target="_blank">Firewalls</a></li>
<li>NICs</li>
<li>RPCs</li>
<li>Client side issues</li>
</ol>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/">Troubleshooting Exchange Networking: Active Directory (Part 2)</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Lose Customers and Infuriate People</title>
		<link>http://www.theemailadmin.com/2012/01/how-to-lose-customers-and-infuriate-people/</link>
		<comments>http://www.theemailadmin.com/2012/01/how-to-lose-customers-and-infuriate-people/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 14:00:19 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[Compliance]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5246</guid>
		<description><![CDATA[I want you all to go grab your favourite marketing person and make them read this post. You know the ones I am talking about. The one that doesn’t understand why they have to take the 3600dpi 8GB PDF that could be blown up to the size of the Empire State Building without looking grainy, [...]<p><a href="http://www.theemailadmin.com/2012/01/how-to-lose-customers-and-infuriate-people/">How to Lose Customers and Infuriate People</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fhow-to-lose-customers-and-infuriate-people%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Fhow-to-lose-customers-and-infuriate-people_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fhow-to-lose-customers-and-infuriate-people%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/rant.jpg"><img class="alignright size-full wp-image-5249" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/rant.jpg" alt="" width="259" height="194" /></a>I want you all to go grab your favourite marketing person and make them read this post. You know the ones I am talking about. The one that doesn’t understand why they have to take the 3600dpi 8GB PDF that could be blown up to the size of the Empire State Building without looking grainy, and reduce it for sending over email to a customer. The one who came in early last week to send an email blast to a 1000 person customer list that they bought from a guy they know, which resulted in your corporate network being placed on every RDNS blacklist on the planet. The one who doesn’t understand why when he sends an email, the customer doesn’t have it open to read before he lets goes of the mouse. The one whose laptop you secretly want to replace with an Etch-a-Sketch.<span id="more-5246"></span></p>
<p>You know the one I am talking about… the one who just doesn’t “get” what you keep trying to tell him. I want you to share this blog post with him…maybe even forward it to him &lt;/wink&gt;. This blog post is a list of seven things that non-technical folks should NOT do in email, unless of course, the objective is to lose customers and infuriate people.</p>
<ol>
<li><strong>Create form letters without testing them</strong><br />
Here’s an example of something I got in my email today:<br />
<a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/dear_no_name.png"><img class="aligncenter size-full wp-image-5247" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/dear_no_name.png" alt="" width="408" height="124" /></a><br />
And here’s the first thing I zoomed in on and clicked.<br />
<a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/unsub.png"><br />
<img class="aligncenter size-full wp-image-5248" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/unsub.png" alt="" width="405" height="27" /></a>If you are going to send out bulk email, either address it to “valued customer” so we’re at least honest about how impersonal it is, or test your program on your own personal account and a few of your cow-orkers before you fill your customers’ inboxes with junk.</li>
<li><strong>Email an attachment that should have been the body of the email</strong><br />
How many times have you gotten an email with an attachment and had to open the attachment to find that it either could have been incorporated in the body of the message, or left on a webserver and the email should have just included the link? That just wastes everyone’s time, and bandwidth, and also raises the chance your message will be blocked before the user even sees it.</li>
<li><strong>Use a fixed width format that cannot be viewed on a mobile device</strong><br />
If I have to scroll back and forth or pinch and zoom to read your message, I’ll probably just delete it unless it was something I specifically asked for. When you are trying to get your message out, make sure it can be received on any of the myriad devices your (potential) customers might use; full PC mail client, smartphone, e-reader, tablet, etc.</li>
<li><strong>Use micro-fonts</strong><br />
The saying is that 12 is the new 10. As devices get smaller, and as folks&#8217; eyes get worse from staring at screens all day, one very bad thing you can do to people is make them squint to read your message. Yes, of course they can zoom in; but they could have also gone to your website instead of reading your email. Any extra effort or inconvenience is that much more reason for someone to delete you message unread.</li>
<li><strong>Send read-receipt requested email</strong><br />
If you want to know for a fact I got something, deliver it in person. Anything else is invasive and rude. When people do that to me internally, I make it a point to go over to their office and read the message out loud to them from my phone, asking for help with the big words. When sales people do it on unsolicited messages, I add them to the junk senders list.</li>
<li><strong>Send an email to a large list of people where the only thing they have in common is that they’re in your address book or on your list</strong><br />
It’s called BCC, and if you aren’t using it, you’re doing a huge disservice to your customers by exposing their information to people they’d just as soon not have their contact details. Hey admins? Why aren’t you limiting recipients per message to prevent the “mistakes” from happening?</li>
<li><strong>Do not include your phone number in your email</strong><br />
If you don’t want to take a customer call, you can always let it go into voice mail, but if you actually got our attention, and maybe we want to talk to you about what you’re selling, don’t make us hunt for your telephone number!</li>
</ol>
<p>Readers, this is a chance for you to sound off about the things people do in email that drive you up a wall. Leave a comment (you don’t even have to register) and share your horror stories, pet peeves, or the worst affronts you’ve personally witnessed. Hello Internet, I’m listening.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/how-to-lose-customers-and-infuriate-people/">How to Lose Customers and Infuriate People</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/how-to-lose-customers-and-infuriate-people/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Windows 8 Offers New Password Features</title>
		<link>http://www.theemailadmin.com/2012/01/windows-8-offers-new-password-features/</link>
		<comments>http://www.theemailadmin.com/2012/01/windows-8-offers-new-password-features/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 14:00:12 +0000</pubDate>
		<dc:creator>John P Mello Jr</dc:creator>
				<category><![CDATA[email security]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5200</guid>
		<description><![CDATA[Why it has taken Microsoft so long to make password security more than an afterthought when it introduces a new operating system is anybody&#8217;s guess. Nevertheless, with Windows 8 it is making an effort to help users manage their passwords in an efficient and secure way. Everyone has dozens of accounts they need for which [...]<p><a href="http://www.theemailadmin.com/2012/01/windows-8-offers-new-password-features/">Windows 8 Offers New Password Features</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fwindows-8-offers-new-password-features%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Fwindows-8-offers-new-password-features_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fwindows-8-offers-new-password-features%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_5239" class="wp-caption alignright" style="width: 285px"><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/GFI-62-photo-touch.jpg"><img class="size-full wp-image-5239 " style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/GFI-62-photo-touch.jpg" alt="" width="275" height="275" /></a><p class="wp-caption-text">Gestures can replace passwords in Windows 8.</p></div>
<p>Why it has taken Microsoft so long to make password security more than an afterthought when it introduces a new operating system is anybody&#8217;s guess. Nevertheless, with Windows 8 it is making an effort to help users manage their passwords in an efficient and secure way.</p>
<p>Everyone has dozens of accounts they need for which they need to memorize passwords. Most people, though, only commit a few passwords to memory and just reuse them over and over again. A study in 2007, for example, found that the average Internet user had 25 accounts that required password access, but they only used six passwords to access their accounts.</p>
<p>Security pros decry the multiple use of passwords but there are plenty of sites on the web where if your password fell into the wrong hands, the consequences would be trivial. Reusing passwords for those sites should be acceptable. There are sites where unique passwords are a must, though, such as banking or credit card payment sites.<span id="more-5200"></span></p>
<p>With Windows 8, Microsoft is addressing several nettlesome issues that discourage people from creating and using strong passwords. In the upcoming version of Windows, user names and passwords are stored in a secure location called the Credential Password Vault.</p>
<p>The latest version of Microsoft&#8217;s web browser, Internet Explorer 10, is designed to automatically access the Vault for your credential information, but other browsers and applications will eventually be able to access the area, too.</p>
<p>What&#8217;s more, if you have or obtain a Windows Live ID, you&#8217;ll be able to synchronize the Vaults across all your devices. Not only does that remove the annoying situation of trying to remember credentials for a site when you&#8217;re away from the device where you created those credentials, but it can provide a safety net should the password information on any one device be corrupted.</p>
<p>Synchronization appears to be pretty robust too. Microsoft says it can take place behind a firewall. However, websites can block the storage of credentials used to access them. Some banks do that. In that case, synchronization will not work because your credentials won&#8217;t be stored in your Vault.</p>
<p>Another intriguing aspect of the Credentials Password Vault is that it can also store security keys. Typically, those keys involve the use of hardware tokens to authenticate a person&#8217;s identity. The Vault, however, is designed to work with something called the Trusted Platform Module, which is being incorporated into more and more computers these days. The Vault and the Module, which acts as a virtual security token, can team up to perform the same function as token-based key pair system.</p>
<p>For tablets or computers with touchscreens, Windows 8 has an even neater password option. It allows you to take a photo of your choice and use it to access your slate by performing a series of gestures on it.</p>
<p>Although some security experts are skeptical of the method, and even Microsoft acknowledges that <a target="_blank" href="http://arstechnica.com/business/news/2011/12/windows-8-picture-login-dont-let-smudges-reveal-your-password.ars" onclick="pageTracker._trackPageview('/outgoing/arstechnica.com/business/news/2011/12/windows-8-picture-login-dont-let-smudges-reveal-your-password.ars?referer=');">smudges on a screen could compromise the gesture password</a>, the approach has the potential to be more secure than ordinary password schemes. Microsoft estimates that there are 398 trillion five gesture combinations that could be applied to a photo, compared to 182 million combinations for a five-character password and nine trillion combinations for an eight character one.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/windows-8-offers-new-password-features/">Windows 8 Offers New Password Features</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/windows-8-offers-new-password-features/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Cool Tools: Microsoft Exchange Server User Monitor</title>
		<link>http://www.theemailadmin.com/2012/01/cool-tools-microsoft-exchange-server-user-monitor/</link>
		<comments>http://www.theemailadmin.com/2012/01/cool-tools-microsoft-exchange-server-user-monitor/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 14:00:20 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5207</guid>
		<description><![CDATA[Whether you are troubleshooting an Exchange server performance issue, trying to see how well you sized your servers, or just want a better idea of what your users are doing, the Exchange Server User Monitor from Microsoft (or ExMon as it is known to its friends) is a great, free tool you can use to [...]<p><a href="http://www.theemailadmin.com/2012/01/cool-tools-microsoft-exchange-server-user-monitor/">Cool Tools: Microsoft Exchange Server User Monitor</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fcool-tools-microsoft-exchange-server-user-monitor%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Fcool-tools-microsoft-exchange-server-user-monitor_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fcool-tools-microsoft-exchange-server-user-monitor%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/toolbox.jpg"><img class="alignright size-full wp-image-5208" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/toolbox.jpg" alt="" width="253" height="199" /></a>Whether you are troubleshooting an Exchange server performance issue, trying to see how well you sized your servers, or just want a better idea of what your users are doing, the Exchange Server User Monitor from Microsoft (or ExMon as it is known to its friends) is a great, free tool you can use to gather all sorts of information about your Exchange environment. The Exchange Server User Monitor has been around for years, and this latest version, 14.2.247.5, was released in December of 2011.</p>
<p>You can download ExMon from <a target="_blank" href="http://www.microsoft.com/download/en/details.aspx?id=11461" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/download/en/details.aspx?id=11461&amp;referer=');">this link</a> and use to evaluate a server, or an individual user’s interactions with that server. As with many tools from Microsoft, this has been around for years, but gets an update and a facelift every so often. With ExMon, you can view the following information:<span id="more-5207"></span></p>
<ul>
<li>IP addresses used by clients</li>
<li>Microsoft Office Outlook® versions and mode, such as Cached Exchange Mode and classic online mode</li>
<li>Outlook client-side monitoring data</li>
<li>Resource use, such as:
<ul>
<li>CPU usage</li>
<li>Server-side processor latency</li>
<li>Total latency for network and processing with Outlook 2003 and later versions of MAPI</li>
<li>Network bytes</li>
<li>And more.</li>
</ul>
</li>
</ul>
<p>The download is a simple MSI file that weighs in under 2MB in size, and the install is of the next agree next enter variety. You don’t need to run this tool on your Exchange server; It can run just fine on another server or on your workstation when you want to use it to view trace files gathered by the tool running on an actual Exchange server. Just launch it from the command line passing the ETL filename in the command, like exmon.exe c:\temp\exch01.etl [enter]. Note, if you are going to run the tool on your workstation, you can find it at C:\Program Files (x86)\Exchange User Monitor. There’s a reg file in that directory that you should import into your registry so the tool can work properly.</p>
<p>You can collect data for use with ExMon in one of three ways:</p>
<ul>
<li>Collecting data directly with ExMon</li>
<li>Collecting data by using System Monitor (Windows 2000 Server and Windows Server 2003 only)</li>
<li>Collecting data by using command-line tools.</li>
</ul>
<p>Using ExMon directly to collect data is best done when you are looking to “spot check” a server and plan to gather data for only short intervals. ExMon trace files can become very large, especially when the monitor interval is long, and parsing these files can be both CPU and RAM intensive.</p>
<p>For trending data, it’s best to use System Monitor, and schedule it with a reasonable sampling frequency. It’s best to start out small, monitor the size of the files generated, and adjust your sampling interval and the duration of your monitoring as you see fit.</p>
<p>While the documentation has not been updated yet for this version, you can read more about how to use ExMon at the TechNet site: <a target="_blank" href="http://technet.microsoft.com/en-us/library/bb508855(EXCHG.65).aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/bb508855_EXCHG.65_.aspx?referer=');">http://technet.microsoft.com/en-us/library/bb508855(EXCHG.65).aspx</a>.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/cool-tools-microsoft-exchange-server-user-monitor/">Cool Tools: Microsoft Exchange Server User Monitor</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/cool-tools-microsoft-exchange-server-user-monitor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>7 Reasons to Ditch That Free Email Address</title>
		<link>http://www.theemailadmin.com/2012/01/7-reasons-to-ditch-that-free-email-address/</link>
		<comments>http://www.theemailadmin.com/2012/01/7-reasons-to-ditch-that-free-email-address/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 16:00:01 +0000</pubDate>
		<dc:creator>Jeff Orloff</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[Compliance]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email monitoring]]></category>
		<category><![CDATA[email policies]]></category>
		<category><![CDATA[email security]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Outlook]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5204</guid>
		<description><![CDATA[When starting out, many small businesses set up their email using one of the free accounts available to them. Services like Gmail by Google, Hotmail from Microsoft or Yahoo!’s mail service, provide a working email address with almost no maintenance for a business just getting its feet wet. However this may not be the best [...]<p><a href="http://www.theemailadmin.com/2012/01/7-reasons-to-ditch-that-free-email-address/">7 Reasons to Ditch That Free Email Address</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2F7-reasons-to-ditch-that-free-email-address%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2F7-reasons-to-ditch-that-free-email-address_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2F7-reasons-to-ditch-that-free-email-address%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/free-email-services.jpg"><img class="alignright size-full wp-image-5205" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/free-email-services.jpg" alt="" width="243" height="242" /></a>When starting out, many small businesses set up their email using one of the free accounts available to them. Services like Gmail by Google, Hotmail from Microsoft or Yahoo!’s mail service, provide a working email address with almost no maintenance for a business just getting its feet wet.</p>
<p>However this may not be the best way to make a first impression with your potential customers.</p>
<p>Listed below are seven reasons why you need to ditch the <a target="_blank" href="mailto:yourcompany@freeemail.com">yourcompany@freeemail.com</a> and go with an address that better reflects the image you want your company to have.<span id="more-5204"></span></p>
<p><strong>1. Free email looks less professional</strong></p>
<p>People associate free email services like Gmail or Hotmail as a personal accounts. Businesses, on the other hand, should have an email address that looks more professional. In fact, a study by Visible Logic in Amsterdam found that 70 percent of people view email messages coming from free email services as less professional when used by a business.</p>
<p><strong>2. Free email looks spammy</strong></p>
<p>Over the years, people have been burned so often by spam that they have become very adept at spotting shady looking emails in their inbox. One way to spot an email that may have malicious intent is by looking at the address. If you email address doesn’t look legitimate, your messages may be overlooked by overly cautious recipients.</p>
<p><strong>3. Free email looks cheap</strong></p>
<p>When people receive an email from your company and it has the @freeemail.com trailing it, your company looks cheap. For less than five bucks a month, you can set up an email address with your company’s domain. Sometimes you can even get a few of these for free when you host your company’s website. Customers who see that you are unwilling to spend a few dollars on this are often left to wonder what else your company may be skimping on.</p>
<p><strong>4. You lose credibility when you use free email</strong></p>
<p>A legitimate, professional looking email address tells your customers that you are here to stay.</p>
<p>Not only that, but having multiple email addresses such as: <a target="_blank" href="mailto:info@yourcompany.com">info@yourcompany.com</a>, <a target="_blank" href="mailto:sales@yourcompany.com">sales@yourcompany.com</a> or <a target="_blank" href="mailto:service@yourcompany.com">service@yourcompany.com</a> shows others that you are a well structured organization. The impression one gets when there is one, free email as the sole contact is that one person is handling everything for a company. This may scare larger clients away for fear that the company cannot handle their needs.</p>
<p>In today’s business atmosphere, trust is everything. Especially when it comes to online sales. Every little thing your company can do to establish trust and credibility will help your business grow.</p>
<p><strong>5. Free email is less secure</strong></p>
<p>Remember the old saying: <em>there is no such thing as a free lunch?</em> Well that applies to email as well.</p>
<p>True, Google, Yahoo!, Microsoft and the other free email providers do everything they can to make sure that their email services are as secure as possible, but things can slip through the cracks.</p>
<p>To pay for “free” email, users are subject to advertisements. While these help pay for the servers and storage space, they also have been linked to spam and hijacking. There have been several cases where businesses have had bank accounts and other confidential information compromised by cyber criminals who intercept email messages of companies that use free email services.</p>
<p><strong>6. Free email may put you out of compliance</strong></p>
<p>Nowadays, there are regulations and laws that govern so many industries and their record keeping that many large companies have entire legal teams dedicated to just compliance related issues.</p>
<p>But smaller companies are not immune to compliance. Companies of all sizes need to be aware of HIPPA when it comes to healthcare, PCI DSS when dealing with credit cards, and CAN-SPAM Act when it comes to marketing.</p>
<p>Free email likely does not offer you the tools required to be in compliance with any of these, or the many other, laws or regulations for email use.</p>
<p><strong>7. You miss out on marketing your brand</strong></p>
<p>Having your website’s domain name in every email you send out gives you the opportunity to build your company’s brand. <a target="_blank" href="mailto:Info@yourcompany.com">Info@yourcompany.com</a> puts your web site address in the minds of your customers. They know where to turn to when they need your services because they are so used to seeing your domain in every communication from you.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/7-reasons-to-ditch-that-free-email-address/">7 Reasons to Ditch That Free Email Address</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/7-reasons-to-ditch-that-free-email-address/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>What Should Be in Your BYOD Policy?</title>
		<link>http://www.theemailadmin.com/2012/01/what-should-be-in-your-byod-policy/</link>
		<comments>http://www.theemailadmin.com/2012/01/what-should-be-in-your-byod-policy/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 14:00:08 +0000</pubDate>
		<dc:creator>John P Mello Jr</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[email security]]></category>
		<category><![CDATA[BYOD]]></category>
		<category><![CDATA[email administration]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5183</guid>
		<description><![CDATA[More and more organizations are finding their employees using personal devices to access company data. Without some measure of control, those workers can create serious security problems for their employers. As much as some administrators would like to block the use of personal devices in the workplace, that&#8217;s unlikely to happen for a number of [...]<p><a href="http://www.theemailadmin.com/2012/01/what-should-be-in-your-byod-policy/">What Should Be in Your BYOD Policy?</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fwhat-should-be-in-your-byod-policy%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Fwhat-should-be-in-your-byod-policy_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fwhat-should-be-in-your-byod-policy%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_5189" class="wp-caption alignright" style="width: 310px"><a href="http://www.theemailadmin.com/wp-content/uploads/2011/12/GFI161-BYOD.jpg"><img class="size-medium wp-image-5189 " style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2011/12/GFI161-BYOD-300x225.jpg" alt="" width="300" height="225" /></a><p class="wp-caption-text">BYOD can give administrators a headache.</p></div>
<p>More and more organizations are finding their employees using personal devices to access company data. Without some measure of control, those workers can create serious security problems for their employers.</p>
<p>As much as some administrators would like to block the use of personal devices in the workplace, that&#8217;s unlikely to happen for a number of reasons. For example, many employees are already using their own devices at work, as a recent survey by IDC shows. That poll found that 95 percent of workers use one personally purchased device on the job.<span id="more-5183"></span></p>
<p>In addition, businesses are demanding more and more productivity from their workers, and that&#8217;s what they can get by allowing employees to use their own gadgets for work. One study by iPass, for instance, showed that employees using personal devices worked 240 more hours a year.</p>
<p>Not many companies would want to part with that kind of productivity, and they&#8217;re not going to, according to a Gartner analysis. To do so, that report noted, corporations will be embracing the practice by placing their apps on their workers&#8217; devices. In fact, by 2014 Gartner predicts that 90 percent of all employee-owned devices will have corporate apps running on them.</p>
<p>Other cultural and technology trends are also making opposition to the Bring Your Own Device futile. Hardware makers are finding they need to produce products with a consumer bent if they want to stay in business.</p>
<p>Virtualization and cloud computing encourage access to corporate technology resources whenever worker wants to access them and with whatever they want to access them with.</p>
<p>Meanwhile, as the line between work and non-work becomes more and more obscure, the case for creating a clear line of demarcation between work and home devices becomes weaker and weaker.</p>
<p>To address issues created by the use of personal devices in the workplace, companies have begun to adopt BYOD policies. Before adopting such a policy, here are some questions an organization might want to consider.</p>
<ul>
<li>Should data be classified to determine what can and can&#8217;t be downloaded by personal devices?</li>
<li>What happens to company data on a personal device when an employee leaves the company?</li>
<li>What happens if a personal device is lost or stolen?</li>
<li>Do personal devices need to be configured in any special way?</li>
<li>How can an acceptable password policy be implemented on a personal device?</li>
<li>What forms of encryption should be acceptable?</li>
<li>What personal devices are acceptable for use with corporate resources?</li>
<li>Should employees be allowed to jailbreak or root their devices, as doing that may make the device more susceptible to security risks.</li>
<li>Should employees be required to sign the BYOD policy before they&#8217;re granted access to the company&#8217;s network?</li>
</ul>
<p>Some of those questions were considered by Unisys when it formulated its BYOD policy. Among the requirements of that policy is that Unisys has the right to confiscate a device if it&#8217;s needed for litigation purposes.</p>
<p>That policy requires employees to accept a digital certificate to be installed on their personal device. It authenticates the device to Unisys&#8217;s systems, and it allows the company to analyze access behavior. Knowledge of that behavior can be used to identify abuse of access privileges.</p>
<p>The certificate gives an employee access to email and calendar functions on the system. Access to other functions can require additional authentication.</p>
<p>Another requirement of the policy, and one most administrators will find desirable, is the installation of a program on the device that enables all data to be remotely wiped on a unit that is lost or stolen.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/what-should-be-in-your-byod-policy/">What Should Be in Your BYOD Policy?</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/what-should-be-in-your-byod-policy/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 2.320 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-10 03:33:26 -->

