<?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>Exchange Server Pro &#187; Security</title>
	<atom:link href="http://exchangeserverpro.com/tag/security/feed" rel="self" type="application/rss+xml" />
	<link>http://exchangeserverpro.com</link>
	<description>Microsoft Exchange Server news, tips, tricks and tutorials</description>
	<lastBuildDate>Tue, 31 Aug 2010 12:02:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to Configure a Relay Connector for Exchange Server 2010</title>
		<link>http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010</link>
		<comments>http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010#comments</comments>
		<pubDate>Thu, 19 Aug 2010 09:00:59 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Hub Transport]]></category>
		<category><![CDATA[Receive Connector]]></category>
		<category><![CDATA[Relay]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=1968</guid>
		<description><![CDATA[This tutorial demonstrates how to create a secure Receive Connector on an Exchange Server 2010 Hub Transport server to allow other servers or devices to relay mail.]]></description>
			<content:encoded><![CDATA[<p>In most Exchange Server 2010 environments there will be the need to allow relaying for certain hosts, devices or applications to send email via the Exchange server.  This is common with multi-function devices such as network attached printer/scanners, or applications such as backup software that send email reports.</p>
<p>SMTP communication is handled by the Hub Transport server in an Exchange organization.  The transport service listens for SMTP connections on it&#8217;s default Receive Connector. However, this connector is secured by default to not allow anonymous connections (ie, the type of connection most non-Exchange systems will be making).</p>
<p>You can see this in effect if you telnet to the server on port 25 and try to initiate unauthenticated SMTP communications.</p>
<pre>220 EX3.exchangeserverpro.local Microsoft ESMTP MAIL Service ready at Wed, 18 Au
g 2010 19:42:27 +1000
helo
250 EX3.exchangeserverpro.local Hello [192.168.0.9]
mail from: somebody@hotmail.com
530 5.7.1 Client was not authenticated</pre>
<p>For some Hub Transport servers that are internet-facing, anonymous connections may already be enabled.  In those cases relay would still be denied but will behave differently than the first example.</p>
<pre>220 EX3.exchangeserverpro.local Microsoft ESMTP MAIL Service ready at Wed, 18 Au
g 2010 20:01:44 +1000
helo
250 EX3.exchangeserverpro.local Hello [192.168.0.9]
mail from: somebody@hotmail.com
250 2.1.0 Sender OK
rcpt to: somebody@gmail.com
550 5.7.1 Unable to relay</pre>
<p>You&#8217;ll note that relay is denied if I try to send from an @hotmail.com address to an @gmail.com address, because neither is a valid domain for the Exchange organization.  But with Anonymous Users enabled on the Receive Connector I can send from an @hotmail.com address to a valid local address.</p>
<pre>220 EX3.exchangeserverpro.local Microsoft ESMTP MAIL Service ready at Wed, 18 Au
g 2010 20:05:54 +1000
helo
250 EX3.exchangeserverpro.local Hello [192.168.0.9]
mail from: somebody@hotmail.com
250 2.1.0 Sender OK
rcpt to: alan.reid@exchangeserverpro.local
250 2.1.5 Recipient OK
data
354 Start mail input; end with .
test
.
250 2.6.0  [In
ternalId=2] Queued mail for delivery</pre>
<p>However if I try to relay out to an external recipient, the Exchange server does not allow it.</p>
<pre>220 EX3.exchangeserverpro.local Microsoft ESMTP MAIL Service ready at Wed, 18 Au
g 2010 20:11:27 +1000
helo
250 EX3.exchangeserverpro.local Hello [192.168.0.9]
mail from: backups@exchangeserverpro.net
250 2.1.0 Sender OK
rcpt to: alerts@managedserviceprovider.com
550 5.7.1 Unable to relay</pre>
<p>To permit a non-Exchange server to relay mail we can create a new Receive Connector on the Hub Transport server.  Launch the <strong>Exchange Management Console</strong> and navigate to <strong>Server Management</strong>, and then <strong>Hub Transport</strong>. Select the Hub Transport server you wish to create the new Receive Connector on, and from the <strong>Actions</strong> pane of the console choose <strong>New Receive Connector</strong>.</p>
<p><img class="aligncenter size-full wp-image-1969" title="newreceiveconnector01" src="http://exchangeserverpro.com/wp-content/uploads/2010/08/newreceiveconnector01.png" alt="" width="580" height="250" /></p>
<p>Give the new connector a name such as &#8220;Relay &#8221; and click <strong>Next</strong> to continue.</p>
<p><img class="aligncenter size-full wp-image-1970" title="newreceiveconnector02" src="http://exchangeserverpro.com/wp-content/uploads/2010/08/newreceiveconnector02.png" alt="" width="475" height="179" /></p>
<p>You can leave the local network settings as is, or optionally you can use a dedicated IP address for this connector if one has already been allocated to the server.  Using dedicated IP addresses for each connector is sometimes required if you need to create connectors with different authentication settings, but for a general relay connector it is not necessary to change it.</p>
<p><img class="aligncenter size-full wp-image-1971" title="newreceiveconnector03" src="http://exchangeserverpro.com/wp-content/uploads/2010/08/newreceiveconnector03.png" alt="" width="348" height="126" /></p>
<p>Highlight the default IP range in the remote network settings and click the red X to delete it.</p>
<p><img class="aligncenter size-full wp-image-1972" title="newreceiveconnector04" src="http://exchangeserverpro.com/wp-content/uploads/2010/08/newreceiveconnector04.png" alt="" width="256" height="126" /></p>
<p>Now click the <strong>Add</strong> button and enter the IP address of the server you want to allow to relay through the Exchange server. Click OK to add it and then Next to continue.</p>
<p><img class="aligncenter size-full wp-image-1973" title="newreceiveconnector05" src="http://exchangeserverpro.com/wp-content/uploads/2010/08/newreceiveconnector05.png" alt="" width="438" height="229" /></p>
<p>Click the New button to complete the wizard.</p>
<p>The Receive Connector has now been created but is not yet ready to allow the server to relay through it.  Go back to the Exchange Management Console, right-click the newly created Receive Connector and choose properties.</p>
<p>Select the Permission Groups tab and tick the <strong>Exchange Servers</strong> box.</p>
<p><img class="aligncenter size-full wp-image-1975" title="newreceiveconnector07" src="http://exchangeserverpro.com/wp-content/uploads/2010/08/newreceiveconnector07.png" alt="" width="444" height="193" /></p>
<p>Select the Authentication Tab and tick the <strong>Externally Secured</strong> box.</p>
<p><img class="aligncenter size-full wp-image-1974" title="newreceiveconnector06" src="http://exchangeserverpro.com/wp-content/uploads/2010/08/newreceiveconnector06.png" alt="" width="444" height="260" /></p>
<p>Apply the changes and the Receive Connector is now ready for the server to relay through.</p>
<pre>220 EX3.exchangeserverpro.local Microsoft ESMTP MAIL Service ready at Wed, 18 Au
g 2010 20:31:00 +1000
helo
250 EX3.exchangeserverpro.local Hello [192.168.0.9]
mail from: backups@exchangeserverpro.net
250 2.1.0 Sender OK
rcpt to: alerts@managedserviceprovider.com
250 2.1.5 Recipient OK
data
354 Start mail input; end with .
test
.
250 2.6.0 &lt;924bab1e-0f07-4054-8700-d121577993b4@EX3.exchangeserverpro.local&gt; [In
ternalId=3] Queued mail for delivery</pre>
<p>Because the remote IP range has been secured to that single IP address, any other servers on different IP addresses still won&#8217;t be able to relay through the Exchange Server.  From any other IP address not included in the remote IP range on the Receive Connector relay will be denied.</p>
<pre>220 EX3.exchangeserverpro.local Microsoft ESMTP MAIL Service ready at Wed, 18 Au
g 2010 20:46:06 +1000
helo
250 EX3.exchangeserverpro.local Hello [192.168.0.2]
mail from: backups@exchangeserverpro.net
250 2.1.0 Sender OK
rcpt to: alerts@managedserviceprovider.com
550 5.7.1 Unable to relay</pre>
<p>You can later add more IP addresses, IP ranges, subnets, or even <a href="http://exchangeserverpro.com/how-to-add-remote-ip-addresses-to-existing-receive-connectors">add multiple IP addresses to the Receive Connector</a> using a script if necessary.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/how-to-add-remote-ip-addresses-to-existing-receive-connectors" title="How to Add Remote IP Addresses to Existing Receive Connectors">How to Add Remote IP Addresses to Existing Receive Connectors</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-hub-transport-server-backup-and-recovery" title="Exchange 2010 Hub Transport Server Backup and Recovery">Exchange 2010 Hub Transport Server Backup and Recovery</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-setup-fails-when-msexchangetransport-service-wont-start" title="Exchange 2010 Setup Fails when MSExchangeTransport Service Won&#8217;t Start">Exchange 2010 Setup Fails when MSExchangeTransport Service Won&#8217;t Start</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-load-balance-outbound-email" title="How to Correctly Use Multiple Smart Hosts to Load Balance Outbound Email for Exchange 2010">How to Correctly Use Multiple Smart Hosts to Load Balance Outbound Email for Exchange 2010</a></li><li><a href="http://exchangeserverpro.com/causes-of-mapiexceptionnotauthorized-error-sending-to-public-folders" title="Causes of MapiExceptionNotAuthorized Error Sending to Public Folders">Causes of MapiExceptionNotAuthorized Error Sending to Public Folders</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010">How to Configure a Relay Connector for Exchange Server 2010</a> is © 2010 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Causes of MapiExceptionNotAuthorized Error Sending to Public Folders</title>
		<link>http://exchangeserverpro.com/causes-of-mapiexceptionnotauthorized-error-sending-to-public-folders</link>
		<comments>http://exchangeserverpro.com/causes-of-mapiexceptionnotauthorized-error-sending-to-public-folders#comments</comments>
		<pubDate>Thu, 22 Apr 2010 04:15:30 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Public Folders]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=1290</guid>
		<description><![CDATA[In some scenarios a mailbox user sending emails to a mail-enabled Public Folder may receive an undeliverable message with a reason of "MapiExceptionNotAuthorized".]]></description>
			<content:encoded><![CDATA[<p>In some scenarios a mailbox user sending emails to a mail-enabled Public Folder may receive an undeliverable message in reply.</p>
<p>The message contains the following error details:</p>
<pre>#550 5.2.0 STOREDRV.Deliver: The Microsoft Exchange Information Store service
reported an error.  The following information should help identify the cause
of this error: "MapiExceptionNotAuthorized:16.18969:57080000..."
</pre>
<p>This error can occur under a variety of configurations relating to Public Folder client permissions.</p>
<h2>External Senders</h2>
<p>External senders will receive the error if the Public Folder does not permit &#8220;Anonymous&#8221; to create new items.</p>
<pre>[PS] C:\&gt;Get-PublicFolderClientPermission \pftest

Identity                   User                       AccessRights
--------                   ----                       ------------
\pftest                    Default                    {FolderVisible}
\pftest                    mycompany.local/Users/A... {Owner}
\pftest                    Anonymous                  {None}
</pre>
<p>To grant this access run the following command in the Exchange Management Shell.</p>
<pre>[PS] C:\&gt;Add-PublicFolderClientPermission \pftest -User Anonymous -AccessRights CreateItems

Identity                   User                       AccessRights
--------                   ----                       ------------
\pftest                    Anonymous                  {CreateItems}
</pre>
<h2>Internal Senders</h2>
<p>Internal senders are able to be authenticated by the Exchange server, and so are not treated as Anonymous.  For internal senders the user must have at least Create Items permissions on the Public Folder.  For general use Public Folders this can be granted as the &#8220;Default&#8221; permission.</p>
<p>To grant this access run the following command in the Exchange Management Shell.</p>
<pre>[PS] C:\&gt;Add-PublicFolderClientPermission \pftest -user Default -AccessRights CreateItems

Identity                   User                       AccessRights
--------                   ----                       ------------
\pftest                    Default                    {Contributor}
</pre>
<h2>Internal Senders Alternate Scenario</h2>
<p>Because internal senders are being authenticated by the Exchange server their group membership is taken into consideration.  When the Exchange server receives a new item from an internal sender it takes the following basic steps:</p>
<ol>
<li>Maps the sender address to a user account object (this occurs even if the email was not sent by the user themselves, eg was sent via Telnet)</li>
<li>Enumerates the user&#8217;s group membership</li>
<li>Assesses the group membership against the ACLs on the Public Folder</li>
<li>Permits or denies the mail item depending on the ACL</li>
</ol>
<p>Because of this process the Exchange server must have Read access to the groups that the sender is a member of, including direct membership and indirect membership (eg by nested groups).</p>
<p>If the Exchange server cannot read a group object it will deny the mail item and the user will receive the undeliverable message with &#8220;MapiExceptionNotAuthorized&#8221;.  The reason for this is that it is designed to fail in a secure way (ie, &#8220;I can&#8217;t verify your access therefore I will deny you&#8221;), rather than an insecure way (ie &#8220;I can&#8217;t verify your access therefore I will permit you&#8221;).</p>
<p><img class="aligncenter size-full wp-image-1293" title="publicfolder" src="http://exchangeserverpro.com/wp-content/uploads/2010/04/publicfolder.png" alt="" width="550" height="403" /></p>
<p>With that in mind you would need to investigate all of the direct and indirect group membership for the user and try to locate a group object that does not have the Exchange Servers group with Read access in its ACL.  Most commonly this will occur when the group is in a Domain in the Forest that has not been prepped for Exchange, or is in an OU where permissions inheritance has been disabled.</p>
<p>Correcting the ACL on the group objects should resolve the undeliverable &#8220;MapiExceptionNotAuthorized&#8221; error in those cases.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/public-folders-not-replicating-between-exchange-2007-and-2010" title="Public Folders Not Replicating Between Exchange 2007 and 2010">Public Folders Not Replicating Between Exchange 2007 and 2010</a></li><li><a href="http://exchangeserverpro.com/object-is-read-only-removing-exchange-server-2007-public-folder-database" title="Error “Object is Read Only” During Exchange Server 2007 Public Folder Database Removal">Error “Object is Read Only” During Exchange Server 2007 Public Folder Database Removal</a></li><li><a href="http://exchangeserverpro.com/exchange-server-2010-and-the-benefits-of-commercial-ssl-certificates" title="Exchange Server 2010 and the Benefits of Commercial SSL Certificates">Exchange Server 2010 and the Benefits of Commercial SSL Certificates</a></li><li><a href="http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010" title="How to Configure a Relay Connector for Exchange Server 2010">How to Configure a Relay Connector for Exchange Server 2010</a></li><li><a href="http://exchangeserverpro.com/understanding-the-exchange-server-spam-confidence-level" title="Understanding the Exchange Server Spam Confidence Level">Understanding the Exchange Server Spam Confidence Level</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/causes-of-mapiexceptionnotauthorized-error-sending-to-public-folders">Causes of MapiExceptionNotAuthorized Error Sending to Public Folders</a> is © 2010 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/causes-of-mapiexceptionnotauthorized-error-sending-to-public-folders/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>GFI LANGuard Tutorial</title>
		<link>http://exchangeserverpro.com/gfi-languard-tutorial</link>
		<comments>http://exchangeserverpro.com/gfi-languard-tutorial#comments</comments>
		<pubDate>Wed, 15 Jul 2009 01:00:49 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[GFI]]></category>
		<category><![CDATA[LANGuard]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.capslockassassin.com/?p=731</guid>
		<description><![CDATA[SecurityDistro.com has published my tutorial on how to use GFI LANGuard to find and resolve security vulnerabilities on your network.]]></description>
			<content:encoded><![CDATA[<p>SecurityDistro.com has published my tutorial on <a href="http://securitydistro.com/tutorials/163/Discovering-Network-Vulnerabilities-with-GFI-LANguard.php">how to use GFI LANGuard</a> to find and resolve security vulnerabilities on your network.</p>
<blockquote><p>A typical business network is made up of many computers each of which represents a potential security hole for the network.  As networks grow the effort to manage these security risks grows as well.  Although different vendors provide management tools specific to their products these do little to reduce the administrative burden of managing all of the different elements of the network.</p>
<p>GFI LANguard offers a single, centralized solution for IT administrators to scan the computers and servers on the network to detect and resolve security threats.  GFI LANguard is available both as a licensed product for larger networks, and also as a free, full featured version for scanning up to 5 IP addresses.</p></blockquote>
<p>Read the full tutorial <a href="http://securitydistro.com/tutorials/163/Discovering-Network-Vulnerabilities-with-GFI-LANguard.php">here</a>.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010" title="How to Configure a Relay Connector for Exchange Server 2010">How to Configure a Relay Connector for Exchange Server 2010</a></li><li><a href="http://exchangeserverpro.com/review-of-gfi-backup-business-edition" title="Review of GFI Backup Business Edition">Review of GFI Backup Business Edition</a></li><li><a href="http://exchangeserverpro.com/causes-of-mapiexceptionnotauthorized-error-sending-to-public-folders" title="Causes of MapiExceptionNotAuthorized Error Sending to Public Folders">Causes of MapiExceptionNotAuthorized Error Sending to Public Folders</a></li><li><a href="http://exchangeserverpro.com/gfi-mailessentials-winners" title="GFI MailEssentials Winners">GFI MailEssentials Winners</a></li><li><a href="http://exchangeserverpro.com/gfi-mailessentials-giveaway-contest-closes-soon" title="GFI MailEssentials Giveaway Contest Closes Soon">GFI MailEssentials Giveaway Contest Closes Soon</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/gfi-languard-tutorial">GFI LANGuard Tutorial</a> is © 2009 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/gfi-languard-tutorial/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bruce Schneier on Certificate Authorities</title>
		<link>http://exchangeserverpro.com/bruce-schneier-on-certificate-authorities</link>
		<comments>http://exchangeserverpro.com/bruce-schneier-on-certificate-authorities#comments</comments>
		<pubDate>Tue, 30 Dec 2008 22:34:04 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Bruce Schneier]]></category>
		<category><![CDATA[PKI]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">http://www.capslockassassin.com/?p=524</guid>
		<description><![CDATA[&#8220;The CA system is broken, but it works because broken systems tend to be better for society, which needs fluidity in the face of complicated social constructs,&#8221; Schneier said. &#8220;Systems that are broken but work are very common in the real world: Front door locks are surprisingly pickable. Think of faxed signatures, for example. It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>&#8220;The CA system is broken, but it works because broken systems tend to be better for society, which needs fluidity in the face of complicated social constructs,&#8221; Schneier said. &#8220;Systems that are broken but work are very common in the real world: Front door locks are surprisingly pickable. Think of faxed signatures, for example. It&#8217;s a ridiculous form of authentication, yet people trust these documents all the time for very important stuff.&#8221;</p></blockquote>
<p><strong>Link:</strong> <a href="http://www.washingtonpost.com/wp-dyn/content/article/2008/12/30/AR2008123001056.html?wprss=rss_technology&amp;sid=ST2008123001136&amp;s_pos=">Researchers Hack Internet Security Infrastructure</a></p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/ssl-certificate-trust-errors-for-new-thawte-certificates" title="SSL Certificate Trust Errors for New Thawte Certificates">SSL Certificate Trust Errors for New Thawte Certificates</a></li><li><a href="http://exchangeserverpro.com/exchange-server-2010-and-the-benefits-of-commercial-ssl-certificates" title="Exchange Server 2010 and the Benefits of Commercial SSL Certificates">Exchange Server 2010 and the Benefits of Commercial SSL Certificates</a></li><li><a href="http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010" title="How to Configure a Relay Connector for Exchange Server 2010">How to Configure a Relay Connector for Exchange Server 2010</a></li><li><a href="http://exchangeserverpro.com/how-to-issue-a-san-certificate-to-exchange-server-2010-from-a-private-certificate-authority" title="How to Issue a SAN Certificate to Exchange Server 2010 from a Private Certificate Authority">How to Issue a SAN Certificate to Exchange Server 2010 from a Private Certificate Authority</a></li><li><a href="http://exchangeserverpro.com/exchange-server-2010-certificate-invalid-for-exchange-server-usage-error" title="Exchange Server 2010 &#8220;The Certificate is Invalid for Exchange Server Usage&#8221; Error">Exchange Server 2010 &#8220;The Certificate is Invalid for Exchange Server Usage&#8221; Error</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/bruce-schneier-on-certificate-authorities">Bruce Schneier on Certificate Authorities</a> is © 2008 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/bruce-schneier-on-certificate-authorities/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Well-designed security systems fail gracefully, SonicWALL does not</title>
		<link>http://exchangeserverpro.com/well-designed-security-systems-fail-gracefully-sonicwall-does-not</link>
		<comments>http://exchangeserverpro.com/well-designed-security-systems-fail-gracefully-sonicwall-does-not#comments</comments>
		<pubDate>Sat, 06 Dec 2008 11:31:00 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Firewalls]]></category>
		<category><![CDATA[ISA Server]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SonicWALL]]></category>

		<guid isPermaLink="false">http://www.capslockassassin.com/?p=498</guid>
		<description><![CDATA[To quote Bruce Schneier, &#8220;well-designed security systems fail gracefully&#8221;.  This means for example when the ISA firewall service fails it closes off network connectivity entirely (ie retains security) instead of opening your entire network up (ie decreases security). This week SonicWALL&#8217;s license servers suffered a glitch rendering thousands of customer units useless and leaving the [...]]]></description>
			<content:encoded><![CDATA[<p>To quote <a href="http://www.schneier.com/blog/archives/2006/03/airport_securit_2.html">Bruce Schneier</a>, &#8220;well-designed security systems fail gracefully&#8221;.  This means for example when the ISA firewall service fails it closes off network connectivity entirely (ie retains security) instead of opening your entire network up (ie decreases security).</p>
<p>This week SonicWALL&#8217;s license servers suffered a glitch rendering thousands of customer units useless and leaving the customers&#8217; networks open to attack.  The affected devices included firewall and email security appliances.</p>
<p>Security appliances are popular for no good reason at all.  The decision maker in many organisations falls for marketing hype that a &#8220;hardware firewall&#8221; is better than the alternative, ignoring the obvious fact that the appliance is ultimately no different to any other firewall that consists of a piece of hardware running secure OS and firewall features.</p>
<p>When purchasing a firewall or security product the decision should not be based on perception but rather <a href="http://secunia.com/">fact</a>.  I&#8217;m sure no SonicWALL customer ever imagined that the company could make an error on their license servers that would comprimise their security in such a manner.  Its worth noting that once your Microsoft ISA Server firewall is up and running it can never become &#8220;unlicensed&#8221; by an error at Microsoft.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/tom-shinder-on-hardware-firewalls" title="Tom Shinder on “hardware” firewalls">Tom Shinder on “hardware” firewalls</a></li><li><a href="http://exchangeserverpro.com/ssl-certificate-trust-errors-for-new-thawte-certificates" title="SSL Certificate Trust Errors for New Thawte Certificates">SSL Certificate Trust Errors for New Thawte Certificates</a></li><li><a href="http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010" title="How to Configure a Relay Connector for Exchange Server 2010">How to Configure a Relay Connector for Exchange Server 2010</a></li><li><a href="http://exchangeserverpro.com/causes-of-mapiexceptionnotauthorized-error-sending-to-public-folders" title="Causes of MapiExceptionNotAuthorized Error Sending to Public Folders">Causes of MapiExceptionNotAuthorized Error Sending to Public Folders</a></li><li><a href="http://exchangeserverpro.com/publish-incoming-smtp-to-the-exchange-server-2007-server-with-isa-server-2006" title="Publish incoming SMTP to the Exchange Server 2007 server with ISA Server 2006">Publish incoming SMTP to the Exchange Server 2007 server with ISA Server 2006</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/well-designed-security-systems-fail-gracefully-sonicwall-does-not">Well-designed security systems fail gracefully, SonicWALL does not</a> is © 2008 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/well-designed-security-systems-fail-gracefully-sonicwall-does-not/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Security Resources</title>
		<link>http://exchangeserverpro.com/sharepoint-security-resources</link>
		<comments>http://exchangeserverpro.com/sharepoint-security-resources#comments</comments>
		<pubDate>Mon, 17 Nov 2008 08:00:00 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[MOSS 2007]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://www.capslockassassin.com/2008/11/17/sharepoint-security-resources/</guid>
		<description><![CDATA[Microsoft provides two useful resources for MOSS security: Security for Office SharePoint Server 2007 (downloadable book) Office SharePoint Server Security Account Requirements (worksheet) Link: John Westworth’s blog on Technet Related posts:How to Configure a Relay Connector for Exchange Server 2010Causes of MapiExceptionNotAuthorized Error Sending to Public FoldersGFI LANGuard TutorialBruce Schneier on Certificate AuthoritiesWell-designed security systems [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft provides two useful resources for MOSS security:</p>
<ul>
<li><a href="http://technet.microsoft.com/en-us/library/cc262619.aspx" target="_blank">Security for Office SharePoint Server 2007</a> (downloadable book)</li>
<li><a href="http://office.microsoft.com/download/afile.aspx?AssetID=AM102339531033" target="_blank">Office SharePoint Server Security Account Requirements</a> (worksheet)</li>
</ul>
<p><strong>Link:</strong> <a href="http://blogs.technet.com/john_westworth/archive/2008/11/13/secure-sharepoint-deployments.aspx" target="_blank">John Westworth’s blog on Technet</a></p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010" title="How to Configure a Relay Connector for Exchange Server 2010">How to Configure a Relay Connector for Exchange Server 2010</a></li><li><a href="http://exchangeserverpro.com/causes-of-mapiexceptionnotauthorized-error-sending-to-public-folders" title="Causes of MapiExceptionNotAuthorized Error Sending to Public Folders">Causes of MapiExceptionNotAuthorized Error Sending to Public Folders</a></li><li><a href="http://exchangeserverpro.com/gfi-languard-tutorial" title="GFI LANGuard Tutorial">GFI LANGuard Tutorial</a></li><li><a href="http://exchangeserverpro.com/bruce-schneier-on-certificate-authorities" title="Bruce Schneier on Certificate Authorities">Bruce Schneier on Certificate Authorities</a></li><li><a href="http://exchangeserverpro.com/well-designed-security-systems-fail-gracefully-sonicwall-does-not" title="Well-designed security systems fail gracefully, SonicWALL does not">Well-designed security systems fail gracefully, SonicWALL does not</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/sharepoint-security-resources">SharePoint Security Resources</a> is © 2008 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/sharepoint-security-resources/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steve Riley on hypervisor attacks</title>
		<link>http://exchangeserverpro.com/steve-riley-on-hypervisor-attacks</link>
		<comments>http://exchangeserverpro.com/steve-riley-on-hypervisor-attacks#comments</comments>
		<pubDate>Fri, 05 Sep 2008 07:42:15 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.capslockassassin.com/2008/09/05/steve-riley-on-hypervisor-attacks/</guid>
		<description><![CDATA[&#160; You have to ask: is there malware on my system? You can be 100 per cent certain there is no malware that you can detect, but less than 100 per cent certain that there is no malware at all. Now, ladies and gentlemen, isn&#8217;t this true of every computer we already have? There is [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>&nbsp;</p>
<p>You have to ask: is there malware on my system? You can be 100 per cent certain there is no malware that you can detect, but less than 100 per cent certain that there is no malware at all. Now, ladies and gentlemen, isn&#8217;t this true of every computer we already have? There is no difference just because it&#8217;s virtualisation.</p>
</blockquote>
<p><a href="http://www.zdnet.com.au/news/security/soa/Microsoft-refutes-hypervisor-attack-claim/0,130061744,339291802,00.htm" target="_blank">Read the entire article at ZDNet</a>.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/exchange-server-2007-is-now-supported-for-hardware-virtualisation" title="Exchange Server 2007 is now supported for hardware virtualisation">Exchange Server 2007 is now supported for hardware virtualisation</a></li><li><a href="http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010" title="How to Configure a Relay Connector for Exchange Server 2010">How to Configure a Relay Connector for Exchange Server 2010</a></li><li><a href="http://exchangeserverpro.com/causes-of-mapiexceptionnotauthorized-error-sending-to-public-folders" title="Causes of MapiExceptionNotAuthorized Error Sending to Public Folders">Causes of MapiExceptionNotAuthorized Error Sending to Public Folders</a></li><li><a href="http://exchangeserverpro.com/the-simplest-improvement-to-the-ms-help-and-support-site" title="The Simplest Improvement to the MS Help and Support Site">The Simplest Improvement to the MS Help and Support Site</a></li><li><a href="http://exchangeserverpro.com/security-descriptor-error-during-exchange-server-2007-schema-extension" title="Security descriptor error during Exchange Server 2007 schema extension">Security descriptor error during Exchange Server 2007 schema extension</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/steve-riley-on-hypervisor-attacks">Steve Riley on hypervisor attacks</a> is © 2008 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/steve-riley-on-hypervisor-attacks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>White Paper: Configuring Virtual Organizations and Address List Segregation in Exchange 2007</title>
		<link>http://exchangeserverpro.com/white-paper-configuring-virtual-organizations-and-address-list-segregation-in-exchange-2007</link>
		<comments>http://exchangeserverpro.com/white-paper-configuring-virtual-organizations-and-address-list-segregation-in-exchange-2007#comments</comments>
		<pubDate>Fri, 08 Feb 2008 03:15:42 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.capslockassassin.com/2008/02/08/white-paper-configuring-virtual-organizations-and-address-list-segregation-in-exchange-2007/</guid>
		<description><![CDATA[Microsoft has released their own white paper containing guidance on configuring Exchange 2007 for Address List separation.  This is something that was pretty easy in Exchange 2003, but suddenly made a lot more complicated and less obvious in Exchange 2007.  A bunch of home brew solutions came about some time after Exchange 2007 was released [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft has <a target="_blank" href="http://technet.microsoft.com/en-us/library/bb936719.aspx" title="White Paper: Configuring Virtual Organizations and Address List Segregation in Exchange 2007">released their own white paper </a>containing guidance on configuring Exchange 2007 for Address List separation.  This is something that was pretty easy in Exchange 2003, but suddenly made a lot more complicated and less obvious in Exchange 2007.  A bunch of home brew solutions came about some time after Exchange 2007 was released and now Microsoft&#8217;s white paper has the prescriptive guidance (which is basically the same as some of the better home brews out there).</p>
<h3>Why segregate Address Lists?</h3>
<p>Some larger organisations look for segregated Address Lists as a means of improving the relevancy of the Address List objects that users are seeing in their Outlook address book.  Why see all 20,000 global employees when really you only need to see the 1000 employees and distribution lists in your country (especially since smart admins lock down distribution lists so people can&#8217;t send rubbish emails to &#8220;All Staff &#8211; Global&#8221; for example).  Here is Microsoft&#8217;s word on the matter:</p>
<blockquote><p>Address list segregation is a process whereby administrators can segment their users into separate groups and implement security policies so that groups of users can see only their specific address list. The ability to restrict access to address lists in this manner may be used as part of the toolset for helping companies meet their internal security requirements and as part of a regulatory compliance strategy for meeting the requirements dictated by the Health Insurance Portability and Accountability Act (HIPPA), and the Sarbanes-Oxley Act.</p>
<p>It is useful to illustrate how address list segregation can be implemented by way of examples. Suppose your company, Contoso, purchases the company Fabrikam. The management team determines that they want to manage Fabrikam&#8217;s entire IT infrastructure, but they want the employees of Contoso and Fabrikam to be completely segregated so that they are only able to see other users and resources from their respective companies. By implementing address list segregation, Contoso administrators can meet this requirement for all Exchange Server 2007 functionality.</p></blockquote>
<p>Another scenario is the &#8220;Virtual Organisations&#8221; mentioned in the White Paper title, which I think is code for hosted Exchange providers.  Last year I worked on deploying a hosted environment that included Exchange Server 2007 and that is how I encountered all of the difficulties with configuring Exchange 2007 in this fashion (and came across the home brew solutions).  Microsoft calls it &#8220;Virtual Organisations&#8221; but I think that is because they are not recommending you use this solution for hosted Exchange services.</p>
<blockquote><p>It is also important to understand that attempting to configure Exchange 2007 as a commercial &#8220;hosting&#8221; solution is not recommended.</p>
<p>The configuration described in this document is complex in nature, and while it can be effective in smaller environments or in limited scope, it can become very challenging to manage such a configuration as the scope of the deployment increases if automation steps are not implemented.</p></blockquote>
<p>It is conceivable that an organisation that has developed suitable account management scripts in their hosted environment could solve this scalability issue.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/causes-of-mapiexceptionnotauthorized-error-sending-to-public-folders" title="Causes of MapiExceptionNotAuthorized Error Sending to Public Folders">Causes of MapiExceptionNotAuthorized Error Sending to Public Folders</a></li><li><a href="http://exchangeserverpro.com/exchange-server-2007-sp1-disabled-exchange-anti-spam-updates" title="Exchange Server 2007 SP1 disables Exchange Anti-spam updates">Exchange Server 2007 SP1 disables Exchange Anti-spam updates</a></li><li><a href="http://exchangeserverpro.com/restricting-outbound-email-with-exchange-server-2007-transport-rules" title="Restricting outbound email with Exchange Server 2007 Transport Rules">Restricting outbound email with Exchange Server 2007 Transport Rules</a></li><li><a href="http://exchangeserverpro.com/exchange-server-2010-and-the-benefits-of-commercial-ssl-certificates" title="Exchange Server 2010 and the Benefits of Commercial SSL Certificates">Exchange Server 2010 and the Benefits of Commercial SSL Certificates</a></li><li><a href="http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010" title="How to Configure a Relay Connector for Exchange Server 2010">How to Configure a Relay Connector for Exchange Server 2010</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/white-paper-configuring-virtual-organizations-and-address-list-segregation-in-exchange-2007">White Paper: Configuring Virtual Organizations and Address List Segregation in Exchange 2007</a> is © 2008 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/white-paper-configuring-virtual-organizations-and-address-list-segregation-in-exchange-2007/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange Server 2007 SP1 disables Exchange Anti-spam updates</title>
		<link>http://exchangeserverpro.com/exchange-server-2007-sp1-disabled-exchange-anti-spam-updates</link>
		<comments>http://exchangeserverpro.com/exchange-server-2007-sp1-disabled-exchange-anti-spam-updates#comments</comments>
		<pubDate>Tue, 05 Feb 2008 21:13:50 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Anti-Spam]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Service Packs]]></category>

		<guid isPermaLink="false">http://www.capslockassassin.com/2008/02/06/exchange-server-2007-sp1-disabled-exchange-anti-spam-updates/</guid>
		<description><![CDATA[Here is the anti-spam configuration on an Exchange Server 2007 RTM server: [PS] C:&#62;Get-AntispamUpdates UpdateMode : Automatic LatestContentFilterVersion : 3.3.4604.600 SpamSignatureUpdatesEnabled : True LatestSpamSignatureVersion : 3.3.4604.600 IPReputationUpdatesEnabled : True LatestIPReputationVersion : 3.3.4604.001 MicrosoftUpdate : NotConfigured And here is the same Exchange Server 2007 server immediately after upgrading to Service Pack 1: [PS] C:&#62;Get-AntispamUpdates UpdateMode : [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the anti-spam configuration on an Exchange Server 2007 RTM server:</p>
<pre>
[PS] C:&gt;Get-AntispamUpdates   

UpdateMode                  : Automatic
LatestContentFilterVersion  : 3.3.4604.600
SpamSignatureUpdatesEnabled : True
LatestSpamSignatureVersion  : 3.3.4604.600
IPReputationUpdatesEnabled  : True
LatestIPReputationVersion   : 3.3.4604.001
MicrosoftUpdate             : NotConfigured</pre>
<p>And here is the same Exchange Server 2007 server immediately after upgrading to Service Pack 1:</p>
<pre>
[PS] C:&gt;Get-AntispamUpdates   

UpdateMode                  : Disabled
LatestContentFilterVersion  : 3.3.4604.600
SpamSignatureUpdatesEnabled : False
LatestSpamSignatureVersion  : 3.3.4604.600
IPReputationUpdatesEnabled  : False
LatestIPReputationVersion   : 3.3.4604.001
MicrosoftUpdate             : NotConfigured</pre>
<p>The Service Pack 1 installation disabled the Anti-spam engine updates. This stung me on a production system that I upgraded shortly after the SP1 release. Eventually someone in the office mentioned the ever increasing volume of spam emails to me and I subsequently made this discovery.</p>
<p>Sadly the <a href="http://download.microsoft.com/download/5/e/6/5e672458-592a-44a2-b489-11cec19d3c82/RelNotes.htm">Release Notes</a> do not seem to include this issue.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/understanding-the-exchange-server-spam-confidence-level" title="Understanding the Exchange Server Spam Confidence Level">Understanding the Exchange Server Spam Confidence Level</a></li><li><a href="http://exchangeserverpro.com/causes-of-mapiexceptionnotauthorized-error-sending-to-public-folders" title="Causes of MapiExceptionNotAuthorized Error Sending to Public Folders">Causes of MapiExceptionNotAuthorized Error Sending to Public Folders</a></li><li><a href="http://exchangeserverpro.com/review-of-gfi-mailessentials" title="Review of GFI MailEssentials">Review of GFI MailEssentials</a></li><li><a href="http://exchangeserverpro.com/backscatter-spam-and-exchange-server-2007" title="Backscatter Spam and Exchange Server 2007">Backscatter Spam and Exchange Server 2007</a></li><li><a href="http://exchangeserverpro.com/articles-about-exchange-server-and-spam-prevention" title="Articles about Exchange Server and spam prevention">Articles about Exchange Server and spam prevention</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/exchange-server-2007-sp1-disabled-exchange-anti-spam-updates">Exchange Server 2007 SP1 disables Exchange Anti-spam updates</a> is © 2008 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/exchange-server-2007-sp1-disabled-exchange-anti-spam-updates/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Restricting outbound email with Exchange Server 2007 Transport Rules</title>
		<link>http://exchangeserverpro.com/restricting-outbound-email-with-exchange-server-2007-transport-rules</link>
		<comments>http://exchangeserverpro.com/restricting-outbound-email-with-exchange-server-2007-transport-rules#comments</comments>
		<pubDate>Tue, 05 Feb 2008 09:08:50 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Hub Transport]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.capslockassassin.com/2008/02/05/restricting-outbound-email-with-exchange-server-2007-transport-rules/</guid>
		<description><![CDATA[In prior versions of Exchange an organisation that wished to restrict who could send outbound internet emails could apply the restriction on an SMTP connector.  In this example emails sent to the * address space are rejected by default unless sent by a group listed in the &#8220;Accept messages from:&#8221; list, for example a group [...]]]></description>
			<content:encoded><![CDATA[<p>In prior versions of Exchange an organisation that wished to restrict who could send outbound internet emails could apply the restriction on an SMTP connector.  In this example emails sent to the * address space are rejected by default unless sent by a group listed in the &#8220;Accept messages from:&#8221; list, for example a group named &#8220;Internet Email Users&#8221;.</p>
<p><a href="http://www.exchangeserverpro.com/wp-content/uploads/2008/02/exchange2007transportrule000.png" title="Exchange 2003 Server outbound mail restrictions"><img src="http://www.exchangeserverpro.com/wp-content/uploads/2008/02/exchange2007transportrule000.png" alt="Exchange 2003 Server outbound mail restrictions" /></a></p>
<p>Exchange Server 2007 uses <a target="_blank" href="http://technet.microsoft.com/en-us/library/aa998662(EXCHG.80).aspx" title="Send Connectors - Microsoft Technet">Send Connectors </a>for configuring where outbound internet email is delivered, much like an SMTP connector in Exchange 2003 Server.  However, the Send Connector is not the place to apply restrictions on who can send outbound internet email.  These restrictions are instead applied with Transport Rules.</p>
<p>If you are new to the concept of Transport Rules you should read <a target="_blank" href="http://technet.microsoft.com/en-us/library/bb124703(EXCHG.80).aspx" title="Understanding Transport Rules - Microsoft Technet">Understanding How Transport Rules Are Applied In An Exchange Server 2007 Organisation</a>.</p>
<p>To configure the restrictions you create a Transport Rule that follows the same &#8220;<em>Deny by default, except if from these groups</em>&#8221; approach as Exchange 2003 Server.</p>
<h3>Configuring a Transport Rule to Restrict Outbound Internet Email</h3>
<ol>
<li>Create a distribution group through your Exchange Management Console, and give it a descriptive name such as &#8221;Internet Email Users&#8221;.</li>
<li>In the EMC go to Organization Configuration -&gt; Hub Transport, and click on the Transport Rules tab.</li>
<li>Create a new Transport Rule, name it something like &#8220;Restrict Internet Email&#8221;<br />
<a href="http://www.exchangeserverpro.com/wp-content/uploads/2008/02/exchange2007transportrule0011.png" title="exchange2007transportrule0011.png"><img src="http://www.exchangeserverpro.com/wp-content/uploads/2008/02/exchange2007transportrule0011.png" alt="exchange2007transportrule0011.png" /></a><a href="http://www.exchangeserverpro.com/wp-content/uploads/2008/02/exchange2007transportrule001.png" title="exchange2007transportrule001.png"></a></li>
<li>Select &#8220;Sent to users Outside the organisation&#8221; as the first condition.<br />
<a href="http://www.exchangeserverpro.com/wp-content/uploads/2008/02/exchange2007transportrule002.png" title="exchange2007transportrule002.png"><img src="http://www.exchangeserverpro.com/wp-content/uploads/2008/02/exchange2007transportrule002.png" alt="exchange2007transportrule002.png" /></a></li>
<li>Select &#8220;Send bounce message&#8230;&#8221; as the second condition, and configure a bounce message that will be informative enough for your end users.<br />
<a href="http://www.exchangeserverpro.com/wp-content/uploads/2008/02/exchange2007transportrule003.png" title="exchange2007transportrule003.png"><img src="http://www.exchangeserverpro.com/wp-content/uploads/2008/02/exchange2007transportrule003.png" alt="exchange2007transportrule003.png" /></a></li>
<li>Select &#8220;Except when the message is from member of distribution list&#8221; as the exception criteria, and add the Internet Email Users group that was created earlier.<br />
<a href="http://www.exchangeserverpro.com/wp-content/uploads/2008/02/exchange2007transportrule004.png" title="exchange2007transportrule004.png"><img src="http://www.exchangeserverpro.com/wp-content/uploads/2008/02/exchange2007transportrule004.png" alt="exchange2007transportrule004.png" /></a></li>
<li>Complete the Transport Rule wizard so that the rule is created in the Exchange Organization.</li>
</ol>
<p>It may take a short time for the rule to replicate to all Hub Transport servers throughout your Active Directory sites.  Because the rule is applied by Hub Transport servers, messages do not have to traverse the network all the way to the last outbound hop before being rejected by this rule.  Instead they are rejected by the Hub Transport server within the Active Directory site in which the user&#8217;s Mailbox Server is located.</p>
<p>The Hub Transport server caches recipient and distribution list information for four hours, so if you have a rule such as this in place and add new users to the Internet Email Users group, those users may not be able to start sending outbound internet email until the recipient cache has refreshed on the Hub Transport server.  Where this is not acceptable you can restart the &#8220;Microsoft Exchange Transport&#8221; service on each Hub Transport server which will initiate a cache refresh.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010" title="How to Configure a Relay Connector for Exchange Server 2010">How to Configure a Relay Connector for Exchange Server 2010</a></li><li><a href="http://exchangeserverpro.com/causes-of-mapiexceptionnotauthorized-error-sending-to-public-folders" title="Causes of MapiExceptionNotAuthorized Error Sending to Public Folders">Causes of MapiExceptionNotAuthorized Error Sending to Public Folders</a></li><li><a href="http://exchangeserverpro.com/how-to-share-an-email-domain-between-two-mail-systems" title="How to Share an Email Domain Between Two Mail Systems">How to Share an Email Domain Between Two Mail Systems</a></li><li><a href="http://exchangeserverpro.com/block-users-sending-to-specific-domains-with-exchange-server-2007" title="Block Users Sending to Specific Domains with Exchange Server 2007">Block Users Sending to Specific Domains with Exchange Server 2007</a></li><li><a href="http://exchangeserverpro.com/route-outbound-email-through-the-exchange-server-2007-hub-transport-server" title="Route outbound email through the Exchange Server 2007 Hub Transport server">Route outbound email through the Exchange Server 2007 Hub Transport server</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/restricting-outbound-email-with-exchange-server-2007-transport-rules">Restricting outbound email with Exchange Server 2007 Transport Rules</a> is © 2008 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/restricting-outbound-email-with-exchange-server-2007-transport-rules/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
