<?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>Aarat's Blog &#187; Aarat</title>
	<atom:link href="http://www.aarat.com/author/aarat/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aarat.com</link>
	<description>A good place to hangout.</description>
	<lastBuildDate>Sun, 18 Jul 2010 13:58:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Java Geek Video</title>
		<link>http://www.aarat.com/java-geek-video/</link>
		<comments>http://www.aarat.com/java-geek-video/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 13:43:46 +0000</pubDate>
		<dc:creator>Aarat</dc:creator>
				<category><![CDATA[General Posts]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.aarat.com/?p=331</guid>
		<description><![CDATA[Check this out.. [See post to watch Flash video]]]></description>
			<content:encoded><![CDATA[<p>Check this out..</p>
[See post to watch Flash video]
]]></content:encoded>
			<wfw:commentRss>http://www.aarat.com/java-geek-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://jz10.java.no/mediaplayer/JavaZoneTrailer.flv" length="23610061" type="video/x-flv" />
		</item>
		<item>
		<title>DKIM For Debian + Postfix</title>
		<link>http://www.aarat.com/dkim-for-debian-postfix/</link>
		<comments>http://www.aarat.com/dkim-for-debian-postfix/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 22:09:21 +0000</pubDate>
		<dc:creator>Aarat</dc:creator>
				<category><![CDATA[General Posts]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[dkim]]></category>
		<category><![CDATA[postfix]]></category>

		<guid isPermaLink="false">http://www.aarat.com/?p=328</guid>
		<description><![CDATA[Here&#8217;s Quick Tutorial for how to setup dkim (AKA Domain Keys ) on Debian + Postfix. 1.) Install dkim-filter apt-get install dkim-filter 2.) Create a key for each domain verified mkdir -p /etc/dkim/keys/abc.com cd /etc/dkim/keys/abc.com dkim-genkey -r -d abc.com Replace abc.com with the domain that this mail server should authenticate using DKIM 3. Add a [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">Here&#8217;s Quick Tutorial for how to setup dkim (AKA Domain Keys ) on Debian + Postfix.</p>
<p>1.) Install dkim-filter</p>
<p style="padding-left: 90px;">
<p style="padding-left: 90px;"><strong><span style="color: #ff6600;"><code>apt-get install dkim-filter</code></span></strong></p>
<p style="padding-left: 90px;">
<p>2.) Create a key for each domain verified</p>
<p style="padding-left: 90px;"><strong><span style="color: #ff6600;"><code>mkdir -p /etc/dkim/keys/abc.com<br />
cd /etc/dkim/keys/abc.com<br />
dkim-genkey -r -d abc.com</code></span></strong></p>
<p style="padding-left: 90px;">
<p><em>Replace abc.com with the domain that this mail server should  authenticate using DKIM</em></p>
<p>3. Add a line for each domain to dkim-keys.conf file (vim  /etc/dkim-keys.conf)</p>
<p style="padding-left: 60px;"><strong><span style="color: #ff6600;"><code>*@abc.com:abc.com:/etc/dkim/keys/abc.com/default.private</code></span></strong></p>
<p><em>Replace abc.com with the domain that this mail server should  authenticate using DKIM</em></p>
<p>4. Add a TXT record to the DNS for the domain being authenticated using  DKIM. The record is automatically created and stored in  /etc/dkim/keys/abc.com/default.txt. You just need to add it to the  DNS server. (cat /etc/dkim/keys/abc.com/default.txt)</p>
<p>Here&#8217;s a sample output:</p>
<p style="padding-left: 120px;"><strong><span style="color: #ff6600;"><code>default._domainkey IN TXT "v=DKIM1; g=*; k=rsa;  p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC8IQNYlS+8jyrbAxNsghsPrWYgOQQWI0Ab4e9MToZYLTBGI41V3Zet5Awrt19nMIUlTpuE+/YVnjP/pu3fgeYkoe6NUzp+oEcWAioQXBmx0njigac7iJ/I0naTP1xTrDacnwsTp/F+lMwGgjiHpaJA7iBmL0AfYMXlTBo5pFog2QIDAQAB"  ; ----- DKIM default for abc.com</code></span></strong></p>
<p style="padding-left: 120px;">
<p><em>Repeat steps 2, 3 and 4 for every domain that this server should  authenticate using DKIM.</em></p>
<p>5. Uncomment line 37 to make DKIM filter use the dkim-keys.conf file to  look up domains available (vim /etc/dkim-filter.conf)</p>
<p style="padding-left: 30px;"><strong><span style="color: #ff6600;"><code>KeyList                /etc/dkim-keys.conf</code></span></strong></p>
<p style="padding-left: 30px;">
<p>6. Add a inet socket that Postfix can communicate with (vim  /etc/default/dkim-filter)</p>
<p style="padding-left: 60px;"><strong><span style="color: #ff6600;"><code>SOCKET="inet:8891@localhost"</code></span></strong></p>
<p style="padding-left: 60px;">
<p>7. Restart DKIM filter</p>
<p style="padding-left: 60px;"><strong><span style="color: #ff6600;"><code>/etc/init.d/dkim-filter restart</code></span></strong></p>
<p style="padding-left: 60px;">
<p>8. Configure Postfix to query DKIM filter using the socket created  earlier. Add these lines to main.cf (vim /etc/postfix/main.cf)</p>
<p style="padding-left: 60px;"><strong><span style="color: #ff6600;"><code>milter_default_action = accept<br />
milter_protocol = 2<br />
smtpd_milters = inet:localhost:8891<br />
non_smtpd_milters = inet:localhost:8891</code></span></strong></p>
<p style="padding-left: 60px;">
<p>9. Reload Postfix config</p>
<p style="padding-left: 90px;"><strong><span style="color: #ff6600;"><code>postfix reload</code></span></strong></p>
<p style="padding-left: 90px;">
<p><span style="color: #ff6600;"><span style="color: #000000;"><strong>Courtesy: </strong> </span></span>http://www.debiantutorials.net/setup-domainkeys-identified-mail-dkim-in-postfix/<span style="color: #ff6600;"><span style="color: #000000;"> </span><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aarat.com/dkim-for-debian-postfix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Party Time!!!</title>
		<link>http://www.aarat.com/party-time/</link>
		<comments>http://www.aarat.com/party-time/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 20:48:29 +0000</pubDate>
		<dc:creator>Aarat</dc:creator>
				<category><![CDATA[General Posts]]></category>

		<guid isPermaLink="false">http://www.aarat.com/?p=325</guid>
		<description><![CDATA[Guys&#8230; Here&#8217;s big news&#8230; There are lot of them 1.) I passed out of Sem IV and Sem V BCA 2.) Purchased a Virtual Private Server (Debian Lenny) 3.) Have unlimited FTP Bandwidth and Disk Space.. Still Expecting One more.. lets see how it goes&#8230; Cheers!!]]></description>
			<content:encoded><![CDATA[<p>Guys&#8230;</p>
<p>Here&#8217;s big news&#8230; There are lot of them</p>
<p>1.) I passed out of Sem IV and Sem V BCA</p>
<p>2.) Purchased a Virtual Private Server (Debian Lenny)</p>
<p>3.) Have unlimited FTP Bandwidth and Disk Space..</p>
<p>Still Expecting One more.. lets see how it goes&#8230;</p>
<p>Cheers!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aarat.com/party-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>its raining&#8230; awesome</title>
		<link>http://www.aarat.com/its-raining-awesome/</link>
		<comments>http://www.aarat.com/its-raining-awesome/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 14:47:42 +0000</pubDate>
		<dc:creator>Aarat</dc:creator>
				<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.aarat.com/its-raining-awesome/</guid>
		<description><![CDATA[its raining&#8230; awesome]]></description>
			<content:encoded><![CDATA[<p>its raining&#8230; awesome</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aarat.com/its-raining-awesome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>its gonna rain.. i am lovin it</title>
		<link>http://www.aarat.com/its-gonna-rain-i-am-lovin-it/</link>
		<comments>http://www.aarat.com/its-gonna-rain-i-am-lovin-it/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 14:30:13 +0000</pubDate>
		<dc:creator>Aarat</dc:creator>
				<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.aarat.com/its-gonna-rain-i-am-lovin-it/</guid>
		<description><![CDATA[its gonna rain.. i am lovin it]]></description>
			<content:encoded><![CDATA[<p>its gonna rain.. i am lovin it</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aarat.com/its-gonna-rain-i-am-lovin-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Boring Saturday</title>
		<link>http://www.aarat.com/another-boring-saturday/</link>
		<comments>http://www.aarat.com/another-boring-saturday/#comments</comments>
		<pubDate>Sat, 26 Jun 2010 21:05:29 +0000</pubDate>
		<dc:creator>Aarat</dc:creator>
				<category><![CDATA[General Posts]]></category>

		<guid isPermaLink="false">http://www.aarat.com/?p=320</guid>
		<description><![CDATA[I  am working on weekends and have week off on Monday and Tuesday .. It sucks. Rucha&#8217;s Daughter turns 1 Today so she had arranged party today. I wish I could be there. I am really exicited reading sachinbhai&#8217;s blog regularly.. There&#8217;s always something new may be technical and non technical aswel]]></description>
			<content:encoded><![CDATA[<p>I  am working on weekends and have week off on Monday and Tuesday .. It sucks. Rucha&#8217;s Daughter turns 1 Today so she had arranged party today. I wish I could be there.</p>
<p>I am really exicited reading sachinbhai&#8217;s blog regularly.. There&#8217;s always something new may be technical and non technical aswel</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aarat.com/another-boring-saturday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Busy Days !!</title>
		<link>http://www.aarat.com/busy-days/</link>
		<comments>http://www.aarat.com/busy-days/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 23:35:28 +0000</pubDate>
		<dc:creator>Aarat</dc:creator>
				<category><![CDATA[General Posts]]></category>

		<guid isPermaLink="false">http://www.aarat.com/?p=315</guid>
		<description><![CDATA[Guys!! I know i am unable to update my blog very often due to busy days.. So here&#8217;s the round up for that.. XDA Developers are trying to port froyo on HTC Tattoo.. I am also trying to download the Repo from AOSP git, lets see how it goes. The Countdown is still on and [...]]]></description>
			<content:encoded><![CDATA[<p>Guys!!</p>
<p>I know i am unable to update my blog very often due to busy days.. So here&#8217;s the round up for that..</p>
<ul>
<li>XDA Developers are trying to port froyo on HTC Tattoo.. I am also trying to download the Repo from AOSP git, lets see how it goes.</li>
</ul>
<ul>
<li>The Countdown is still on and its 111 days from today after which i will be having a very very beautiful wife whom I love the most in this world.</li>
</ul>
<ul>
<li>Guys have you ever tried contacting symantec for support?? I have called them many time and believe me it Sucks. There are records of wait time more than 4 hours and they play some bogus songs while holding.</li>
</ul>
<ul>
<li>Sachinbhai&#8217;s Server : I Visited sachinbhai&#8217;s office to setup their new i7 based server last week. Perfomance was awesome. Done setup for ADS and Hyper-V.They are all set on this.</li>
</ul>
<ul>
<li>Mom knows how to text now.. At last after many years my mom how to send Txt messages. I am Loving it !!</li>
</ul>
<ul>
<li>I am working for an US based IT company. The other day my landlord came to me and says I know guys working in IT company don&#8217;t have fix time to come back to home but yes time for going to work is fix. I said &#8220;Totally Agree&#8221; <img src='http://www.aarat.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ul>
<ul>
<li>Bought a new Server on Rent with host-noc. Will be using it for email marketing, Lets see how it goes.</li>
</ul>
<p>Thats all for now !! Hope will be updating the blog regularly.</p>
<p>Cheers!!</p>
<p>Happy Weekend</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aarat.com/busy-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Re:Gnome, KDE, IceWM or LXDE D&#8230;</title>
		<link>http://www.aarat.com/regnome-kde-icewm-or-lxde-d/</link>
		<comments>http://www.aarat.com/regnome-kde-icewm-or-lxde-d/#comments</comments>
		<pubDate>Thu, 27 May 2010 13:44:48 +0000</pubDate>
		<dc:creator>Aarat</dc:creator>
				<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.aarat.com/regnome-kde-icewm-or-lxde-d/</guid>
		<description><![CDATA[Re:Gnome, KDE, IceWM or LXDE Desktop on your Android! &#8211; AndroidFanatic Community Forums: http://bit.ly/bQPEr6 via @addthis]]></description>
			<content:encoded><![CDATA[<p>Re:Gnome, KDE, IceWM or LXDE Desktop on your Android! &#8211; AndroidFanatic Community Forums: <a href="http://bit.ly/bQPEr6" rel="nofollow">http://bit.ly/bQPEr6</a> via @<a href="http://twitter.com/addthis" class="aktt_username">addthis</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aarat.com/regnome-kde-icewm-or-lxde-d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading to 10.04 LTS http://&#8230;</title>
		<link>http://www.aarat.com/upgrading-to-10-04-lts-http/</link>
		<comments>http://www.aarat.com/upgrading-to-10-04-lts-http/#comments</comments>
		<pubDate>Thu, 06 May 2010 13:18:58 +0000</pubDate>
		<dc:creator>Aarat</dc:creator>
				<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.aarat.com/upgrading-to-10-04-lts-http/</guid>
		<description><![CDATA[Upgrading to 10.04 LTS http://twitgoo.com/uqa2r]]></description>
			<content:encoded><![CDATA[<p>Upgrading to 10.04 LTS <a href="http://twitgoo.com/uqa2r" rel="nofollow">http://twitgoo.com/uqa2r</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aarat.com/upgrading-to-10-04-lts-http/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removed windows 7 and now usin&#8230;</title>
		<link>http://www.aarat.com/removed-windows-7-and-now-usin/</link>
		<comments>http://www.aarat.com/removed-windows-7-and-now-usin/#comments</comments>
		<pubDate>Wed, 05 May 2010 11:10:25 +0000</pubDate>
		<dc:creator>Aarat</dc:creator>
				<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.aarat.com/removed-windows-7-and-now-usin/</guid>
		<description><![CDATA[Removed windows 7 and now using kubuntu as my primary os.. i m loving it]]></description>
			<content:encoded><![CDATA[<p>Removed windows 7 and now using kubuntu as my primary os.. i m loving it</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aarat.com/removed-windows-7-and-now-usin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
