Two ways I know of to accomplish this, most easy would be to create seperate emails for each one, and have your email handler do it for you, but if you must do it after the fact an on transaction scrip could pull this off for you.
<br><br><br>something like this perhaps in your on "action cleanup"<br><br>    my $ticketObj  = $self->TicketObj;<br>        <br>    #Map where item to find in subject,Queue to assign to.<br>    my %queuemap = ('PC','PCQueue',
<br>                    'SOFTWARE','SoftwareQueue',<br>                    'EMAIL','EmailQueue');<br>   <br>    <br>    foreach my $search(sort keys %queuemap)<br>    {<br>         if ($ticketObj->subject =~/\Q$search\E/)
<br>         {<br>            my ($status, $msg) = $ticketObj->SetQueue($queuemap{$search});<br>            unless ($status) {<br>                $RT::Logger->warning("unable to set new queue: $msg");<br>                return undef;
<br>            }<br>            last;    <br>         };<br>    };<br>    <br>    return 1;<br><br><br>of course this will map the first occurrance , so a subject saying "PC SOFTWARE" would get placed in the PC queue.
<br><br>Hope this helps (I'm sure somebody will have a more elegant solution)...<br><br>Rodney<br><br><br><div><span class="gmail_quote">On 4/26/06, <b class="gmail_sendername">Prasad Deshpande</b> <<a href="mailto:prasaddeshpande@bajajfinance.in" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
prasaddeshpande@bajajfinance.in</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div style="direction: ltr;">










<div>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">Hi,</span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;"> </span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">I am using RT 3.2.3, I have set one email-id for the
helpdesk. Now based on the subject I want to transfer the tickets to different
queues. </span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;"> </span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">For example, I have assigned <a href="mailto:helpdesk@xyz.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">

helpdesk@xyz.com</a> email-id to queue called general.
Now based on the subject like 'PC', 'Software', 'Email'
I want to move the tickets to PCQueue, SoftwareQueue, EmailQueue respectively.</span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;"> </span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">Is anybody had implement this? Any help will be greatly
appreciated.</span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;"> </span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">Thanks.</span></font></p>

<p><font face="Verdana" size="2"><span style="font-size: 10pt; font-family: Verdana;">Prasad Deshpande</span></font></p>

<p><font face="Times New Roman" size="3"><span style="font-size: 12pt;"> </span></font></p>

<p><font face="Times New Roman" size="3"><span style="font-size: 12pt;"> </span></font></p>

</div>

<p></p><p>DISCLAIMER:<br>This message,including any attachments contains confidential and privileged information for the sole use of the intended recipient(s), and is protected by law. If you are not the intended recipient, please destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email or any action taken in reliance on this e-mail is strictly prohibited and may be unlawful. Bajaj Auto reserves the right to record, monitor, and inspect all email communications through its internal and external networks. Your messages shall be subject to such lawful supervision as Bajaj Auto deems necessary in order to protect its information, interests and reputation. Bajaj Auto prohibits and takes steps to prevent its information systems from being used to view, store or forward offensive or discriminatory material. If this message contains such material, please report it to 
<a href="mailto:abuse@bajajauto.co.in" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">abuse@bajajauto.co.in</a>.



</p></div><br>_______________________________________________<br><a href="http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users
</a><br><br>Community help: <a href="http://wiki.bestpractical.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://wiki.bestpractical.com</a><br>Commercial support: <a href="mailto:sales@bestpractical.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">

sales@bestpractical.com</a><br><br><br>Discover RT's hidden secrets with RT Essentials from O'Reilly Media.<br>Buy a copy at <a href="http://rtbook.bestpractical.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">

http://rtbook.bestpractical.com</a><br><br><br>We're hiring! Come hack Perl for Best Practical: <a href="http://bestpractical.com/about/jobs.html" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://bestpractical.com/about/jobs.html
</a><br><br></blockquote></div><br>