In this blog I am going to tell you how to check the isibang.ac.in mails without even loging in at isibang.ac.in.
All you need is one Gmail account. (Now every second netizen is having)
I follow the following steps:
Step 1.
Login to your Gmail account.
Step 2.
Go to “Settings” at the right top corner and then the “Accounts and Import” tab.
Step 3.
Look for “Check mail using POP3” and click “Add POP3 email account”.
Step 4.
Give your isibang.ac.in email id.
Step 5.
Fill the details according to the following screenshot.
Save and click next.
It will ask you whether you want to send mails also from this account. If you want then click next. One authorisation email will be sent to your mailbox. You have to activate it.
PS: This will allow you not only to check mails but also to send mails using address as @isibang.ac.in
Step 6.
The mailbox will be cheked.
Final step.
Check your Gmail inbox.
Voila !!!!
Suppose you are a webmaster u know the value of Bandwidth. There can be people who can hotlink your images/files thereby stealing your bandwidth. In this case the actual traffic goes to the one who steals, but you need to pay the price of bandwidth.
Now this tut is to help you to avoid people hotlinking your files, if u r using Apache Webserver.
Open the .htaccess file on your server. This is a configuration file used to set permission for access made on your files. In some versions of apache this file is /etc/apache2/sites-enabled/default00
The following code can be used on ur .htaccess file to avoid Hotlinking:
<Files .htaccess>
deny from all
</Files>
RewriteEngine on
RewriteCond %{HTTP_REFERER}!^$
RewriteCond %{HTTP_REFERER}!^http://YOURDOMAIN.com.*$ [NC]
RewriteCond %{HTTP_REFERER}!^http://www.YOURDOMAIN.com.*$ [NC]
RewriteCond %{HTTP_REFERER}!^http://YOURIPADDRESS.*$ [NC]
RewriteCond %{HTTP_REFERER}!^http://www.YOURIPADDRESS.*$ [NC]
RewriteCond %{HTTP_REFERER}!^http://www.google.com.*$ [NC]
RewriteCond %{HTTP_REFERER}!^http://google.com.*$ [NC]
RewriteCond %{HTTP_REFERER}!^http://216.239.*.* [NC]
RewriteRule .*\.(gif¦jpg¦jpeg¦zip|pdf|exebmp¦png¦mpg¦mpeg¦avi¦ wmv¦mov¦asf)$ - [F]
Using the above code, you allow the files on your site to be linked only from your site and Google (216.239.*.* is Google's IP). If you want, you can also remove the lines with Google's URL.
<Files .htaccess> deny from all </Files>
This code is to prevent people from seeing the contents of ur .htaccess file itself.
the RewriteCond checks the HTTP referrer which has linked to the file/image to be downloaded. It checks whether the file format is as set in RewriteRule, and if it does, it checks the domains to which permission has been granted. In case of Hotlinked files, Access is denied.
Cheers Vinit
After the proper installation of DSpace. The DSpace instance can be accessed by typing this url in address bar of web browser.
After the integration of Apache Tomcat and Apache 2 the DSpace instance can be accessed by
In this blog I'll explain how you can connect Apache Tomcat with Apache 2 webserver so that you'll have to open only one port and can provide better security.
| Check your ISI Bang mails through GMail | 2010/01/09 14:32 | Vinit Kumar | In this blog I am going to tell you how to check the isibang.ac.in mails without even loging in at isibang.ac.in. All you need is one Gmail account. (Now ever… | 0 Comments |
| List of popular Journals in Library and Information Sciences | 2009/10/06 23:29 | Vinit Kumar | * ACM Transactions on Inf Syst * ACM Computing Surveys * ACM Tr on Internet technology * Annals Lib Sci & Inf Study * ASLIB Proceedings * Canadian Jo… | 0 Comments |
| Avoiding HotLinking of Images/Files. on Apache/Tomcat | 2009/10/01 14:03 | Vinit Kumar | Suppose you are a webmaster u know the value of Bandwidth. There can be people who can hotlink your images/files thereby stealing your bandwidth. In this case t… | 0 Comments |
| Integrating Apache tomcat with Apache2 for DSpace | 2009/09/11 21:25 | After the proper installation of DSpace. The DSpace instance can be accessed by typing this url in address bar of web browser. After the integration … | 0 Comments |