April
29th 2008
How does Spam filter works?

Posted under Uncategorized

The server-side Spam filter works in conjunction with the client-side (end user) Web-Based Email interface. In essence, the end user utilizes the client-side interface to submit selected email messages for spam analysis. By analyzing all the messages the spam filter compiles information that enables it to detect and intercept spam. As an increasing number of email messages are analyzed, the filter becomes increasingly adept at intercepting electronic mail that this particular user considers spam.

No Comments »

April
29th 2008
Advantages of IMAP ?

Posted under Uncategorized

1)IMAP’s main advantage is that the user can see all the message headers at a glance, and open only those which are required this saves significant download time especially if users often forward or delete messages without reading them.

2)It provides freedom for user to download attachments at anytime from anywhere.

3)IMAP enables server-based searching and selection to minimize data transfer.

4)It support for simultaneous update and update discovery in shared folders.

5)It’s Superior online performance.

6)It’s ability to manipulate remote folders other than INBOX is fundamental to online and disconnected operation. This means being able to save messages from one folder to a another one, being able to access archived messages subsequently, and allowing for multiple incoming message folders.

7)Once you create a Spamscreen folder on the server, SPAM is automatically filtered there. The folder can be periodically reviewed if you use an IMAP mail program to check your filters.

In short, IMAP is a fantastic way to work with email.

No Comments »

April
29th 2008
What is IMAP?

Posted under Uncategorized

IMAP Stands for Internet Message Access Protocol.It was originally developed in 1986 at Stanford.IMAP is gradually replacing POP as the main protocol used by email clients in communicating with email servers.IMAP includes more functions than the similar and popular POP mail protocol.It can be used by customers who need to keep their mail on a remote server.By using IMAP an email client program can not only retrieve email but can also manipulate message stored on the server, without having to actually retrieve the messages. So messages can be deleted, have their status changed, multiple mail boxes can be managed, etc.The latest version of IMAP that is IMAP4, is similar to POP3 but supports some additional features. For example, with IMAP4, you can search through your email messages for keywords while the messages are still on the mail server.

Leaving your messages on the server is very convenient since it means that you can retrieve them from anywhere in the world. When you are setting your delivery options, “IMAP” appears in the e-mail address so that the GUMail system will leave your e-mail messages on the server. People who send you e-mail should not include “IMAP” as part of your e-mail address.

No Comments »

April
29th 2008
Define Spam Filter?

Posted under Uncategorized

It is the concept of detecting and intercepting unwanted bulk mail — or “spam” — before it reaches a recipient’s mailbox. Spam filters detect bulk mail through the occurrence of certain phrases and known as spammer IP addresses in incoming mail. However, because distributors of spam are increasingly innovative in their efforts to circumvent the spam filters that protect email users’ mailboxes, spam is a running target, and developers of spam-filtering technology are constantly being challenged in their quest to keep the bulk-mail onslaught at bay. Thus, in order to effectively shield email users from spam, a spam filter must be flexible. The Spam filter enables users to personalize the filter by training it to detect and intercept mail that fit each user’s particular preference and definition of spam.

No Comments »

April
29th 2008
Linux:Disable direct root login

Posted under Uncategorized

By permitting the root user to login directly is a major security issue.
We will show you how to disable it. So that you can login as root but not directly, reducing the security issue.

This forces the hacker to  guess 2 seperate passwords to gain root access.

First of you will need to login as your admin user in SSH, then after that switch to the super user with the su command to get root.

We will be forcing the use of SSH protocol 2, which is a newer, more secure SSH protocol
There are some more ways to help your server stay safe from the Hackers. If you are using cPanel be sure that you add your admin user to the ‘wheel’ group so that you will be able to ’su -’ to root, otherwise you may lock yourself out of root.

1] SSH into your server as ‘admin’ and get root access by su

2] Copy and paste this line to edit the file for SSH logins
pico -w /etc/ssh/sshd_config

3] Find the line
Protocol 2, 1

4] Uncomment it and change it to look like
Protocol 2

5] Next, find the line
PermitRootLogin yes

6] Uncomment it and make it look like Permit Root Login no

7] Save the file Ctrl+X then Y then enter

8] Now you can restart SSH
/etc/rc.d/init.d/sshd restart

Now, no one will be able to login to root with out first loggin in as admin and ’su -’ to root, and you will be forcing the use of a more secure protocol. Be sure that you remember both the passwords.

No Comments »

April
29th 2008
What is Apache Server ?

Posted under Uncategorized

