Wednesday, January 23, 2013

What Is CLSID?

Before you go ahead and download a registry cleaner understand why it is necessary. As a web page loads on your system, you may be prompted to install several ActiveX components before the page can be fully downloaded. This is so that the browser can interpret the ActiveX components and display them properly on the system. This only would only occur if the controls used in the web page were not already on the system. If you decline permission for the installation, the page will not function properly. However, once these ActiveX controls are on your system, you won't have to download them again, even when you come across them on other web sites. These downloads clutter up the registry over time and need to be removed with the help of some registry shareware cleaner.

Other ID Tags

So how can the web page determine that the required ActiveX controls are not installed on the system or not? The browser does this by referring to the 'CLSID' in the 'OBJECT' tag of the web page. To cut a long explanation short, an ActiveX control is added to a web page using the and container tags. The 'CLSID' is unique to each ActiveX component; it is with the 'CLSID' that you specify which control you are using. The Registry has a special section for CLSID and they run into thousands of ID's. The useless records in the Registry have to be removes with the aid of a registry cleaner. Free PC registry cleaners are available for download and help keep the system running smoothly. If you were to look at a CLSID it would look something like this: CLS ID: 99B42120-6EC7-11CF-A6C7-00AA00A47DD2.

What Is CLSID?

So How Does CLSID work

'CLSID' is a unique registry-identifying component that is used to identify an ActiveX control. The actual download process consists of six different steps. First, Internet Explorer will process the 'OBJECT' tag in the browser code and get your requirements from it. Then Internet Explorer will determine if a download is needed by checking different things. Then Internet Explorer will process the 'CAB' file and the 'INF' file. Then the control and its dependencies will be installed. Finally, the control will show up on the screen.

The Registry is the centre of all records for the system. The registry records all the activities such as the users and the hardware details of the system. It also records where what program or file is located on the disk. This is why the registry gets filled up with redundant entries over time and as it gets older it keeps building up and slowing down the system. Registry Repair and Cleaners are ideal for such times when your computer has grown sluggish and irritatingly slow. PC registry cleaners can greatly enhance the speed and performance of your system.

It is all code language and you need not understand the technicalities of it. Suffice it to know that if the browser determines, through the 'CLSID' on your browser that your system already has that 'CLSID' in the registry the browser will load and display the page, else it will prompt you to download that particular control.

What Is CLSID?
Check For The New Release in Health, Fitness & Dieting Category of Books NOW!
Check What Are The Top Cooking Books in Last 90 Days Best Cheap Deal!
Check For Cookbooks Best Sellers 2012 Discount OFFER!
Check for Top 100 Most Popular Books People Are Buying Daily Price Update!
Check For 100 New Release & BestSeller Books For Your Collection

Author is admin and technical expert associated with development of computer security and performance enhancing software like Registry Cleaner, Anti Spyware, Window Cleaner, Anti Spam Filter etc. Visit home page: http://www.pcmantra.com. Read More at PCMantra Resource Center.

watches mobile phone Best Buy Roc N Soc Nitro Throne Black Best Offer Lufkin Cn1295Sme590 13 Milimeter 1 2 Best Buy Hobo Icu2T Timber Duck Calls Cheap

Sunday, January 20, 2013

Configure Exchange E-Mail Server Reverse DNS and MX Records Correctly

If DNS is setup incorrectly, over time your mail server IP will be added to blacklists. Nowadays most E-Mail servers have some kind of spam protection service which in turn means that all your inbound mail will be blocked if you do happen to be listed on a spam blacklist.

In this article I will describe how to correctly configure your MX and reverse DNS records for your mail server. This article is based on an Exchange 2003/2007 server but every other messaging server will follow the same principle.

Assigning an IP address

Configure Exchange E-Mail Server Reverse DNS and MX Records Correctly

Starting from the bottom up the first thing you need to do is assign a static external IP address to the internal private address of your mail server. You will need to apply these rules on your firewall to port forward SMTP (port 25) and NAT an external IP address to the internal address of the server.

Something that a lot of administrators forget to do or check is to set the outgoing NAT rule to use the same external IP address created for the inbound rule to the mail server. If this isn't set, Reverse DNS will not match and in turn your mail server will be listed on blacklists. If your firewall rules are setup correctly the IP address listed on this page should be the same IP address you mapped to the internal private IP address of the mail server.

Create the MX records for your mail server

For the purpose of this example, listed below are all the details of my mail server to help you understand what you need to do.

