% has_contexts = !current_user.contexts.empty? -%>
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') %>.
Contents:
Do you have one of your own to add? Tell us about it in our Tips and Tricks forum and we may include it on this page in a future versions of Tracks.
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 -%>You do not have any context yet. The script will be available after you add your first context
<% end %>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 -%>You do not have any context yet. The script will be available after you add your first context
<% end %>This integration will allow you to add actions to Tracks via Quicksilver.
<% if has_contexts -%>You do not have any context yet. The script will be available after you add your first context
<% end %>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?
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:
/usr/bin/bundle exec /PATH/TO/TRACKS/script/rails r -e production 'MessageGateway.receive(STDIN.read)'
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.
You may need to configure your site.yml to tell the message gateway to look at the to: field or from: field to lookup Tracks' user from the email address in that field.
You can also send all email to a specific Tracks user. Configure mail_dispatch in site.yml to single_user and pass the login of the user:
TRACKS_MAIL_RECEIVER=<%=current_user.login%> usr/bin/bundle exec /PATH/TO/TRACKS/script/rails r -e production 'MessageGateway.receive(STDIN.read)'
You can now manage your projects/actions inside Gmail using Tracks Gmail Gadget. Add Tracks Gmail gadget to the sidebar of Gmail and track your next actions or add new action without explicitly open new browser tab for Tracks. Steps to set it up:
<%= integrations_url + "/google_gadget" %>