Hi,
On Thursday 27 April 2006 06:13, Prasad Deshpande wrote:
> 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.
>
> For example, I have assigned [EMAIL PROTECTED] 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.
>
> Is anybody had implement this? Any help will be greatly appreciated.
I had used procmail or maildrop for this.
You have to configure your MTA to forward all mails to procmail or
maildrop, which then calls rt-mailgate with a different queue based on
the subject line.
Another way would be a scrip in queue general, which changes the queue
accordingly.
if ($self->TicketObj->Subject =~ /Software/) {
my ($status, $msg) = $self->TicketObj->SetQeue("SoftwareQueue");
...
}
regards,
andreas
_______________________________________________
http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users
Community help: http://wiki.bestpractical.com
Commercial support: [EMAIL PROTECTED]
Discover RT's hidden secrets with RT Essentials from O'Reilly Media.
Buy a copy at http://rtbook.bestpractical.com
We're hiring! Come hack Perl for Best Practical:
http://bestpractical.com/about/jobs.html