I’ve been setting up RT and all has gone well. Though I am missing
something as it relates to Queue and ticket ownership.
Currently I’ve got 13 users and one queue for each user. I’ve
setup user-rt@domain.tld address to submit tickets via email. Is
there a way to make RT assign ownership of a ticket to a specific user
based on the queue it is being submitted to?
For example:
I submit a ticket to erol-rt@domain.tld , I want that ticket to be
owned by erol in the queue erol.
I’ve gone through the doc’s and google but nothing is leaping out
at me. Any ideas? or am I out to lunch?
Thanks.
erol erol@samurai.com
“Life is a tragic comedy. If you can’t laugh, you must cry. I prefer to laugh.”
– G. Graffin
I’ve been setting up RT and all has gone well. Though I am missing
something as it relates to Queue and ticket ownership.
Currently I’ve got 13 users and one queue for each user. I’ve
setup user-rt@domain.tld address to submit tickets via email. Is
there a way to make RT assign ownership of a ticket to a specific user
based on the queue it is being submitted to?
Hi Erol. See
for a couple approaches, including one that I use.
Cheers,
Dave.
Dave Edwards <dle&sympatico,ca>
Freelance and Technical Writer,
With Special Interest in Open Source Software http://bigStory.homelinux.org
Have a scrip action on each queue, where on condition:create ticket, the
user defined action is to change ownership to your user:
ie for erol-rt queue, set up the following scrip:
Condition:On Create
Action:User defined
Custom action cleanup code: $self->TicketObj->SetOwner(‘erol’);
Template : blank
I’ve been setting up RT and all has gone well. Though I am missing
something as it relates to Queue and ticket ownership.
Currently I’ve got 13 users and one queue for each user. I’ve
setup user-rt@domain.tld address to submit tickets via email. Is
there a way to make RT assign ownership of a ticket to a specific user
based on the queue it is being submitted to?
For example:
I submit a ticket to erol-rt@domain.tld , I want that ticket to be
owned by erol in the queue erol.
I’ve gone through the doc’s and google but nothing is leaping out
at me. Any ideas? or am I out to lunch?
Thanks.
–
erol erol@samurai.com
“Life is a tragic comedy. If you can’t laugh, you must cry. I prefer to
laugh.”
– G. Graffin
RT Administrator and Developer training is coming to your town soon!
(Boston, San Francisco, Austin, Sydney) Contact training@bestpractical.com
for details.
Currently I’ve got 13 users and one queue for each user. I’ve
setup user-rt@domain.tld address to submit tickets via email. Is
there a way to make RT assign ownership of a ticket to a specific user
based on the queue it is being submitted to?
use a queue specific scrip. You’ll have to write a custom action.