Installation
------------

Here is the preferred way of installing Email-Reminder:

1- Run "perl Makefile.pl" to generate the Makefile.

2- Run "make install" as root to install all program files.

3- Set up a cron job so that the "/usr/bin/send-reminders" script is
   run everyday.  Under Debian, this is done by putting the following
   script under /etc/cron.daily/:

   #!/bin/sh
   SCRIPT=/usr/bin/send-reminders

   if [ -e "$SCRIPT" -a -x "$SCRIPT" ]; then
       $SCRIPT
   else
       echo "$SCRIPT not found."
       exit 1;
   fi

4- Should you wish to add a menu entry for Email-Reminder Editor, use
   the email-reminder-editor.desktop file.
