Reminders?

Hello,

I´m following this guide http://requesttracker.wikia.com/wiki/Reminders
I don’t understand where to paste the code?
0 6 * * * root /opt/rt4/bin/rt-crontool
–search RT::Search::FromSQL
–search-arg ‘Type = “reminder” and (Status = “open” or Status = “new”)’
–condition RT::Condition::BeforeDue
–condition-arg 2d
–action RT::Action::SendEmail
–action-arg Owner
–transaction first
–template ‘Reminder due soon’
It´s not in my ordinary crontab, right? Is it in /opt/rt4/bin/rt-crontool? In that case, where?

I found this in the file
=head1 NAME

rt-crontool - a tool to act on tickets from an external scheduling tool

=head1 SYNOPSIS

# find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:
rt-crontool \
  --search RT::Search::ActiveTicketsInQueue  --search-arg general \
  --condition RT::Condition::Overdue \
  --action RT::Action::SetPriority --action-arg 99 \
  --verbose

# Escalate tickets
  rt-crontool \
    --search RT::Search::ActiveTicketsInQueue  --search-arg general \
    --action RT::Action::EscalatePriority

=head1 DESCRIPTION

This script is a tool to act on tickets from an external scheduling tool, such
as cron.

Med Vänliga Hälsningar/Best Regards
Martin Petersson
*: Office +46 (0)522 98028
*: Fax +46 (0)70 25 79 453
*: www.uanet.sehttp://www.uanet.se/

Gustaf Mattssons Väg 2
451 50 Uddevalla
Orgnr: 556702-4095
Styrelsens säte: Uddevalla
P Please consider the environment before printing this e-mail.

It´s not in my ordinary crontab, right? Is it in
/opt/rt4/bin/rt-crontool? In that case, where?

rt-crontool is the program you’re running; don’t modify it. The line
you pasted from the wiki page is a crontab line. You put it in
/etc/crontab or an RT specific crontab file. You could also extract
just the command and turn it into a simple shell script and drop it into
/etc/cron.d/rt.

Please read “man 5 crontab” to learn more about cron.