<?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></title>
	<atom:link href="http://www.ameyapandit.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.ameyapandit.com</link>
	<description>grep grep grep... A Frog with UNIX stuck in its’ throat</description>
	<lastBuildDate>Wed, 30 Jun 2010 04:54:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>USB modem: Autodialer script for linux</title>
		<link>http://www.ameyapandit.com/?p=16</link>
		<comments>http://www.ameyapandit.com/?p=16#comments</comments>
		<pubDate>Mon, 08 Mar 2010 09:29:11 +0000</pubDate>
		<dc:creator>Ameya</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[autodilaer]]></category>
		<category><![CDATA[tata indicom]]></category>
		<category><![CDATA[usb modem]]></category>

		<guid isPermaLink="false">http://www.ameyapandit.com/?p=16</guid>
		<description><![CDATA[I am using Tata Indicom’s “Plug to Surf” USB Modem for my laptop. Its handy and gives a better speed so I also suggest this to my friends as well. I have given a Ubuntu Desktop for many of my non-techie friends and dialing using wvdial and keeping the terminal open looks mess to them. <a href="http://www.ameyapandit.com/?p=16" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>I am using Tata Indicom’s “Plug to Surf” USB Modem for my laptop. Its handy and gives a better speed so I also suggest this to my friends as well. I have given a Ubuntu Desktop for many of my non-techie friends and dialing using wvdial and keeping the terminal open looks mess to them. I wanted them to enjoy Plug and Play features and hence I worked on this.</p>
<p>Plug your USB Modem to your laptop/PC just wait for a few minutes and your are ready to surf the net. Pretty interesting, huh?</p>
<p>Well the recipe is given below.<br />
Assumptions:<br />
1. I assume you have Tata Indicom’s “Plug to Surf” USB Modem duly configured on your Linux machines.<br />
2. If your are not able to figure out how to do that just read the bundled CD carefully, its pretty well mentioned on it.</p>
<p>So, first things first. What files will you need to touch?<br />
i. /usr/bin/wvdial<br />
ii. a new file may be /etc/udev/rules.d/85-autodial-usb-modem.rules</p>
<p>Change permissions of your wvdial so that any user can run that as root. Sounds security violation but thats okay if you are a single user on laptop or desktop.<br />
ameya@ameya-laptop:~$ sudo chmod a+s /usr/bin/wvdial<br />
ameya@ameya-laptop:~$ ls -l /usr/bin/wvdial<br />
-rwsr-sr-x 1 root 0 76220 2007-03-09 03:23 /usr/bin/wvdial</p>
<p>Now you need to know the USB device ID of your modem.</p>
<p>ameya@ameya-laptop:~$ lsusb<br />
Bus 004 Device 001: ID 0000:0000<br />
Bus 003 Device 001: ID 0000:0000<br />
Bus 002 Device 001: ID 0000:0000<br />
Bus 001 Device 016: ID 1b7d:070a<br />
Bus 001 Device 001: ID 0000:0000</p>
<p>Notice that Bus 001 is shoing ID as 1b7d:070a<br />
Here the first number before a ( : ) is the vendor id and later is the Product id. Now its time to tell your UDEV service about it. Create a new file sumthing like this.</p>
<p>ameya@ameya-laptop:~$ sudo vi /etc/udev/rules.d/85-autodial-usb-modem.rules</p>
<p>Now insert the below line in this rules file and save and close.</p>
<p>ACTION==”add”, SUBSYSTEM==”usb_device”, SYSFS{idVendor}==”1b7d”, SYSFS{idProduct}==”070a”, OWNER=”ameya”,RUN+=”/usr/bin/wvdial”</p>
<p>Make sure to change the idVendor and idProduct values as per your USB Vendor ID.</p>
<p>ameya@ameya-laptop:~$ sudo chmod 644 /etc/udev/rules.d/85-autodial-usb-modem.rules<br />
ameya@ameya-laptop:~$ ls -l /etc/udev/rules.d/85-autodial-usb-modem.rules<br />
-rw-r–r– 1 root 0 128 2008-06-08 18:46 /etc/udev/rules.d/85-autodial-usb-modem.rules</p>
<p>Now restart the UDEV services.<br />
ameya@ameya-laptop:~$ /etc/init.d/udev restart</p>
<p>This is it. Now whenever you connect your USB modem to the port just wait for a minute and it then you are ready to surf the internet. You will not need to dial any services. Now, I have noticed that when you connect the USB Modem it first gives you a red light indication which means that Modem is searching for Network Range. When it turns to green it is actually ready to dial. At this time our script is dialling the modem. Once it is done it will give you blinking green signal which means it is sending/receiving the packets meaning you can now surf the web.</p>
<p>Well, now that its auto-dialling there should be some easy way to terminate the modem. Here it is.<br />
We only need to create 1 file as below.<br />
ameya@ameya-laptop:~$ vi byebye</p>
<p>Insert the below line to it and save and close.</p>
<p>kill -9 `ps aux |grep wvdial |grep -v grep | awk ‘{print $2}’`</p>
<p>Now, make the file executable with,</p>
<p>ameya@ameya-laptop:~$ chmod 755 byebye<br />
ameya@ameya-laptop:~$ ls -l byebye<br />
-rwxr-xr-x 1 root 0 63 2008-06-08 10:25 /home/ameya/byebye</p>
<p>Copy the file to your bin directory.</p>
<p>ameya@ameya-laptop:~$ sudo cp byebye /usr/bin/</p>
<p>How to use this file?<br />
When you are connected to the net and wish to disconnect just go to the terminal and run the below command.<br />
ameya@ameya-laptop:~$ sudo byebye</p>
<p>It will ask the user password to disconnect. Isn’t it easy?<br />
Or you can copy the file on your desktop so that you can double click the executable to disconnect.</p>
<p>ameya@ameya-laptop:~$ sudo cp byebye /home/ameya/Desktop/</p>
<p>Now, double click on the file and open in a terminal.. provide password to disconnect the internet.<br />
Do let me know if it finds useful to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ameyapandit.com/?feed=rss2&amp;p=16</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BSNL / MTNL / SIFY / PACENET / HATHWAY on Ubuntu</title>
		<link>http://www.ameyapandit.com/?p=14</link>
		<comments>http://www.ameyapandit.com/?p=14#comments</comments>
		<pubDate>Mon, 08 Mar 2010 09:24:23 +0000</pubDate>
		<dc:creator>Ameya</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[bsnl]]></category>
		<category><![CDATA[hathway]]></category>
		<category><![CDATA[internet connection]]></category>
		<category><![CDATA[mtnl]]></category>
		<category><![CDATA[pacenet]]></category>
		<category><![CDATA[sify]]></category>
		<category><![CDATA[ubunut]]></category>

		<guid isPermaLink="false">http://www.ameyapandit.com/?p=14</guid>
		<description><![CDATA[BSNL Broadband
Prerequisite
BSNL Broadband provides different types of ADSL modem/router:
Huawei ADSL modem/router with ethernet and USB port
DareGlobal ADSL modem/router with ethernet port.
Huawei ADSL modem/router with ethernet port, USB port and built-in wireless access point.
You should have a working ethernet card to connect the modem/router. No information is available about connecting using USB (PPPoA).
Instructions
Note: The router/modem would <a href="http://www.ameyapandit.com/?p=14" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>BSNL Broadband</p>
<p>Prerequisite</p>
<p>BSNL Broadband provides different types of ADSL modem/router:</p>
<p>Huawei ADSL modem/router with ethernet and USB port<br />
DareGlobal ADSL modem/router with ethernet port.<br />
Huawei ADSL modem/router with ethernet port, USB port and built-in wireless access point.<br />
You should have a working ethernet card to connect the modem/router. No information is available about connecting using USB (PPPoA).</p>
<p>Instructions</p>
<p>Note: The router/modem would trigger the connection if configured this way.(Router on -> Connected)</p>
<p>Ethernet Connection</p>
<p>Connect the modem/router to the ethernet card<br />
Assign an IP address for the ethernet card; the router has a fixed interface address of 192.168.1.1, so you can use 192.168.1.2 for your ethernet interface.<br />
$ sudo ifconfig eth0 192.168.1.2<br />
Add 192.168.1.1 as default gateway.<br />
$ sudo route add default gw 192.168.1.1<br />
Enter the address of some DNS servers in /etc/resolv.conf. These DNS adresses are provided on BSNL’s instruction manual.<br />
$ sudo vi /etc/resolv.conf<br />
The entry will be of type nameserver 61.1.96.71, where the IP will be the one provided in your BSNL Broadband instruction manual.</p>
<p>Access the router’s management interface via a browser by typing the address 192.168.1.1. The admin username/password is admin/admin<br />
Set the connection type to `PPPoE’. On my MT882 box, this comes under `WAN Settings’<br />
Enter your user name and password (username is of the form xyz@dataone)<br />
Reset the router. It will take 2-3 minutes for the box to come up again<br />
Steps 2, 3, 4 can also be done from menu System->Administration->Network in GUI</p>
<p>Alternate Method:</p>
<p>Connect your ethernet wire to the port at the back of your computer.<br />
Fire up the terminal and type in sudo pppoeconf<br />
It should detect your modem.<br />
Keep on pressing enter. Fill in your user name and password when indicated.<br />
It should be easy to stick on to defaults.<br />
You should be prompted back to your terminal when it would say pppoe loaded. Simple. That’s the end of terminal.<br />
Now go to System>Administration>Networking. Click on it. You would be asked for your password to carry out the administrative job as root. You should be prompted to enter the following details.</p>
<p>Activate the Wired connection.<br />
Highlight the wired connection and click on properties.<br />
Check the box “enable the connection”<br />
Configuration as Static IP.<br />
IP Address : 192.168.1.2<br />
Subnet mask fills on it’s own as 255.255.255.0<br />
Gateway address :192.168.1.1</p>
<p>Wireless Connection</p>
<p>Assign an IP address for wireless NIC; the router has a fixed interface address of 192.168.1.1, so you can use 192.168.1.2 for your wireless NIC.<br />
$ sudo ifconfig wlan0 192.168.1.2<br />
In some cases you may need to replace wlan0 with with eth0 or eth1.</p>
<p>Add 192.168.1.1 as default gateway.<br />
$ sudo route add default gw 192.168.1.1<br />
Add network ESSID.<br />
$ sudo iwconfig wlan0 essid WA1003A<br />
Default ESSID for the modem/router provided by BSNL are same as model names. You can change it from modem/router’s admin console.</p>
<p>Enter the address of some DNS servers in /etc/resolv.conf. These DNS adresses are provided on BSNL’s instruction manual.<br />
$ sudo vi /etc/resolv.conf<br />
The entry will be of type nameserver 61.1.96.71, where the IP will be the one provided in your BSNL broadband instruction manual.</p>
<p>Access the router’s management interface via a browser by typing the address 192.168.1.1. The admin username/password is admin/admin<br />
Set the connection type to for PVC0 connection as ‘PPPoE’. On WA1003A modem/router, this comes under ‘Setup’<br />
Enter your user name and password (username is of the form xyz@dataone)<br />
Set the modulation to GDMT. On WA1003A modem/router, this comes under ‘Setup->Modem Setup’</p>
<p>Save and restart the modem/router. On WA1003A modem/router, this can be done under ‘Tools->System Commands’ It will take 2-3 minutes for the box to come up again</p>
<p>Wireless security</p>
<p>In admin console, ‘Advanced->Wireless Security’ set security to WEP.<br />
Add a 64 bit authentication key, 10 characters in hex format i.e 0-9 and A-F</p>
<p>Add this key to wireless NIC configuration.</p>
<p>$ sudo iwconfig wlan0 key A1B2C3D4E5<br />
Save settings in router and restart it. Reactivate the card, probably using ifdown and ifup</p>
<p>One stop instruction for wireless NIC:</p>
<p>Add following lines to /etc/network/interfaces<br />
iface eth0 inet static<br />
address 192.168.1.10<br />
netmask 255.255.255.0<br />
gateway 192.168.1.1<br />
wireless-essid WA1003A<br />
wireless-key A1B2C3D4E5</p>
<p>auto eth0<br />
Most of the steps can also be done from menu System->Administration->Network in GUI</p>
<p>(Note: Most of the instructions are based on the document at http://www.calcuttatelephones.com/dataoneinstall/bb008.html)</p>
<p>Alternative</p>
<p>Note: Ubuntu would trigger the connection if configured this way.(Router on -> Ubuntu on -> Connected)</p>
<p>Make sure your Ethernet card is configured<br />
Open a Terminal: Applications->Accessories->Terminal<br />
Enter sudo pppoeconf<br />
Follow instructions on the screen. The defaults are fine for most cases. Make sure you enter your username and password carefully. Beware : The password will be visible on the screen.</p>
<p>Checking Usage</p>
<p>Casanova has made a python script for checking dataone usage.<br />
NOTE: For bug reports, feature requests go to http://code.google.com/p/doufs/<br />
Dataone usage script</p>
<p>MTNL Triband</p>
<p>MTNL Triband offers DSL 502T Dlink Router for ADSL for those who opt not to buy one. However, I would recommend buying the same router, if one chooses not to pay rent to MTNL for this modem. This router has known to work without issues.</p>
<p>Users who try out Ubuntu Live CDs would have to set up DNS as shown below. For Kubuntu Users, Konqueror automatically detects the network (if through ethernet) and one can access without any configuration.</p>
<p>Ethernet</p>
<p>For users, who have connected their router to the Ethernet card, only have to setup the DNS address as provided by MTNL.<br />
Follow the following steps<br />
Go to System->Administration->Network<br />
Move to the DNS Tab<br />
Click on the default entry (which could be 192.168.1.1) and click on “Delete” button<br />
Click on “Add” button and enter the DNS address. You would have to call up on 1504 and get DNS addresses.</p>
<p>USB</p>
<p>Works out of the box for Kubuntu 6.06 (and onwards &#8211; need confirmation)<br />
Works for Ubuntu 7.10 (One would have to setup the DNS. Please see the ethernet section above to setup the DNS)</p>
<p>Checking usage</p>
<p>To find out your usage, you can log on to http://register.mtnl.net.in and input your telephone number as “username” and the password as your “CA” number, if you haven’t changed it. Click on Account Summary on the left pane, when you are in.</p>
<p>Sify</p>
<p>Obtaining the sify dialer</p>
<p>Download the client from the same place where you got the windows client. This should ideally be http://202.144.65.70:8090 , and at the time of writing the file is can be found at http://210.18.11.199:81/bbandclient/sifyconnect-1.3-bin.tar.gz. or http://210.210.4.74:81/bbandclient/sifyconnect-1.3-bin.tar.gz</p>
<p>Installing the dialer</p>
<p>Untar the the dialer using your favorite untar program , or do this :</p>
<p>$ tar -xzvf sifyconnect-1.3-bin.tar.gz<br />
Then run the following commands as root :</p>
<p>$ cd sifyconnect-1.3-bin/<br />
$ bash install.sh</p>
<p>Using the dialer</p>
<p>Run the following commands :</p>
<p>$ sifyd<br />
$ sifyconnect -l<br />
This will prompt you for your username &#038; password , give them. Once you do that your as good as logged in , you can now close the terminal and use the internet.</p>
<p>Troubleshooting</p>
<p>Sometimes the client on trying to log in says something like –</p>
<p>“Login failed : Get the latest version of the client”</p>
<p>This is because after upgrading it’s protocol in some places, sify has discontinoued support for the old protocol . It has also stopped development of it’s GNU/linux and Mac clients , so you might have to call sify customer care and tell them your problem. They probably just allow you IP and account to use the old protocol It took them about 8 hours to fix the problem when I had it. </p>
<p>Another problem that might occur would be like –</p>
<p>“-bash: /etc/init.d/sifybb: No such file or directory”</p>
<p>Pacenet</p>
<p>Following is a guide for configuring Pacenet on Fedora. Should be somewhat helpful for Ubuntu users. http://www.fedoraforum.org/forum/archive/index.php/t-82441.html</p>
<p>Airtel Broadband</p>
<p>Adsl Router</p>
<p>PPPoE (non bridged)</p>
<p>In this mode, your router will connect as sson as it is switched on. If you are billed for time connected then you need to use bridged mode</p>
<p>Go to System->Administartion->Networking and make sure you have configured an ip (192.168.1.2, for example) and have set your DNS (supplied by Airtel) and Default gateway (192.168.1.1). If your router is handling DHCP then you needn’t configure an ip.<br />
Navigate to http://192.168.1.1<br />
Enter the username and password (default is admin for both)<br />
Click Run Wizard<br />
Click Next<br />
Select your time zone (+5:30)<br />
Click Next<br />
Select <PPPoE/PPPoA Choose this option if your ISP uses PPPoE/PPPoA. (For most DSL users)><br />
Click Next<br />
Enter your username and password. VPI = 1, VCI = 32, Connection Type = PPPoE LLC<br />
Click restart</p>
<p>Hathway</p>
<p>Note down the IP address, gateway and DNS server addresses given by Hathway.<br />
Navigate to System => Administration => Network<br />
Enter your password<br />
In Connections tab, select your ethernet card, in my case it’s Wired Connection(eth1)<br />
Click on properties and set the tabs as follows, (replace the details with your own details)<br />
Configuration: Static IP address</p>
<p>IP Address: 202.88.100.15</p>
<p>Subnet Mask: 255.255.255.0</p>
<p>Gateway Address: 202.88.100.5</p>
<p>Go to DNS Tab.<br />
Click on Add next to DNS box and type the address of DNS server.<br />
For adding more DNS servers, repeat the above step.<br />
Click on Close to finish.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ameyapandit.com/?feed=rss2&amp;p=14</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exim Mail Queue</title>
		<link>http://www.ameyapandit.com/?p=12</link>
		<comments>http://www.ameyapandit.com/?p=12#comments</comments>
		<pubDate>Mon, 08 Mar 2010 09:14:55 +0000</pubDate>
		<dc:creator>Ameya</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[exim]]></category>
		<category><![CDATA[mail server]]></category>

		<guid isPermaLink="false">http://www.ameyapandit.com/?p=12</guid>
		<description><![CDATA[Like thousands of others Email Server Administrator problem, our Exim mail server was targeted by spammers. I found that there was approximately 10000 emails residing in my mail queue. The exact number of emails in the queue were known by running :
exim -bpc
It was a tough job to clean up the queue. I tried the <a href="http://www.ameyapandit.com/?p=12" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>Like thousands of others Email Server Administrator problem, our Exim mail server was targeted by spammers. I found that there was approximately 10000 emails residing in my mail queue. The exact number of emails in the queue were known by running :<br />
exim -bpc</p>
<p>It was a tough job to clean up the queue. I tried the “exiqgrep” command to clean the emails those were older than 1 day from the queue.</p>
<p>exiqgrep -o 86400 -i | xargs exim -Mrm</p>
<p>Where 86400 are the seconds of 1 day.</p>
<p>However the above command was not of much help instead it keep on giving me errors. I had to think calmly to delete all the spams. I first decided ran the below command to Run additional queues in the background.</p>
<p>exim -qff &#038;</p>
<p>I given this command multiple times. So that many queues were running at the same time. The next step was to clear all the Frozen messages from the mail queue.</p>
<p>exim -bpr | grep frozen | awk {’print $3′} | xargs exim -Mrm</p>
<p>Clearing the Frozen messages was a wise decision as it the mail queue was showing now 4000 messages in it. The other job was to find similar messages. I checked the queue again.</p>
<p>exim -bpr |more</p>
<p>I could guess that most of the emails are 2 or 3 days older. To clear all these spams the next command was helpful, which checked the mail queue then searched “2d” in it and taking the 3 argument which is Message Id… it deleted all those emails.</p>
<p>exim -bpr | grep 2d | awk {’print $3′} | xargs exim -Mrm</p>
<p>The queue was under my control after clearing the email older to two and three days. Still there were couple of hundreds emails in the queue. I noticed that there are many emails without a sender residing in the queue. It was very simple to clean these spams now.</p>
<p>exim -bpr | grep <> | awk {’print $3′} | xargs exim -Mrm</p>
<p>Yippie… I cleared the mail queue.</p>
<p>Some other useful Exim Queue managing commands are below :</p>
<p>exim -Mvh msgid	View message header<br />
exim -Mvb msgid	View message body<br />
exim -M msgid	 Force delivery of message<br />
exim -v -M msgid	View the transact of message</p>
<p>Force another queue run<br />
exim -qf</p>
<p>Force another queue run and attempt to flush the frozen message<br />
exim -qff</p>
<p>View the log for the message<br />
exim -Mvl msgid</p>
<p>Remove message without sending any error message<br />
exim -Mrm messageID</p>
<p>Giveup and fail message to bounce the message to the Sender<br />
exim -Mg messageID</p>
<p>How much mail in the queue?<br />
exim -bpc</p>
<p>How many Frozen mails in the queue<br />
exim -bpr | grep frozen | wc -l</p>
<p>Deleteing Frozen Messages<br />
exim -bpr | grep frozen | awk {’print $3′} | xargs exim -Mrm</p>
<p>To force exim update:<br />
/scripts/eximup –force</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ameyapandit.com/?feed=rss2&amp;p=12</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Exim ACL</title>
		<link>http://www.ameyapandit.com/?p=10</link>
		<comments>http://www.ameyapandit.com/?p=10#comments</comments>
		<pubDate>Mon, 08 Mar 2010 09:13:12 +0000</pubDate>
		<dc:creator>Ameya</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[exim]]></category>
		<category><![CDATA[mail server]]></category>

		<guid isPermaLink="false">http://www.ameyapandit.com/?p=10</guid>
		<description><![CDATA[We cannot stop spam completely but we definitely can reduce the number of spams and/or the spam attack using some good logical ACLs. The ACL I found very useful are given below. Hope you will also find it useful to protect your EXIM server against spam.
These are very simple ACLs. You need to edit the <a href="http://www.ameyapandit.com/?p=10" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>We cannot stop spam completely but we definitely can reduce the number of spams and/or the spam attack using some good logical ACLs. The ACL I found very useful are given below. Hope you will also find it useful to protect your EXIM server against spam.</p>
<p>These are very simple ACLs. You need to edit the Exim’s main configuration file: exim4.conf.template</p>
<p>The code should be as below..</p>
<p>################################################## # MAIN CONFIGURATION SETTINGS #</p>
<p>##################################################</p>
<p>Under the main configuration search the ACL Configuration.</p>
<p>##################################################</p>
<p># ACL CONFIGURATION #<br />
# Specifies access control lists for incoming SMTP mail #</p>
<p>##################################################</p>
<p>Often spammers send for the HELO argument the name or the IP of your host. We can specify our own domain with the ipaddress to reduce the spams. My own domain is “ameyapandit.com” and my own IP is 208.113.170.151.</p>
<p>—————————————————————————————————————————-</p>
<p>acl_check_helo:<br />
accept<br />
hosts = +own_hosts</p>
<p># If the HELO pretend to be this host<br />
deny condition = ${if or { \<br />
{eq {${lc:$sender_helo_name}}{ameyapandit.com}} \<br />
{eq {${lc:$sender_helo_name}}{208.113.170.151}} \<br />
} {true}{false} }</p>
<p># by default we accept<br />
accept</p>
<p>—————————————————————————————————————————-</p>
<p>Sender checking</p>
<p>We can refuse some senders, from some marketing companies.</p>
<p>acl_check_sender:<br />
deny senders = /etc/exim4/filters/sender_reject.list<br />
accept</p>
<p>—————————————————————————————————————————-</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ameyapandit.com/?feed=rss2&amp;p=10</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Batchelor’s Year (Edited: Sensored)</title>
		<link>http://www.ameyapandit.com/?p=4</link>
		<comments>http://www.ameyapandit.com/?p=4#comments</comments>
		<pubDate>Mon, 08 Mar 2010 09:07:13 +0000</pubDate>
		<dc:creator>Ameya</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[batchelor]]></category>
		<category><![CDATA[magnet technologies]]></category>
		<category><![CDATA[mumbai]]></category>

		<guid isPermaLink="false">http://www.ameyapandit.com/?p=4</guid>
		<description><![CDATA[It was 10th October 2006, I joined Magnet Technologies in Kandivali E. The traveling if calculated from my home till the office was very hectic.
Dombivli to Dadar : 60 mins
Dadar to Kandivali : 40 mins
Kandivali stn to office : 15 mins
other time : 20 mins (waiting for right train.. crossing through bridges.. and all)
The one <a href="http://www.ameyapandit.com/?p=4" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste" style="text-align: justify;">It was 10th October 2006, I joined Magnet Technologies in Kandivali E. The traveling if calculated from my home till the office was very hectic.</div>
<div id="_mcePaste" style="text-align: left;">Dombivli to Dadar : 60 mins</div>
<div id="_mcePaste" style="text-align: left;">Dadar to Kandivali : 40 mins</div>
<div id="_mcePaste" style="text-align: left;">Kandivali stn to office : 15 mins</div>
<div id="_mcePaste" style="text-align: left;">other time : 20 mins (waiting for right train.. crossing through bridges.. and all)</div>
<div id="_mcePaste" style="text-align: left;">The one way time to reach office was approximately 2.5 hours.. so daily I had to spend 5 hours only in traveling. The office timing were of 9 hours. Aggregate my 14 hours in a day were supposed spend in this. I was not ready to sacrifice my 5 hours only in traveling for getting nothing. I decided to stay near the office. I was staying in Bandra with my uncle during the initial months. It was quite good experience to stay in Bandra. Bandra is coolest and happening suburbs in Mumbai. My uncle, aunt and brothers were happy with my stay and didn’t had any objection. I was very fortunate for this. I heard from many of my friends and colleagues how there relatives treat them if you stay with them. I was really lucky having such a good relatives. However I didn’t wanted to disturb much in their personal life and was desperately in search of a new house nearby office and fortunately I met Vivek Danej.. the newly joined php developer. I moved to Kandivali .. ‘Thakur complex.’ What a cool place it was!! We had a swimming pool below our balcony however I could not get an opportunity to swim there.</div>
<div id="_mcePaste" style="text-align: left;">I was staying there with Mango (Mangesh), Aslam Bhai (Vivek) and Nagoba (ManojKumar). Later my collage met Pranav replaced Nagoba. We had lot of fun and masti.. cooking Egg Burjee.. Dal Khichadi… Chicken.. and many other Sabjees. I was quite lucky again.. about my room mates. All were very co-operative, friendly, helpful, caring and fun loving. Vivek was the best room mate I had. May 2007 was very stressful for the roomies as we had to leave the place. We were now in search of another roof to hide. Again.. another uncle of mine were there for my help. He suggested a room of his relative (Kalpesh) at Chandivali’s Mhada Complex.</div>
<div id="_mcePaste" style="text-align: left;">Me with Aslam and Pranav shifted to Chandivali. The house was on the 6th floor. We got down our belongings from the tempo and checked for the elevator. oooooooooppps!!! Unfortunately the lift was not working. We had very heavy things with us like the Bed.. cylinder.. my dumbells of 40 pounds.. many pans and plates and other cooking material and of course our bags. Huh ! We three get all the things on our shoulder upto the 6th floor. We were very tired. We opened the room and found the next problem awaiting for us. The room was not vacant since the built up and was full of cement and dust all over. We then cleaned and washed the room and got the things in. The balcony view was very cool. We had a direct view of some part of the International Airport from our balcony. And as it was on 6th floor we had blessed with fresh air.</div>
<div id="_mcePaste" style="text-align: left;">Again.. next issue we found was regarding the electricity. The room didn’t had a meter setup yet. I had to stay at Dadar with my brother. But Aslam and Pranav stayed on the room without Lights.. and Fan for two days. I cant believe how did they manage those two days. When I came back I got all set. Pranav went back to his home and we got two new roomies. Pakya and Umya who were Aslam’s friends.</div>
<div id="_mcePaste" style="text-align: left;">The room was very small. It was the typical room where most the Mumbaikars live. Hardly 250 sq feet area and four people who were supposed to leave the room for office on the same time. But we shared a very understanding relation. Overall it was quite good experience staying with the roomies. I learned different things from all the room mates I had. It was 18th October, my last day in the Chandivali room. The roomies gave me a pleasant surprise party. They had ordered delicious food from the nearby hotel. Everyone had a few words about me during the dinner. They also asked me to share my experience staying with them. These will be the unforgettable days of my life.</div>
<p style="text-align: left;">Comments:</p>
<p style="text-align: left;"><span id="more-4"></span></p>
<p style="text-align: left;"><span style="color: #000000; font-family: 'Times New Roman'; line-height: normal; font-size: small;"> </span></p>
<ol class="commentlist" style="text-align: left;">
<li id="comment-10" class="alt"><cite>Vivek</cite> Says:<br />
<small class="commentmetadata"><a href="http://web.archive.org/web/20071221232050/http://www.ameyapandit.com/#comment-10">October 19th, 2007 at 2:32 am</a></small>It was really a nice experience with passed year.Is it really a passed year ???? ooofff…..How fastly a year finished !!! Great Memories as u written here..Will definitely miss you Don..<br />
All The Best.</p>
<p>Vivek .<br />
Oct 19,2007</li>
<li id="comment-11"><cite>Sai Chitale</cite> Says:<br />
<small class="commentmetadata"><a href="http://web.archive.org/web/20071221232050/http://www.ameyapandit.com/#comment-11">October 22nd, 2007 at 7:32 am</a></small>Ameya,<br />
must say, amazingly written article.<br />
i was tempted to comment on it as soon as i read it. i was the one , infact i was the lucky one to be with you while u were about to take all the important decisions and make some vital changes in your life. i must say, seriously, now that i think of all whetever u have done in this 1 yr, i feel its really creditable on your part to have done everything successfully. no frustrations, no regrets on the decisions made by you, confident on the things u decided( inspite of most of the people being against you in the staying away from home ).<br />
i have seen you change so much recently and all for the good.<br />
i am so proud of you. seeing where you are right now. and must say… you made me famous too <img class="wp-smiley" src="http://web.archive.org/web/20071221232050/http://www.ameyapandit.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" /> .<br />
no one would have done that.<br />
thanks. and i am extremely happy seeing you like this.<br />
keep posting more n more atricles and i will be there to comment<br />
cheers dude !<br />
you rock !<br />
sAi ChItAlE.</li>
<li id="comment-12" class="alt"><cite>Sonia</cite> Says:<br />
<small class="commentmetadata"><a href="http://web.archive.org/web/20071221232050/http://www.ameyapandit.com/#comment-12">October 23rd, 2007 at 4:22 am</a></small>well….really cool blog…<br />
I cd visualize everything while reading…bt u must hav enjoyed all d happy-sad moments…<br />
keep it up buddy.</p>
<p>BTW u dint tell me ever dt Vivek is ur ex-room mate!!!!</li>
<li id="comment-15"><cite>Kunal Hadkar</cite> Says:<br />
<small class="commentmetadata"><a href="http://web.archive.org/web/20071221232050/http://www.ameyapandit.com/#comment-15">October 23rd, 2007 at 12:42 pm</a></small>Yeah even i am lucky that i shared couple of days at Ameya’s place at Chandivli with his roomies yes it was a nice experience.</p>
<p>Good Luck,<br />
Ameya for your new career start &amp; welcome back home.</li>
<li id="comment-16" class="alt"><cite><a rel="external nofollow" href="http://web.archive.org/web/20071221232050/http://blog.nishitshah.com/">Nishit Shah</a></cite> Says:<br />
<small class="commentmetadata"><a href="http://web.archive.org/web/20071221232050/http://www.ameyapandit.com/#comment-16">November 2nd, 2007 at 2:52 am</a></small>I know Ameya for more than a year now from the time we were working in Katalyst and we all really had a gr8 time there..Seems you had a ball wid ur roomies. Hav neva got a chance like this to stay away from home with pals.. wud surely love this sum day! All da best 4 ur next job !</li>
<li id="comment-19"><cite>Aarya</cite> Says:<br />
<small class="commentmetadata"><a href="http://web.archive.org/web/20071221232050/http://www.ameyapandit.com/#comment-19">November 12th, 2007 at 2:22 am</a></small>Amu,<br />
Great write-up.Made me wonder about how millions of Mumbaikars go through this everyday and still emerge so much stronger, smarter and wiser.I’m so glad you got the opportunity to do this. I’m sure you will never regret it. Good Luck on your new job and always stay positive!<br />
God Bless,<br />
Aarya<br />
xo</li>
<li id="comment-21" class="alt"><cite><a rel="external nofollow" href="http://web.archive.org/web/20071221232050/http://www.ameyapandit.com/">Ameya</a></cite> Says:<br />
<small class="commentmetadata"><a href="http://web.archive.org/web/20071221232050/http://www.ameyapandit.com/#comment-21">November 12th, 2007 at 8:53 am</a></small>Thankssss a lot Vivek… Sai…. Sonia… Kunal.. Nishit… and Aarya.</p>
<p>All I am is b’coz your love ‘n friendship. Keep loving <img class="wp-smiley" src="http://web.archive.org/web/20071221232050/http://www.ameyapandit.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></li>
<li id="comment-23"><cite><a rel="external nofollow" href="http://web.archive.org/web/20071221232050/http://flexworld.wordpress.com/">Rajesh Bhadra</a></cite> Says:<br />
<small class="commentmetadata"><a href="http://web.archive.org/web/20071221232050/http://www.ameyapandit.com/#comment-23">November 12th, 2007 at 11:28 pm</a></small>Hey,<br />
I feel good to hear that you had a great time with your office colleagues/friends. Even I want to do it. But kinda scared bcoz I have never lived alone ever. I had been to trips, stayed at friends place for weeks, et al. But I had never stayed away from home for months. Bit scared to do things all by myself. I doubt,Would I be able to do things on my own.<br />
Any tips???</li>
<li id="comment-24" class="alt"><cite><a rel="external nofollow" href="http://web.archive.org/web/20071221232050/http://www.ameyapandit.com/">Ameya</a></cite> Says:<br />
<small class="commentmetadata"><a href="http://web.archive.org/web/20071221232050/http://www.ameyapandit.com/#comment-24">November 12th, 2007 at 11:46 pm</a></small>Hie Rajesh,<br />
I think all of the things we do once for the first time. You .. yourself have the tips. Read your last sentence.. <img class="wp-smiley" src="http://web.archive.org/web/20071221232050/http://www.ameyapandit.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" /> “I doubt,Would I be able to do things on my own.”<br />
You will definitely enjoy staying like it If you are ready.. to<br />
1. cook food or help cooking food..<br />
2. wash your cloths<br />
3. wait for your chance to use the bathroom (very IMP)<br />
4. manage even if someday your roommate is drunk and boring you<br />
5. share everything you have (material.. and emotional.. not others lol )<br />
6. clean the room once in a while</p>
<p>These are some of the difficult times.. however the relation you share with your roomies.. is awesome. At times there are your parents.. your kids.. your brother/sister.. your teacher.. your enemy.. your everything. Yes even sister ( we got our Rakhis tied by our roomies.. as our sister were far away)</p>
<p>This place is too short to describe anything. You just have to experience it.</p>
<p style="text-align: left;">All the best.</p>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.ameyapandit.com/?feed=rss2&amp;p=4</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
