<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Using windows live as SMTP relay server</title>
	<atom:link href="http://www.ksingla.net/2010/01/using-windows-live-as-smtp-relay-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ksingla.net/2010/01/using-windows-live-as-smtp-relay-server/</link>
	<description>Windows, IIS, PHP and more</description>
	<lastBuildDate>Wed, 30 Nov 2011 21:09:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Kanwaljeet Singla</title>
		<link>http://www.ksingla.net/2010/01/using-windows-live-as-smtp-relay-server/comment-page-1/#comment-1255</link>
		<dc:creator>Kanwaljeet Singla</dc:creator>
		<pubDate>Mon, 20 Dec 2010 12:22:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.ksingla.net/?p=172#comment-1255</guid>
		<description>Can you try on port 587 instead? I saw some other posts on internet which said 587 works but 25 does not.</description>
		<content:encoded><![CDATA[<p>Can you try on port 587 instead? I saw some other posts on internet which said 587 works but 25 does not.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bernard Lessard</title>
		<link>http://www.ksingla.net/2010/01/using-windows-live-as-smtp-relay-server/comment-page-1/#comment-1233</link>
		<dc:creator>Bernard Lessard</dc:creator>
		<pubDate>Tue, 30 Nov 2010 05:17:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.ksingla.net/?p=172#comment-1233</guid>
		<description>Hi,
I&#039;m trying to send a email with this in C# but it does not work.
Anybody can tell me what is wrong?
Thanks
(it is only a test)
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; MailMessage mailMessage = new MailMessage(&quot;bernybon@hotmail.com&quot;, &quot;bernybon@hotmail.com&quot;);
	&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; mailMessage.Subject = &quot;Your BabyfootClub username and password.&quot;;
	&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; mailMessage.Body = &quot;Your username is: &quot; + sUsername + &quot;\r\n&quot;;
	&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; mailMessage.Body += &quot;Your password is: &quot; + sPasswrod + &quot;\r\n&quot;;
	
	&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; SmtpClient smtpClient = new SmtpClient(&quot;smtp.live.com&quot;, 25); // the port used by smtl.live.com is 25 not 587
	&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; smtpClient.EnableSsl = true;
	&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; smtpClient.UseDefaultCredentials = false;
	&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; smtpClient.Credentials = new System.Net.NetworkCredential(&quot;bernybon@hotmail.com&quot;, &quot;mypassword&quot;, &quot;www.hotmail.com&quot;);
	&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; smtpClient.DeliveryMethod = SmtpDeliveryMethod.Network;
	&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 
	&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; smtpClient.Send(mailMessage);</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I&#039;m trying to send a email with this in C# but it does not work.<br />
Anybody can tell me what is wrong?<br />
Thanks<br />
(it is only a test)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MailMessage mailMessage = new MailMessage(&quot;bernybon@hotmail.com&quot;, &quot;bernybon@hotmail.com&quot;);<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mailMessage.Subject = &quot;Your BabyfootClub username and password.&quot;;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mailMessage.Body = &quot;Your username is: &quot; + sUsername + &quot;\r\n&quot;;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mailMessage.Body += &quot;Your password is: &quot; + sPasswrod + &quot;\r\n&quot;;</p>
<p>	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SmtpClient smtpClient = new SmtpClient(&quot;smtp.live.com&quot;, 25); // the port used by smtl.live.com is 25 not 587<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; smtpClient.EnableSsl = true;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; smtpClient.UseDefaultCredentials = false;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; smtpClient.Credentials = new System.Net.NetworkCredential(&quot;bernybon@hotmail.com&quot;, &quot;mypassword&quot;, &quot;www.hotmail.com&quot;);<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; smtpClient.DeliveryMethod = SmtpDeliveryMethod.Network;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; smtpClient.Send(mailMessage);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PradeepS</title>
		<link>http://www.ksingla.net/2010/01/using-windows-live-as-smtp-relay-server/comment-page-1/#comment-363</link>
		<dc:creator>PradeepS</dc:creator>
		<pubDate>Fri, 09 Apr 2010 18:28:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.ksingla.net/?p=172#comment-363</guid>
		<description>Hi,
I dont understand. Basically the IP that you get from your provider stays unless you do not disconnect or switch off your router, right?&#160;
So, I am not sure if the ISP can change the IP of a client in this way, even if it does, don&#039;t you get disconnected ?
Please clarify me if I am wrong.&#160;
And by the way I got your site address from the contacts mentioned in the `Making PHP faster on IIS` webcast.
&#160;
Pradeep.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I dont understand. Basically the IP that you get from your provider stays unless you do not disconnect or switch off your router, right?&nbsp;<br />
So, I am not sure if the ISP can change the IP of a client in this way, even if it does, don&#39;t you get disconnected ?<br />
Please clarify me if I am wrong.&nbsp;<br />
And by the way I got your site address from the contacts mentioned in the `Making PHP faster on IIS` webcast.<br />
&nbsp;<br />
Pradeep.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

