Does email clients such as Microsoft Window Mail or Microsoft Outlook Express prompt up everytime you click on an email link?. If you are a Firefox 3 user and use Gmail frequently, then you can configure and set Gmail as a default email client. The latest Firefox 3 comes with support of YahooMail as default email client. For Gmail users, some setting needs to be done to edit the mailto application handler.
At the Firefox 3 address bar, type about:config and you will be prompted with a warning page as shown below. Just click on I’ll be careful, I promise!
Type in gecko.handlerService into the Filter box until you get gecko.handlerService.allowRegisterFromDifferentHost Preference name.

Make sure the value is True. Change it if it’s already not, by double clicking on it.

Also check for network.protocol-handler.external.mailto Preference name, by typing it in Filter bar.

Make sure the value is True.
Now copy the following code in the address bar and press ENTER.
javascript:window.navigator.registerProtocolHandler(”mailto”,”https://mail.google.com/mail/?extort=mailto&url=%s”,”GMail”)
Copy the following link and press ENTER only if you are a Google Apps user
javascript:window.navigator.registerProtocolHandler(”mailto”,”https://mail.google.com/a/example.com/mail/?extsrc=mailto&url=%s”,”GMail”)
Firefox 3 will thence prompt you a question whether you want to add application. Click on the “Add Application” button.

Now to set Gmail as default client, click this link and on the window that opens, select Gmail from the list and check Remember my choice and press OK.
IF You Want To Revert Back To Old Email Client
If you ever want to revert back to your default windows mail client, follow these simple steps:
Navigate To Tools > Options > Applications in Firefox 3.

Change the selection of now default Gmail client in mailto option to windows default Live Mail Client or any other of your choice.

And you are done :)
Related posts:
- How To Change Your Firefox Into An Email Client
- How To Find The IP Address Of The Sender In Windows Live Mail, Gmail Or Yahoo! Mail
- Access All Your Email Accounts From Gmail
- How To Check If Some Intruder Is Accessing Your Gmail Account
- How To Add Your Favorite Google Desktop Gadgets To The Left Sidebar Of Your Gmail Account


December 28th, 2008 at 5:46 pm
Hello, Great tip and well documented, thanks very much.
One issue I had to debug…. the link you posted for Google apps users has slanted (italic?) double quotes, i.e. ”mailto” instead of “mailto”. The slanted double quotes are not legal javascript delimiters and cause a javascript error. I had to change them to regular double quotes and then it worked. You should change it in your tip. The link for regular gmail users is correct.
Thanks, Kevin
Reply