View Single Post
Hi -

Like many of you, we use Google Apps for our company. We just got forced through the "transition" in Google Apps where they now allow your Google Apps account to work with the other Google services. That's great, but...

All my Gmail links are now broken.

They've changed from this:
Code:
https://mail.google.com/a/mydomain.com/#starred/130e265da2b0a18e
To this:
Code:
https://mail.google.com/mail/u/0/?shva=1#starred/130e265da2b0a18e
Seems like a simple regular expression find and replace to me:

Find:
Code:
$https://mail.google.com/mail/u/0/?shva=1#(\w+)/(\w+)^
Replace
Code:
https://mail.google.com/mail/u/0/?shva=1#\1/\2
But unfortunately that will change the text of the note, but not the underlying link.

Any ideas how I can use the REGEX Find and Replace to modify the actual link? Or maybe have OmniFocus re-link URL text in some mass-database way?

Thanks for your time.

- Justin

Last edited by justin; 2011-07-25 at 05:01 PM.. Reason: Fixed regex copy-paste error