Tracks can be integrated with a number of other tools... whatever it takes to help you get things done! This page has information on setting up some of these. Not all of these are applicable to all platforms, and some require more technical knowledge than others. See also <%= link_to "developer documentation for Tracks' REST API", url_for(:action => 'rest_api') %>.
If Tracks is running on the same server as your mail server, you can use the integrated mail handler built into tracks. Steps to set it up:
Go to <%= link_to "Preferences", preferences_url %> and set your "From email" and "default email context" for todos sent in via email (which could come from an SMS message)
In sendmail/qmail/postfix/whatever, set up an email address alias to pipe messages to
/PATH/TO/RUBY/ruby /PATH/TO/TRACKS/script/runner -e production 'MessageGateway.receive(STDIN.read)'
Send an email to your newly configured address!
You can also use the Rich Todo API to send in tasks like "do laundry @ Home" or "Call Bill > project X". The subject of the message will fill description, context, and project, while the body will populate the tasks's note.
Add an Action with Applescript
This is a simple script that pops up a dialog box asking for a description, and then sends that to Tracks with a hard-coded context.
<% if has_contexts -%>
Choose the context you want to add actions to:
<%= observe_field "applescript1-contexts", :update => "applescript1",
:with => 'context_id',
:url => { :controller => "integrations", :action => "get_applescript1" },
:before => "$('applescript1').startWaiting()",
:complete => "$('applescript1').stopWaiting()"
%>
Copy the Applescript below to the clipboard.
Open Script Editor and paste the script into a new document.
Compile and save the script. Run it as necessary.
<% else %>
You do not have any context yet. The script will be available after you add your first context
<% end %>
Add an Action with Applescript based on the currently selected Email in Mail.app
This script takes the sender and subject of the selected email(s) in Mail and creates a new action for each one, with the description, "Email [sender] about [subject]". The description gets truncated to 100 characters (the validation limit for the field) if it is longer than that. It also has Growl notifications if you have Growl installed.
<% if has_contexts -%>
Choose the context you want to add actions to:
<%= observe_field "applescript2-contexts", :update => "applescript2",
:with => 'context_id',
:url => { :controller => "integrations", :action => "get_applescript2" },
:before => "$('applescript2').startWaiting()",
:complete => "$('applescript2').stopWaiting()"
%>
Copy the Applescript below to the clipboard.
Open Script Editor and paste the script into a new document.
Compile and save the script to the ~/Library/Scriipts/Mail Scripts directory.
For more information on using AppleScript with Mail.app, see this overview.
<% else %>
You do not have any context yet. The script will be available after you add your first context
<% end %>
Add Actions with Quicksilver and Applescript
This integration will allow you to add actions to Tracks via Quicksilver.
<% if has_contexts -%>
Choose the context you want to add actions to:
<%= observe_field "quicksilver-contexts", :update => "quicksilver",
:with => 'context_id',
:url => { :controller => "integrations", :action => "get_quicksilver_applescript" },
:before => "$('quicksilver').startWaiting()",
:complete => "$('quicksilver').stopWaiting()"
%>
Copy the Applescript below to the clipboard.
Open Script Editor and paste the script into a new document.
Compile and save the script as "Add to Tracks.scpt" in ~/Library/Application Support/Quicksilver/Actions/ (you may need to create the Actions directory)
Restart Quicksilver
Activate Quicksilver (Ctrl+Space by default)
Press "." to put quicksilver into text mode
Type the description of the next action you want to add
Press tab to switch to the action pane.
By typing or scrolling, choose the "Add to Tracks" action.
<% else %>
You do not have any context yet. The script will be available after you add your first context
<% end %>
Automatically Email Yourself Upcoming Actions
If you enter the following entry to your crontab, you will receive email every day around 5 AM with a list of the upcoming actions which are due within the next 7 days.
You can of course use other text <%= link_to 'feeds provided by Tracks', feeds_path %> -- why not email a list of next actions in a particular project to a group of colleagues who are working on the project?