<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://rt-wiki.bestpractical.com/index.php?action=history&amp;feed=atom&amp;title=UseRtReminder</id>
	<title>UseRtReminder - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://rt-wiki.bestpractical.com/index.php?action=history&amp;feed=atom&amp;title=UseRtReminder"/>
	<link rel="alternate" type="text/html" href="https://rt-wiki.bestpractical.com/index.php?title=UseRtReminder&amp;action=history"/>
	<updated>2026-08-23T02:48:42Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>https://rt-wiki.bestpractical.com/index.php?title=UseRtReminder&amp;diff=4097&amp;oldid=prev</id>
		<title>Admin: 2 revisions imported</title>
		<link rel="alternate" type="text/html" href="https://rt-wiki.bestpractical.com/index.php?title=UseRtReminder&amp;diff=4097&amp;oldid=prev"/>
		<updated>2016-04-06T20:39:39Z</updated>

		<summary type="html">&lt;p&gt;2 revisions imported&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Rt-remind.pm is a reminder script that gathers open tickets and emails a summarized list to the ticket owners.&lt;br /&gt;
&lt;br /&gt;
There is an old version on the best practical site which worked for me, but another RT user told me there was a newer version that supported multiple queues.&lt;br /&gt;
&lt;br /&gt;
The latest version which supports multiple queues is at the following link. http://www.cs.kent.ac.uk/people/staff/tdb/rt3/rt-remind&lt;br /&gt;
&lt;br /&gt;
Just place the script in your &amp;quot;./lib/RT&amp;quot; folder, for instance mine is at &amp;quot;/usr/local/rt3/lib/RT&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Set permissions to match your other scripts in the folder. chmod 755 rt-remind.pm&lt;br /&gt;
&lt;br /&gt;
Edit script to match your environment, (ie.. perl, sendmail paths). Run the script on the interval of your choosing using cron or whatever else you may use.&lt;br /&gt;
&lt;br /&gt;
Then wait and see just how many tickets you haven&amp;#039;t completed :&amp;amp;lt;)..&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Enhancements&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
1. Add Queue name to e-mail output&lt;br /&gt;
&lt;br /&gt;
Depending on your implementation, you may find it useful (or necessary) to include the queue name in your reminder e-mail. All that is needed is to edit two lines in the rt-remind script.&lt;br /&gt;
&lt;br /&gt;
Open rt-remind in your favorite editor and wander down to line 178 (assuming you have an untouched version of rt-remind). You should see:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;# Generate heading&lt;br /&gt;
 $msg .= sprintf &amp;quot;%5s  %-7s %3s  %-13s %-30s\n&amp;quot;, &amp;quot;Id&amp;quot;, &amp;quot;Status&amp;quot;, &amp;quot;Pri&amp;quot;, &amp;quot;Date&amp;quot;, &amp;quot;Subject&amp;quot;;&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Replace this with:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;# Generate heading&lt;br /&gt;
 $msg .= sprintf &amp;quot;%5s  %-7s %3s  %-13s %-15s %-30s\n&amp;quot;, &amp;quot;Id&amp;quot;, &amp;quot;Status&amp;quot;, &amp;quot;Pri&amp;quot;, &amp;quot;Date&amp;quot;, &amp;quot;Queue&amp;quot;, &amp;quot;Subject&amp;quot;;&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then wander 10 lines further down and you should see:&lt;br /&gt;
&lt;br /&gt;
 my($line) = sprintf &amp;quot;%5d  %-7s %3d  %-13s %-30s&amp;quot;, $Ticket-&amp;amp;gt;Id, $Ticket-&amp;amp;gt;Status, $Ticket-&amp;amp;gt;Priority, $date,&lt;br /&gt;
 $Ticket-&amp;amp;gt;Subject;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Replace this with:&lt;br /&gt;
&lt;br /&gt;
 my($line) = sprintf &amp;quot;%5d  %-7s %3d  %-13s %-15s %-30s&amp;quot;, $Ticket-&amp;amp;gt;Id, $Ticket-&amp;amp;gt;Status, $Ticket-&amp;amp;gt;Priority, $date,&lt;br /&gt;
 $Ticket-&amp;amp;gt;QueueObj-&amp;amp;gt;Name, $Ticket-&amp;amp;gt;Subject;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
For formatting purposes, you will want your queue names to be 15 characters or less and you may want/need to tweak the value of $linelen to make certain that sufficient Subject text is included in your e-mail.&lt;br /&gt;
&lt;br /&gt;
Happy Tweaking!&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
</feed>