External IP: 87.22.1.22

E-Mail Domain: domain.com

You will need to be an administrative contact for your External DNS provider for your domain to make these changes. In most cases this can be done through an online control panel through your DNS provider. Failing that on the phone or via E-Mail.

1. The first thing we need to do is create an A record to point to the external IP address mapped on your firewall to the mail server. The host A record can be called any thing but is commonly called "mail". In our example we will create "mail.domain.com" to point to IP address "87.22.1.22"

2. Next we will create an MX record to point to the newly created A record of our mail server.

Within your DNS control panel select "add MX record". Make sure that the host address is the root domain name in our case "domain.com"

Set the FQDN as the A record we just created which in our case is "mail.domain.com".

The lowest property is the most preferred but in our example we will set the priority as 10.

Use NSlookup to check DNS and MX records are applied

It can take up to 48 hours for DNS to propagate but in most cases 12-24 hours. To check our DNS entries are applied and correct we can use nslookup.

1. Open a CMD prompt and type nslookup

2. Type set type=mx

3. Type the domain name which in our case is domain.com.

In our example the output should read as follows if correctly setup:

> domain.com

Non-authoritative answer:

domain.com MX preference = 10, mail exchanger = mail.domain.com

mail.domain.com internet address = 87.22.1.22

Configure Reverse DNS

Reverse DNS is used to verify that the mail server is who it says it is. The recipients mail server will do a reverse lookup to make sure that the IP address of the mail A or host record in DNS is the same as the IP address it is communicating with. Only 1 RDNS entry can be present per IP address.

To do this you will need to contact your ISP to make this entry. You will not be able to do this in your DNS control panel unless your ISP also host your DNS and give you the functionality to add your own RDNS records.

In our case we would contact our ISP and advise that we would like to create an RDNS entry for our IP address 87.22.1.22 which would resolve too mail.domain.com.

Verify Reverse DNS

Again it can take up to 48 hours for DNS to propagate but in most cases 12-24 hours. To verify that the RDNS entries have been added and are correct do the following:

1. Open a CMD prompt.

2. Type Ping -a 87.22.1.22 (This is the external IP address for your mail server. In our case we use our external IP address stated above)

If RDNS is configured correctly the following output will be shown:

C:UsersUser>ping -a 87.22.1.22

Pinging mail.domain.com [87.22.1.22] with 32 bytes of data:

SMTP Banner

Every time a mail server establishes a connection with your mail server it shows its SMTP banner. This banner must be resolvable on the internet and best practice is to have it as your mail host/A record.

Configure SMTP banner Exchange 2003

1. Open Exchange system manager.

2. Expand your administrative group ("First administrative group" by default).

3. Expand Servers.

4. Expand YourServerName.

5. Expand Protocals container.

6. Select SMTP container.

7. On the right window, right click the Default SMTP virtual Server (Or the name you set your SMTP Server) and

select Properties.

8. Select the Delivery Tab.

9. Click the Advanced button.

10. Under the Fully-qualified domain name type mail.domain.com (The A/Host record you created in DNS for your mail server)

11. Click OK and OK again to accept the changes

Configure SMTP banner Exchange 2007/2010

1. Open the Exchange management console.

2. Select the Organisation Configuration container.

3. Select Hub Transport container.

4. On the right select the Send Connectors tab.

5. Right click your send connector and select properties.

6. On the General tab under the Set the FQDN this connector will... type the A record domain name you created. Which in our case is mail.domain.com. Click OK.

7. Under the Server Configuration container click the Hub Transport container.

8. In the Right window Select the properties of the Receive Connector under Receive Connectors tab.

9. On the General tab under the Set the FQDN this connector will... type the A record domain name you created. Which in our case is mail.domain.com. Click OK

To verify these changes we can use telnet to view the output upon establishing a connection on port 25 to our mail server. Use the following steps to do this:

1. Open a CMD prompt

2. Type Telnet mail.domain.com 25.

The output you see should look something like this and contain your A record of your mail server:

220 mail.domain.com Microsoft ESMTP MAIL Service ready at Sun, 28 Feb 2

010 17:51:20 +0000

If you use an edge server or a SPAM filter appliance like a Barracuda the SMTP banner will have to be set on this device/server.

Check to see if your mail server is on spam lists and/or an open relay

A great website to use to check your MX records, RDNS, check if your mail server is an open relay and check to see if you are listed on spam lists is www.mxtoolbox.com. This is a great site and one to keep in your favourites.