Ans: It is a server which is Often referred to as simply Apache, is a web server notable for playing a key role in the initial growth of the World Wide Web. It was the 1st viable alternative to the Netscape Communications Corporation web server , and has since evolved to rival other Unix-based web servers in terms of functionality and performance. Since April 1996 Apache has been the most popular HTTP server on the World Wide Web; since March 2006 however it has experienced a steady decline of its market share. As of August 2007 Apache served 50% of all websiteThe Apache HTTP Server Project is an effort to develop and maintain an open-source HTTP server for modern operating systems including UNIX and Windows NT. The main Aim of this project is to provide a secure, efficient and extensible server which provides HTTP services in sync with the current HTTP standards.This  Apache web server  project is a main Foundation of the Apache Software .The core development of this Apache Web server is done by a group of 20 volunteer programmers, called the Apache Group. However, because the source codeof Apache is freely available, anyone can adapt the server for specific needs, and there is a large public library of Apache add-ons. In many respects, development of Apache is similar to development of the Linux OS.

No Comments »

April
29th 2008
How to install cPanel subversion on VPS?

Posted under Uncategorized

Before proceeding make a backup of your VPS because this is a  work in progress , In few situations you can receive some errors even after you have followed all these steps. We will work with you to solve them and hopefully produce a firm guide with a list of potential errors.

These are the following steps:-

1) Install subversion : It’s very easy to install subversion on centos, just a use Yellow dog Updater Modified

2) Now check if “perl-URI” is installed or not. If in case it is not installed than you can install it by using YUM install perl-URI.

3) After that create a repository.

cd /var/
mkdir -p repo/source/
svnadmin create /var/repo/source

Note:By using above commands you can create a subversion repo named source. You can check inside the directory if lot of files are created. If created subversion works fine.

4) Now you can proceed with Apache 2 installation. We have chosen Apache 2.0.59

wget the location of Apache

tar -zxvf httpd-2.0.59.tar.gz
cd httpd-2.0.59
./configure –prefix=/usr/local/apache2 –with-port=2080 –enable-dav –enable-dav-fs –enable-proxy –enable-rewrite –enable-so
make
make install
/usr/local/apache2/bin/apachectl start
==
Apache2 installed at port 2080 with dav , proxy and rewrite and started

5) After this we have to compile mod_svn for apache 2. For this you have to download the SVN source from the subversion site, first please check the version of subversion using yum

Next you have to download the same version of subversion source, untar it and need to compile mod_svn now:

./configure –with-apxs=/usr/local/apache2/bin/apxs
make
make install

Now mod_svn is installed and activated on apache2.

6) Configure Apache 2 for svn. For this change the settings httpd.conf of apache 2. This file will be located here /usr/local/apache2/conf/httpd.conf

<location>
DAV svn
SVNPath /var/repo/source
</location>

After making the above changes Restart Apache2. Now you should be able to see the svn files from this url http://localhost:2080/ or http://<serverip>:2080. You should be able to see the subversion files at revision 0. There will be nothing in it as we have not added any files.

7) Now Add proxy to apache 1.3 so that we can internally proxy the files between Apache 2 and Apache 1. You can download the source of currently installed apache 1.3 or you can find the same in /root/installd/buildapache/apache_1.3.xx/src/modules/proxy
Just goto that directory and run this command

/usr/local/apache/bin/apxs -i -c *.c

This will install mod_proxy to apache 1.3

8) You have add this setting to apache 1.3 conf file to proxy the http://localhost:2080/ in standard port 80 of some website.
Add these line to any virtual host present in the conf file.

LoadModule proxy_module modules/mod_proxy.so
AddModule mod_proxy.c
ProxyRequests Off
ProxyPass / http://locahost:2080/

No Comments »

April
29th 2008
Customize Error Pages in cPanel

Posted under Uncategorized

By using cPanel you can create your own Custom Error Pages for your website.This pages is used when a user types in the wrong url or enters incorrect information in the browser you can inform them with using nice looking Error pages than the plain old ones like 400 Bad request, 401 Authorization Required, 403 Forbidden, 404 Wrong page, 500 Internal Server Error etc.Companies often customize error pages to brand them with a specific corporate image and a link to their home page.

By following this steps you can Customize Error Page:-

1) First click on the Error Pages link under the ‘Site Management’ header in Cpanel.

2) After that click on the button of the required Error Page, such as the 500 button.

3) Now Enter the HTML code for the Error Page. You can use the buttons at the top of the page to insert variables into the displayed code.
Example:

<h1>404 Not Found</h1>
<p>The requested page, <!–#echo var=”REQUEST_URL” –> ,is not available.</p>

4) Now click on the SAVE button.

No Comments »

April
29th 2008
Reset password in cPanel

Posted under Uncategorized

To Reset your domain password Follow these steps:

1) First click on the Change Password button on the home page.

2) In the Old Password field enter your current password .

3) Now Enter your new password in the New Password and New Password (again) fields.

4) Click on the Change your password now! button. Your password has now been changed.

No Comments »

April
29th 2008
What is disk Usage Viewer in cPanel?

Posted under Uncategorized

The Disk Usage Viewer of cPanel enables you to see exactly how much disk space is being taken up by various parts of your web site.

You can easily use the Disk Usage Viewer by following these steps:-

1)  Click on the Disk Usage button on the home page .

2) A list of items that take up space on your web site is now displayed from biggest to smallest. Now Click on the required buttons to view the use of space on your web site.

No Comments »

« Prev - Next »