<?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/"
	>

<channel>
	<title>Diary</title>
	<atom:link href="http://blog.objectpattern.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.objectpattern.net</link>
	<description>thoughtlets, notes, bookmarks,...</description>
	<pubDate>Thu, 20 May 2010 05:58:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Windows authentication and run as</title>
		<link>http://blog.objectpattern.net/?p=73</link>
		<comments>http://blog.objectpattern.net/?p=73#comments</comments>
		<pubDate>Thu, 20 May 2010 05:58:35 +0000</pubDate>
		<dc:creator>Himanshu</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.objectpattern.net/?p=73</guid>
		<description><![CDATA[We have multiple DCs in our organization for a reason, and we need to access SQL Server hosted on different DC several times. To login into SQL Server using windows authentication I use following:
C:\Windows\System32\runas.exe /netonly /user:&#60;different domain name&#62;\&#60;username of different domain name”&#62; &#34;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\Ssms.exe&#34;
]]></description>
			<content:encoded><![CDATA[<p>We have multiple DCs in our organization for a reason, and we need to access SQL Server hosted on different DC several times. To login into SQL Server using windows authentication I use following:</p>
<p>C:\Windows\System32\runas.exe /netonly /user:&lt;different domain name&gt;\&lt;username of different domain name”&gt; &quot;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\Ssms.exe&quot;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectpattern.net/?feed=rss2&amp;p=73</wfw:commentRss>
		</item>
		<item>
		<title>Cisco VPN throwing error as “Failed to enable Virtual Adapter”</title>
		<link>http://blog.objectpattern.net/?p=66</link>
		<comments>http://blog.objectpattern.net/?p=66#comments</comments>
		<pubDate>Wed, 24 Feb 2010 10:50:38 +0000</pubDate>
		<dc:creator>Himanshu</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.objectpattern.net/?p=66</guid>
		<description><![CDATA[In Windows 7, I have see this error many times when trying to connect using Cisco VPN Software.

I could resolve the issue by

Enable Cisco Network adapter
Diagnose the adapter by option given in context menu
Disable adapter
Try connecting to the network again

Update: If above do not solve the problem and surprisingly it wouldn&#8217;t sometime! Restart the machine.
]]></description>
			<content:encoded><![CDATA[<p>In Windows 7, I have see this error many times when trying to connect using Cisco VPN Software.</p>
<p><a href="http://blog.objectpattern.net/wp-content/uploads/2010/02/failedtoenablevirtualadapter.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="failed to enable virtual adapter" src="http://blog.objectpattern.net/wp-content/uploads/2010/02/failedtoenablevirtualadapter-thumb.png" border="0" alt="failed to enable virtual adapter" width="591" height="197" /></a></p>
<p>I could resolve the issue by</p>
<ol>
<li>Enable Cisco Network adapter</li>
<li>Diagnose the adapter by option given in context menu</li>
<li>Disable adapter</li>
<li>Try connecting to the network again</li>
</ol>
<p>Update: If above do not solve the problem and surprisingly it wouldn&#8217;t sometime! Restart the machine.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectpattern.net/?feed=rss2&amp;p=66</wfw:commentRss>
		</item>
		<item>
		<title>Linux, setting system wide variable</title>
		<link>http://blog.objectpattern.net/?p=63</link>
		<comments>http://blog.objectpattern.net/?p=63#comments</comments>
		<pubDate>Fri, 08 Jan 2010 12:11:01 +0000</pubDate>
		<dc:creator>Himanshu</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.objectpattern.net/?p=63</guid>
		<description><![CDATA[&#160;
my-box:~$ sudo su -
Password:
root:~# cat &#62;&#62; /etc/profile
JAVA_HOME=/usr/lib/jvm/java-6-sun
export JAVA_HOME
root:~# 
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode [...]]]></description>
			<content:encoded><![CDATA[<pre class="csharpcode">&nbsp;</pre>
<pre class="csharpcode">my-box:~$ sudo su -
Password:
root:~<span class="rem"># cat &gt;&gt; /etc/profile</span>
JAVA_HOME=/usr/lib/jvm/java-6-sun
export JAVA_HOME
root:~# </pre>
<style type="text/css">.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }
</style>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectpattern.net/?feed=rss2&amp;p=63</wfw:commentRss>
		</item>
		<item>
		<title>refcardz.dzone</title>
		<link>http://blog.objectpattern.net/?p=61</link>
		<comments>http://blog.objectpattern.net/?p=61#comments</comments>
		<pubDate>Fri, 01 Jan 2010 17:20:33 +0000</pubDate>
		<dc:creator>Himanshu</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.objectpattern.net/?p=61</guid>
		<description><![CDATA[ http://refcardz.dzone.com/
I  like some of the cards, can really give a good quick start on sometime.
]]></description>
			<content:encoded><![CDATA[<p> <a href="http://refcardz.dzone.com/">http://refcardz.dzone.com/</a></p>
<p>I  like some of the cards, can really give a good quick start on sometime.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectpattern.net/?feed=rss2&amp;p=61</wfw:commentRss>
		</item>
		<item>
		<title>See also: db4o</title>
		<link>http://blog.objectpattern.net/?p=59</link>
		<comments>http://blog.objectpattern.net/?p=59#comments</comments>
		<pubDate>Fri, 01 Jan 2010 17:09:34 +0000</pubDate>
		<dc:creator>Himanshu</dc:creator>
		
		<category><![CDATA[to-do]]></category>

		<guid isPermaLink="false">http://blog.objectpattern.net/?p=59</guid>
		<description><![CDATA[Should try out db4o. It&#8217;s open source object oriented database. Has native support for Java and .NET both. Looks like also has something for Mono.
]]></description>
			<content:encoded><![CDATA[<p>Should try out <a href="http://www.db4o.com/about/productinformation/" target="_blank">db4o</a>. It&#8217;s open source object oriented database. Has native support for Java and .NET both. Looks like also has something for Mono.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectpattern.net/?feed=rss2&amp;p=59</wfw:commentRss>
		</item>
		<item>
		<title>TedTalk session bookmarks</title>
		<link>http://blog.objectpattern.net/?p=57</link>
		<comments>http://blog.objectpattern.net/?p=57#comments</comments>
		<pubDate>Tue, 08 Dec 2009 15:01:52 +0000</pubDate>
		<dc:creator>Himanshu</dc:creator>
		
		<category><![CDATA[ted-talk]]></category>

		<guid isPermaLink="false">http://blog.objectpattern.net/?p=57</guid>
		<description><![CDATA[Richard Dawkins on our &#34;queer&#34; universe  http://www.youtube.com/watch?v=1APOxsp1VFw
Elizabeth Gilbert: A new way to think about creativity   http://www.youtube.com/watch?v=86x-u-tz0MA
Stephen Hawking: Asking big questions about the universe   http://www.youtube.com/watch?v=xjBIsp8mS-c&#38;feature=channel
Tony Robbins: Why we do what we do, and how we can do it better
http://www.youtube.com/watch?v=Cpc-t-Uwv1I
Barry Schwartz: The paradox of choice   http://www.youtube.com/watch?v=VO6XEQIsCoM
]]></description>
			<content:encoded><![CDATA[<p>Richard Dawkins on our &quot;queer&quot; universe  <br /><a href="http://www.youtube.com/watch?v=1APOxsp1VFw">http://www.youtube.com/watch?v=1APOxsp1VFw</a>
<p>Elizabeth Gilbert: A new way to think about creativity   <br /><a href="http://www.youtube.com/watch?v=86x-u-tz0MA">http://www.youtube.com/watch?v=86x-u-tz0MA</a></p>
<p>Stephen Hawking: Asking big questions about the universe   <br /><a href="http://www.youtube.com/watch?v=xjBIsp8mS-c&amp;feature=channel">http://www.youtube.com/watch?v=xjBIsp8mS-c&amp;feature=channel</a></p>
<p>Tony Robbins: Why we do what we do, and how we can do it better</p>
<p><a href="http://www.youtube.com/watch?v=Cpc-t-Uwv1I">http://www.youtube.com/watch?v=Cpc-t-Uwv1I</a></p>
<p>Barry Schwartz: The paradox of choice   <br /><a href="http://www.youtube.com/watch?v=VO6XEQIsCoM">http://www.youtube.com/watch?v=VO6XEQIsCoM</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectpattern.net/?feed=rss2&amp;p=57</wfw:commentRss>
		</item>
		<item>
		<title>SQL Server DB Diff and Sync</title>
		<link>http://blog.objectpattern.net/?p=56</link>
		<comments>http://blog.objectpattern.net/?p=56#comments</comments>
		<pubDate>Tue, 08 Sep 2009 07:49:25 +0000</pubDate>
		<dc:creator>Himanshu</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.objectpattern.net/?p=56</guid>
		<description><![CDATA[Haven&#8217;t tried it but, seems good, though if someone wants to pay, tryout this as well
]]></description>
			<content:encoded><![CDATA[<p>Haven&#8217;t tried <a href="http://opendbiff.codeplex.com/" target="_blank">it</a> but, seems good, though if someone wants to pay, tryout <a href="http://www.red-gate.com/products/SQL_Compare/index.htm" target="_blank">this</a> as well</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectpattern.net/?feed=rss2&amp;p=56</wfw:commentRss>
		</item>
		<item>
		<title>mono issue: Standard output has not been redirected or process has not been started.</title>
		<link>http://blog.objectpattern.net/?p=54</link>
		<comments>http://blog.objectpattern.net/?p=54#comments</comments>
		<pubDate>Mon, 24 Aug 2009 06:04:25 +0000</pubDate>
		<dc:creator>Himanshu</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.objectpattern.net/?p=54</guid>
		<description><![CDATA[Fix is found from http://www.debianadmin.com/running-aspnet-applications-in-debian-and-ubuntu-using-xsp-and-mono.html

   1:  
   2:  sudo find /usr/bin &#124; grep gmcs
   3:  
   4:  if result is NOT
   5:  /usr/bin/gmcs
   6:  /usr/bin/gmcs2
   7:  
   8:  try
   [...]]]></description>
			<content:encoded><![CDATA[<p>Fix is found from <a title="http://www.debianadmin.com/running-aspnet-applications-in-debian-and-ubuntu-using-xsp-and-mono.html" href="http://www.debianadmin.com/running-aspnet-applications-in-debian-and-ubuntu-using-xsp-and-mono.html">http://www.debianadmin.com/running-aspnet-applications-in-debian-and-ubuntu-using-xsp-and-mono.html</a></p>
<div class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span></pre>
<pre><span class="lnum">   2:  </span>sudo find /usr/bin | grep gmcs</pre>
<pre class="alt"><span class="lnum">   3:  </span></pre>
<pre><span class="lnum">   4:  </span><span class="kwrd">if</span> result is NOT</pre>
<pre class="alt"><span class="lnum">   5:  </span>/usr/bin/gmcs</pre>
<pre><span class="lnum">   6:  </span>/usr/bin/gmcs2</pre>
<pre class="alt"><span class="lnum">   7:  </span></pre>
<pre><span class="lnum">   8:  </span>try</pre>
<pre class="alt"><span class="lnum">   9:  </span>1)install mono-gmcs package (<span class="kwrd">if</span> only have “/usr/bin/gmcs”)</pre>
<pre><span class="lnum">  10:  </span>or</pre>
<pre class="alt"><span class="lnum">  11:  </span>2)<span class="kwrd">in</span> case you have only “/usr/bin/gmcs2? make symlink on it named gmcs</pre>
<pre><span class="lnum">  12:  </span>sudo ln -s /usr/bin/gmcs2 /usr/bin/gmcs</pre>
<pre></pre>
<pre>restart apache2 or xsp or your web server and check result <span class="kwrd">in</span> browser.</pre>
</div>
<p><!-- .csharpcode, .csharpcode pre { 	font-size: small; 	color: black; 	font-family: consolas, "Courier New", courier, monospace; 	background-color: #ffffff; 	/*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000; } .csharpcode .alt  { 	background-color: #f4f4f4; 	width: 100%; 	margin: 0em; } .csharpcode .lnum { color: #606060; } --></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectpattern.net/?feed=rss2&amp;p=54</wfw:commentRss>
		</item>
		<item>
		<title>Creating My SQL database and user</title>
		<link>http://blog.objectpattern.net/?p=53</link>
		<comments>http://blog.objectpattern.net/?p=53#comments</comments>
		<pubDate>Fri, 21 Aug 2009 07:40:05 +0000</pubDate>
		<dc:creator>Himanshu</dc:creator>
		
		<category><![CDATA[my-sql]]></category>

		<guid isPermaLink="false">http://blog.objectpattern.net/?p=53</guid>
		<description><![CDATA[I sent email from my hotmail a/c&#160; to my user at server where I had hosted postfix, let&#8217;s see if it goes through. See my prior post for the context. 
Anyway, this post is for Installed My SQL and PHP. Its pretty easy to install mysql and php in ubuntu. Use apt-get install and you [...]]]></description>
			<content:encoded><![CDATA[<p>I sent email from my hotmail a/c&#160; to my user at server where I had hosted postfix, let&#8217;s see if it goes through. See my prior post for the context. </p>
<p>Anyway, this post is for Installed My SQL and PHP. Its pretty easy to install mysql and php in ubuntu. Use <em>apt-get install </em>and you are done. I haven rarely used MySQL, and never used it from command line. After installing mysql also tried creating database as: <em>mysqladmin create &lt;databasename&gt;. </em>Command complainted about password for user. I used switch to supply password and command prompt was on next line. I assumed the command must be successful.</p>
<p>Now, I wanted to setup wordpress. And want to use different database, user then I had created and used in prior command. I wanted to have wp user to do anything on its database, but not more then that.</p>
<p>Googled a bit and found that user can be created in mysql with host specification, found it interesting. (see <a href="http://dev.mysql.com/doc/refman/5.1/en/adding-users.html" target="_blank">this</a>). So concept is user can be created with host specification or with wild card (which is % not *). and user will have access to the database accordingly. So same user accessing database from localhost will have more permissions then if s/he access database from outside server.</p>
<p>So, I used following commands to create database and user. This commands needs to be run from mysql command prompt which can be started using <em>mysql &#8211;user=root &#8211;password=&lt;root-user-password&gt;</em>. I had used root, so you are seeing root user in the command, but any other user who has permission of creating database, creating user and allocating permissions.</p>
<div style="border-bottom: gray 1px solid; border-left: gray 1px solid; padding-bottom: 4px; line-height: 12pt; background-color: #f4f4f4; margin: 20px 0px 10px; padding-left: 4px; width: 97.5%; padding-right: 4px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; height: 91px; max-height: 200px; font-size: 8pt; overflow: auto; border-top: gray 1px solid; cursor: text; border-right: gray 1px solid; padding-top: 4px">
<div style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   1:</span> CREATE USER <span style="color: #006080">'&lt;user-name&gt;'</span>@<span style="color: #006080">'localhost'</span> IDENTIFIED BY <span style="color: #006080">'&lt;password-for-the-user&gt;'</span>;</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   2:</span> CREATE USER <span style="color: #006080">'&lt;user-name&gt;'</span>@<span style="color: #006080">'%'</span> IDENTIFIED BY <span style="color: #006080">'password-for-the-user'</span>;</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   3:</span> GRANT ALL PRIVILEGES ON &lt;database-name&gt;.* TO <span style="color: #006080">'&lt;user-name&gt;'</span>@<span style="color: #006080">'localhost'</span>;</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   4:</span> GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP ON &lt;database-name&gt;.* TO <span style="color: #006080">'&lt;user-name&gt;'</span>@<span style="color: #006080">'localhost'</span>;</pre>
</p></div>
</div>
<p>Opps, forgot to mention. Please make sure you first create database and then run line 3 and line 4.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectpattern.net/?feed=rss2&amp;p=53</wfw:commentRss>
		</item>
		<item>
		<title>Setting up email server - 1</title>
		<link>http://blog.objectpattern.net/?p=51</link>
		<comments>http://blog.objectpattern.net/?p=51#comments</comments>
		<pubDate>Thu, 20 Aug 2009 06:42:07 +0000</pubDate>
		<dc:creator>Himanshu</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[mail server]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.objectpattern.net/?p=51</guid>
		<description><![CDATA[I was going through ubuntu server edition, where I found that ubuntu comes with a utility called tasksel. That was not installed on my server, so went ahead and did apt-get install for it, and that resolved the issue of not having it.
I did select mail server from it&#8217;s checkbox, and it installed successfully after [...]]]></description>
			<content:encoded><![CDATA[<p>I was going through <a href="http://www.ubuntu.com/products/whatisubuntu/serveredition/features/mailserver">ubuntu server edition</a>, where I found that ubuntu comes with a utility called tasksel. That was not installed on my server, so went ahead and did <em>apt-get install</em> for it, and that resolved the issue of not having it.</p>
<p>I did select mail server from it&#8217;s checkbox, and it installed successfully after some queries. Well, I&#8217;m saying successfully because it didn&#8217;t gave me any error. I could see some more process running while I do <em>ps -ef</em> after installation has completed.</p>
<p>But then what next, I was pathless again. I did some more googling over it, and I found <a title="http://jonsview.com/2009/03/26/how-to-setup-email-services-on-ubuntu-using-postfix-tlssasl-and-dovecot" href="http://jonsview.com/2009/03/26/how-to-setup-email-services-on-ubuntu-using-postfix-tlssasl-and-dovecot">http://jonsview.com/2009/03/26/how-to-setup-email-services-on-ubuntu-using-postfix-tlssasl-and-dovecot</a>. I completed what he said but ehlo localhost was not having two lines that he said but below</p>
<div style="border-bottom: gray 1px solid; border-left: gray 1px solid; padding-bottom: 4px; line-height: 12pt; background-color: #f4f4f4; margin: 20px 0px 10px; padding-left: 4px; width: 97.5%; padding-right: 4px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; height: 241px; max-height: 200px; font-size: 8pt; overflow: auto; border-top: gray 1px solid; cursor: text; border-right: gray 1px solid; padding-top: 4px">
<div style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   1:</span> ehlo localhost</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   2:</span> 250-server Hello localhost.localdomain [127.0.0.1], pleased to meet you</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   3:</span> 250-ENHANCEDSTATUSCODES</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   4:</span> 250-PIPELINING</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   5:</span> 250-EXPN</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   6:</span> 250-VERB</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   7:</span> 250-8BITMIME</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   8:</span> 250-SIZE</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   9:</span> 250-DSN</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  10:</span> 250-ETRN</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  11:</span> 250-AUTH DIGEST-MD5 CRAM-MD5</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  12:</span> 250-DELIVERBY</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">  13:</span> 250 HELP</pre>
</p></div>
</div>
<p>Now, what? Pathless again.</p>
<p>I learn <em>mail</em> command and tried it. It was giving warning as <strong><em>postdrop: warning: unable to look up public/pickup: No such file or directory</em></strong> quick googling lead me to <a title="http://ubuntuforums.org/showthread.php?t=666018" href="http://ubuntuforums.org/showthread.php?t=666018">http://ubuntuforums.org/showthread.php?t=666018</a> which told me that I need to fire command </p>
<div style="border-bottom: gray 1px solid; border-left: gray 1px solid; padding-bottom: 4px; line-height: 12pt; background-color: #f4f4f4; margin: 20px 0px 10px; padding-left: 4px; width: 97.5%; padding-right: 4px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; max-height: 200px; font-size: 8pt; overflow: auto; border-top: gray 1px solid; cursor: text; border-right: gray 1px solid; padding-top: 4px">
<div style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   1:</span> sudo mkfifo /var/spool/postfix/public/pickup</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #606060">   2:</span> sudo /etc/init.d/postfix restart</pre>
</p></div>
</div>
<p>after which warnings disappeared, but mail didn&#8217;t reached to hotmail account.</p>
<p>Update-1:</p>
<p>Wow, I killed sendmail process, restarted postfix and I could see the entries that above URL was saying. And also received the emails in hotmail account, in junk as I was expecting it to be.</p>
<p>I was also seeing some process that was indicating my hotmail account in its description. I didn&#8217;t understand it so I restarted the server, but will try sending some more emails and update.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectpattern.net/?feed=rss2&amp;p=51</wfw:commentRss>
		</item>
	</channel>
</rss>