Following these guide lines will successfully and correctly configure mail routing to and from your mail server. The next step is too secure and ensure your mail server is not an open relay. I will be writing a separate article dedicated to this in the near future.

Configure Exchange E-Mail Server Reverse DNS and MX Records Correctly
Check For The New Release in Health, Fitness & Dieting Category of Books NOW!
Check What Are The Top Cooking Books in Last 90 Days Best Cheap Deal!
Check For Cookbooks Best Sellers 2012 Discount OFFER!
Check for Top 100 Most Popular Books People Are Buying Daily Price Update!
Check For 100 New Release & BestSeller Books For Your Collection

If you would prefer to not experience the stress in looking after and maintaining an Exchange server environment you may choose a hosted exchange server solution instead.

Mike Collins has over 10 years experience in computing and is a senior IT Consultant at Sphere IT Consulting

mobile phone watches Best Buy Roc N Soc Nitro Throne Black Best Offer Genuine Brake Band Save On Surgex Sx1115 Rt Surge Eliminator And

Saturday, January 5, 2013

Plenty of Fish - Free Online Dating Review

Plenty of fish free online dating is a dating site (with origins in Canada), that breaks all traditional rules.

Why?

Simply because every service they provide is 100% free!

Plenty of Fish - Free Online Dating Review

So if you're looking for an affordable online dating service with all the usual bells and whistles of a subscription based dating website, then this might be just what you need.

Pros

1. The biggest plus point for "plentyoffish" is the price, or better said, the none existence of any sort of price.

2. The registration process is pretty painless and follows standard CAN Spam laws by requiring you to confirm your application via a confirmation email sent to your email inbox. This saves the embarrassment of finding that someone signed you up for a dating service, without your knowledge.

3. Setting up of your profile is a quick and simple process and doesn't require you to jump through many hoops to get up and running.

4. Your profile images are displayed in Flash format, which acts as a deterrent for people wishing to download your images for whatever personal reasons.

5. In addition, another plus point of this plenty of fish free online dating site is the free chat system. Users can send live chat messages to each other in a two way conversation environment. The receiving and or blocking of chat requests can be easily set up from within the users personal control panel.

6. Plenty of fish also has a very active user forum covering almost every topic to with human relationships. Although moderated by volunteer moderators, threads can get rather vivid at times. So if you're of faint heart, it's advisable to stay away from the forum. Nevertheless, the forums are a very positive addition to this popular dating site. Be warned, anyone stepping out of line usually gets quickly put into place by its' faithful members who strive to keep the boards alive and well.

7. Users can leave public testimonials on other users' profiles. These are normally positive in 99.9% of cases and provide added information about a user for anyone who may be interested in getting to know more about them.

Cons

Free also has a price tag in terms of the quality of users it attracts.

1. Many women complain about the type of messages they receive from their male counterparts. A good majority of them seem to be more interested in sexual acts, rather than finding meaningful relationships.

2. There has been many success stories arise through plenty of fish, so if you're a female, it will take some patience to filter through your messages to sort the good from the bad.

3. The chat system can be rather clunky. While chatting, advertisements are served at the bottom of the window. This refreshes every few seconds or so which can be annoying at times. You'll also hear an irritating noise every time a message is sent, but you always have the option to turn your speakers down.

Summary

Overall, this dating site gets two big thumbs up. They provide more services than most subscription based dating services. Their entire revenue is based upon targeted advertising, which is handled in a very unobtrusive way (except for the chat engine), which is an all round win-win situation for both user and provider.

For anyone looking for a reliable online dating service, I highly recommend plenty of fish free online dating.

Plenty of Fish - Free Online Dating Review
Check For The New Release in Health, Fitness & Dieting Category of Books NOW!
Check What Are The Top Cooking Books in Last 90 Days Best Cheap Deal!
Check For Cookbooks Best Sellers 2012 Discount OFFER!
Check for Top 100 Most Popular Books People Are Buying Daily Price Update!
Check For 100 New Release & BestSeller Books For Your Collection

This author also writes articles for the pet care niche. For more information about how to get rid of fleas, go to http://www.igetridoffleas.com
You may freely distribute this article as is, as long as the content and signature file remain intact.

watches cell phone Save On Surgex Sx1115 Rt Surge Eliminator And Best Offer Lufkin Cn1295Sme590 13 Milimeter 1 2