View Single Post
We'll get a fix out as soon as possible. Sorry for not catching this.

[EDIT: This fix is no longer necessary, instead reinstall the Clip-O-Tron from the latest OmniFocus 1.7.4 sneaky peek.]



In the meantime, if you need a workaround:

1. Reinstall the Clip-o-tron from OmniFocus
2. DO NOT launch Mail
3. go to: ~/Library/Mail/Bundles/OmniMailMessageServiceEnabler_106.mailbundle/Contents
4. Launch Terminal.app. (It's in your Utilities folder)
5. Paste the following into the window:
Code:
open -a TextEdit Info.plist
6. Hit Return to execute the command.
7. At this point, a new TextEdit window should appear. Scroll to the part where it says:
<key>SupportedPluginCompatibilityUUIDs</key>

and add :
<string>2610F061-32C6-4C6B-B90A-7A3102F9B9C8</string>
<string>99BB3782-6C16-4C6F-B910-25ED1C1CB38B</string>

under the other 2 strings, so the entire key looks like:

Code:
<key>SupportedPluginCompatibilityUUIDs</key>
	<array>
		<string>225E0A48-2CDB-44A6-8D99-A9BB8AF6BA04</string>
		<string>B3F3FC72-315D-4323-BE85-7AB76090224D</string>
		<string>2610F061-32C6-4C6B-B90A-7A3102F9B9C8</string>
		<string>99BB3782-6C16-4C6F-B910-25ED1C1CB38B</string>
	</array>
8. Re-launch Mail

Again, sorry for this inconvenience, this is new for Snow Leopard, and we had no idea they'd be changing this so often. We're in the process of making sure that we stay updated for future Snow Leopard updates.

P.S. For those Advanced users who want to know, you can get these strings by running:
Code:
cat /Applications/Mail.app/Contents/Info.plist |grep UUID -A 1
cat /System/Library/Frameworks/Message.framework/Resources/Info.plist |grep UUID -A 1

Last edited by Ken Case; 2009-09-11 at 06:11 AM.. Reason: Made the link to the OmniFocus 1.7.4 sneaky peeks more prominent