[rt-users] Paging based on priority.

Nathan Affleck neaffleck at ucdavis.edu
Tue Dec 14 12:19:25 EST 2004


Thanks for the direction. Works perfectly with a little change to PagerPhone
instead of EmailAddress on notify group!

Kindest regards!
..Nate

-----Original Message-----
From: Andy Harrison [mailto:aharrison at gmail.com]
Sent: Tuesday, December 14, 2004 5:51 AM
To: Nathan Affleck
Cc: rt-users at lists.bestpractical.com
Subject: Re: [rt-users] Paging based on priority.


On Mon, 13 Dec 2004 13:25:18 -0800, Nathan Affleck
<neaffleck at ucdavis.edu> wrote:
> Hi,
>
> I've modified the SelfService page so that users can submit a priority  of
> (0,25,75, or 100) --- based on this information, I'd like RT to send a
> notification to the pager field (which is actually an email address) to a
> group of users if the priority is, say, greater/eqaul than 75.
>

Just do an OnCreate scrip.

Description: Priority75Created
Condition: User Defined
Custom Condition:
return undef unless ( $self->TicketObj->Priority = 75 );
return 1;

For your action, Ruslan's RT::Action::NotifyGroup module would fit the
bill nicely.  (It also does individual users, not just groups.)

http://search.cpan.org/~ruz/RT-Action-NotifyGroup/

--
Andy Harrison




More information about the rt-users mailing list