View Single Post
Rob,

Excellent. The tricky bit is that MailTags expects a plist format XML. But with that, we would be pretty close to the best possible integration (well, you would replace the project list with every important, but that should be fine).

The format for the plist seems to be as follows:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
	<dict>
		<key>count</key>
		<integer>1</integer>
		<key>preferred</key>
		<true/>
		<key>title</key>
		<string>project name 1</string>
	</dict>
	<dict>
		<key>count</key>
		<integer>1</integer>
		<key>preferred</key>
		<true/>
		<key>title</key>
		<string>project name 2</string>
	</dict>
</array>
</plist>
It seems that with the exception of the actual project name, the other values are pretty static. So ideally your script would produce a .plist, .xml or .txt in the above format, listing all remaining projects, basically ignoring all dropped or completed projects.

Do you think that would be possible?

Cheers,

-Sven