RemindMe - simple reminder tool.

RemindMe consists of two very simple Python scripts and allows you to set
a reminder for a given date and time. When the time expires, you will receive
an email with your message in.

remindme:

A command line tool to add jobs to the database. Pass a date/time, subject
and message. Eg: 

remindme "08/05/2006 09:00" "Release" "Release RemindMe to the world"

remindmecron:

The program that reads the jobs database and sends reminders. This should be 
run by cron.

You should edit this script, the from/to email addresses and smtp host are
at the top of the file - change them to suit your circumstances.

setup:

I personally, setup remindme by putting both remindme and remindmecron in
~/bin for my local user.

When you run remindme, the jobs database is stored in ~/.remindme

I have a crontab entry to run ~/bin/remindmecron as my local user every
5 minutes, but you could reduce that to a minute (* * * * *) if you wanted
finer granularity.


