Recently, I read a great post over at the How-to Geek about setting GMail as your Default Mail Client in Ubuntu. Being an avid user of both Ubuntu and GMail I wanted to set this up as well. However, since I use Google Apps for Your Domain (GAFYD), the script didn’t work for me. With a little adjustment I got it to work.
To set this up, you need to do two things:
- Customize a short script and save it to your file system
- Edit your Mail Reader settings in Preferred Applications
Follow the instructions at the How-to Geek, but change the URL from Gmail to the URL used to access GAFYD. To do this, login to your GAFYD GMail account (but don't click any link after logging in) and copy the entire URL, including the parameter at the end. Now replace a small portion of the script provided by the How-to Geek.
Replace "https://mail.google.com/mail?
"
With the GAFYD URL "https://mail.google.com/a/your-domain.com/?AuthEventSource=Internal&
".
That’s it! Now continue with the instructions at the How-to Geek.
2 comments:
Thank you for posting this. This worked perfectly for me
A similar tip seems to work well for the script here:
http://ubuntuforums.org/showthread.php?t=398974
An example format string:
formatString="https://mail.google.com/a/my-domain.com/?view=cm&ui=1&fs=1&tf=1&to=%s&su=%s&bod y=%s&cc=%s&bcc=%s"
Post a Comment