<?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>JasonSamuel.com &#187; Exchange 2010</title>
	<atom:link href="http://www.jasonsamuel.com/category/exchange-2010/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jasonsamuel.com</link>
	<description>Cool stuff I see in the IT world</description>
	<lastBuildDate>Sat, 17 Jul 2010 21:35:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Send email via Telnet to test an Exchange server</title>
		<link>http://www.jasonsamuel.com/2009/12/17/send-email-via-telnet-to-test-an-exchange-server/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=send-email-via-telnet-to-test-an-exchange-server</link>
		<comments>http://www.jasonsamuel.com/2009/12/17/send-email-via-telnet-to-test-an-exchange-server/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 16:45:11 +0000</pubDate>
		<dc:creator>Jason Samuel</dc:creator>
				<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[SBS 2003]]></category>
		<category><![CDATA[SBS 2008]]></category>
		<category><![CDATA[exchange server]]></category>
		<category><![CDATA[MTA]]></category>
		<category><![CDATA[SMTP]]></category>
		<category><![CDATA[telnet]]></category>

		<guid isPermaLink="false">http://www.jasonsamuel.com/?p=293</guid>
		<description><![CDATA[A simple way to test if your MTA (mail transfer agent such as Exchange) is accepting email is to build the message by hand and watch the response codes from the server.  You can run this from the server console from a command prompt or remotely if you have the SMTP port to the server [...]<p><a href="http://www.jasonsamuel.com/2009/12/17/send-email-via-telnet-to-test-an-exchange-server/">Send email via Telnet to test an Exchange server</a> is a post from: <a href="http://www.jasonsamuel.com">JasonSamuel.com</a></p>



More of my posts you might like:<ol><li><a href='http://www.jasonsamuel.com/2008/12/04/exchange-2003-spam-filtering-made-easy/' rel='bookmark' title='Permanent Link: Exchange 2003 spam filtering made easy'>Exchange 2003 spam filtering made easy</a></li>
<li><a href='http://www.jasonsamuel.com/2009/03/27/outlook-passwords-and-rpc-over-http/' rel='bookmark' title='Permanent Link: Outlook passwords and RPC over HTTP'>Outlook passwords and RPC over HTTP</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A simple way to test if your MTA (mail transfer agent such as Exchange) is accepting email is to build the message by hand and watch the response codes from the server.  You can run this from the server console from a command prompt or remotely if you have the SMTP port to the server open.  Remember, once you are in the telnet session, don&#8217;t use backspace if you misspell something!  You&#8217;ll get an unrecognized command error if you do.  Just press enter and retype your command correctly if you do misspell something.</p>
<blockquote><p>telnet localhost 25</p></blockquote>
<p>This will open a telnet window to the server on SMTP port 25 and the server in return will send a 220 response code, the FQDN (Fully Qualified Domain Name), mail server version, and typically a time stamp as well.  Next you type:</p>
<blockquote><p>helo</p></blockquote>
<p>The mail server will respond with 250 response and it&#8217;s FQDN and say &#8220;Hello&#8221;.  You can also use:</p>
<blockquote><p>ehlo</p></blockquote>
<p>There is no difference using the commands except that EHLO returns info about the mail server&#8217;s capabilities along with the 250 response code such as the maximum SIZE of a messsage for example.  It&#8217;s useful to see exactly what your mail server is going to accept from a client.  EHLO is the more recent command by the way.  Pretty much all MTAs out there are going to accept either command nowadays.</p>
<p>This means the mail server is ready to accept more commands.  Now it&#8217;s time to begin composing your email:</p>
<blockquote><p>mail from: <a href="mailto:joeblow@gmail.com">joeblow@gmail.com</a></p></blockquote>
<p>You should get a 250 response code and say the Send is OK.  Now type who you are sending it to:</p>
<blockquote><p>rcpt to: <a href="mailto:joeblowsfriend@gmail.com">joeblowsfriend@gmail.com</a></p></blockquote>
<p>You will get a 250 response for the email address.  You can add more recipients by just typing additional lines like above.  Next it&#8217;s time to build the body of the message.  Type:</p>
<blockquote><p>data</p></blockquote>
<p>and you will get a 354 response code saying you can begin input.  First type a subject line for your message:</p>
<blockquote><p>subject: Test email</p></blockquote>
<p>Remember, type this on the very first line and then press &lt;Enter&gt; twice.  Now you can start typing your message body.  Once you are done with your message body, press &lt;Enter&gt; to start a new line and type nothing on this line except for a period.  Then press &lt;Enter&gt; again and you will exit out of the message body and immediately submit the email to the MTA&#8217;s queue for delivery.  You should get the test email within seconds if your mail server is working properly!  Make sure to check your Junk E-mail folder just in case your mail server marks your test email as spam.  To exit your telnet session, just type:</p>
<blockquote><p>quit</p></blockquote>
<p>and press &lt;Enter&gt; and you&#8217;re done.  Simple, right? <img src='http://www.jasonsamuel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img class="alignnone size-full wp-image-300" title="send-email-through-telnet" src="http://www.jasonsamuel.com/wp-content/uploads/2009/12/send-email-through-telnet.gif" alt="send-email-through-telnet" width="669" height="331" /></p>
<p><a href="http://www.jasonsamuel.com/2009/12/17/send-email-via-telnet-to-test-an-exchange-server/">Send email via Telnet to test an Exchange server</a> is a post from: <a href="http://www.jasonsamuel.com">JasonSamuel.com</a></p>


<p>More of my posts you might like:<ol><li><a href='http://www.jasonsamuel.com/2008/12/04/exchange-2003-spam-filtering-made-easy/' rel='bookmark' title='Permanent Link: Exchange 2003 spam filtering made easy'>Exchange 2003 spam filtering made easy</a></li>
<li><a href='http://www.jasonsamuel.com/2009/03/27/outlook-passwords-and-rpc-over-http/' rel='bookmark' title='Permanent Link: Outlook passwords and RPC over HTTP'>Outlook passwords and RPC over HTTP</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.jasonsamuel.com/2009/12/17/send-email-via-telnet-to-test-an-exchange-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s new and actually useful in Server 2008 R2?</title>
		<link>http://www.jasonsamuel.com/2009/11/13/whats-new-and-actually-useful-in-server-2008-r2/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=whats-new-and-actually-useful-in-server-2008-r2</link>
		<comments>http://www.jasonsamuel.com/2009/11/13/whats-new-and-actually-useful-in-server-2008-r2/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 22:29:23 +0000</pubDate>
		<dc:creator>Jason Samuel</dc:creator>
				<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[.NET 2.0]]></category>
		<category><![CDATA[.NET 3.5]]></category>
		<category><![CDATA[active directory]]></category>
		<category><![CDATA[ADAC]]></category>
		<category><![CDATA[group policy]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.jasonsamuel.com/?p=231</guid>
		<description><![CDATA[I was lucky enough to attend the Microsoft New Efficiency event for Windows Server 2008 R2 on Monday.  It was a limited capacity technical briefing aimed at IT Professionals.  They also had an Exchange 2010 and Windows 7 track at the same time but I chose to attend the Server 2008 R2 track.  It was [...]<p><a href="http://www.jasonsamuel.com/2009/11/13/whats-new-and-actually-useful-in-server-2008-r2/">What&#8217;s new and actually useful in Server 2008 R2?</a> is a post from: <a href="http://www.jasonsamuel.com">JasonSamuel.com</a></p>



More of my posts you might like:<ol><li><a href='http://www.jasonsamuel.com/2009/07/22/how-to-install-and-configure-snmp-via-command-line-on-your-servers/' rel='bookmark' title='Permanent Link: How to install and configure SNMP via command line on your servers'>How to install and configure SNMP via command line on your servers</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-268" title="newefficiency" src="http://www.jasonsamuel.com/wp-content/uploads/2009/11/newefficiency.gif" alt="newefficiency" width="600" height="46" /></p>
<p>I was lucky enough to attend the Microsoft New Efficiency event for Windows Server 2008 R2 on Monday.  It was a limited capacity technical briefing aimed at IT Professionals.  They also had an Exchange 2010 and Windows 7 track at the same time but I chose to attend the Server 2008 R2 track.  It was divided into 4 sections and was hosted by Kevin Saye (<a href="mailto:kevin.saye@microsoft.com">kevin.saye@microsoft.com</a>) who is the Pre-sales technical support specialist for Windows Server in this region.  I&#8217;ve heard him speak at events before but never had a chance to actually do a QA session with him till now.</p>
<p>So, on to the new stuff in Server 2008 R2 that I found interesting!  This is not a comprehensive list by an means, just the stuff I thought was very useful.  I&#8217;ll go over each in detail in the coming days and how it will fit into your enterprise environment.</p>
<p>-Active Directory Administrative Center (ADAC)<br />
-Managed Service accounts<br />
-Active Directory Recycle Bin<br />
-Graphical PowerShell<br />
-Turning off CPU cores to conserve power<br />
-Group policy can now execute Powershell scritpts<br />
-Group policy granularity through item level targeting<br />
-FCI to classify data and take actions on it<br />
-.NET now runs on Server Core installs<br />
-Remote Desktop Services now has multi-monitor support (up to 8 monitors), bi-directional audio (useful for VOIP), and enhanced multimedia support using your local graphics card instead of &#8220;screen painting&#8221; as it was before.<br />
-DirectAccess with Windows 7 and Server 2008 R2 &#8211; Extends the network to include remote users instead of just a remote user dialing in via VPN.  Uses the Teredo protocol.  Was able to access the Microsoft intranet site (<a href="http://msw/">http://msw</a>) without ever having to dial in and from behind a corporate firewall.  It uses IPsec and it only works with Windows 7 machines which are on the domain. <br />
-Branch Cache &#8211; Caches only the requested data unlike DFS.  Means a lot less space is required unlike DFS which is an exact duplicate.</p>
<p><strong>THE FUTURE<br />
</strong>Kevin says expect to see more componentization in MS products.  Expect to moved vhds around on servers like OS, Apps, &amp; Data vhds interchangeably on your VMs.</p>
<p><a href="http://www.jasonsamuel.com/2009/11/13/whats-new-and-actually-useful-in-server-2008-r2/">What&#8217;s new and actually useful in Server 2008 R2?</a> is a post from: <a href="http://www.jasonsamuel.com">JasonSamuel.com</a></p>


<p>More of my posts you might like:<ol><li><a href='http://www.jasonsamuel.com/2009/07/22/how-to-install-and-configure-snmp-via-command-line-on-your-servers/' rel='bookmark' title='Permanent Link: How to install and configure SNMP via command line on your servers'>How to install and configure SNMP via command line on your servers</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.jasonsamuel.com/2009/11/13/whats-new-and-actually-useful-in-server-2008-r2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/


Served from: www.jasonsamuel.com @ 2010-07-31 20:01:47 -->