NAME RT::Extension::SMSNotify - Send SMS notifications from RT via SMS::Send SYNOPSIS You don't generally use this module directly from your own code, it's an RT extension. See "CONFIGURATION" DESCRIPTION Use RT::Extension::SMSNotify to send text message notifications to mobile phones when events occur in RT, or via RT Crontool to do time-based alerting for things like SLA warnings. Useful in conjunction with the RT::Extension::SLA module. SMSes are sent using the SMS::Send module; this has been tested with SMS::Send::RedOxygen. You will need an SMS::Send driver module installed to use the SMSNotify extension. Writing them is easy if you can't find one for your provider. INSTALLATION Install RT::Extension::SMSNotify using CPAN or using the usual: perl Makefile.PL make sudo make install process. This extension can optionally install some scrip actions in your RT database. If you do not install them, you can't create scrips via the RT web UI, but you can still use "RT::Action::SMSNotify" via "rt-crontool" etc. You can add scripactions manually if you prefer, or run: make initdb as a user that has read permission to your "RT_SiteConfig.pm". Do not run "make initdb" multiple times; this will result in duplicate entries in your RT database. If you have duplicates you can carefully delete them manually from your database's "scripactions" table. CONFIGURATION # In RT_SiteConfig.pm, add entries for your SMS::Send provider and its setup # argument hash, eg: Set($SMSNotifyProvider, 'RedOxygen'); Set($SMSNotifyArguments, { _accountid => 'XXXXXXXXXXX' _email => 'xxxxx@xxxxxxxxxxxxxxx', _password => 'xxxxxxxx' }); # Then use RT-crontool to invoke the action or register it in the RT DB and use # it in scrips. $SMSNotifyProvider The $SMSNotifyProvider parameter must be set to the name of an installed "SMS::Send" module as a string, without the "SMS::Send" qualifier. For example, to use SMS::Send::RedOxygen you'd use: Set($SMSNotifyProvider, 'RedOxygen'); $SMSNotifyArguments The $SMSNotifyArguments parameter must be set to a hash reference with the parameters the SMS:Send driver expects. The exact parameters will vary from driver to driver. The sample given in "CONFIGURATION" shows settings for "SMS::Send::RedSMS". $SMSNotifyGetPhoneForUserFn A function reference. If defined, must be a function that takes an RT::User as the 1st argument and returns a phone number as a string. The default implementation looks up the RT::User's PagerPhone attribute, which is shown as Pager in the RT UI, but you can replace this with an LDAP query or whatever you want. Takes additional arguments of the Ticket being operated on or undef if no ticket, and a user-defined hint extracted from the action argument if found as documented in SMS::Action::SMSNotify. Return undef or the empty string if no phone number exists for a user. More than one phone number may be returned by returning an array (not an arrayref); all of them will be notified. This method is useful for filtering users to limit the recipients of a message. Use with rt-crontool This is an example of RT::Extension::SMSNotify use with rt-crontool in /etc/crontab format. The example presumes the existence of a template named 'SLA Alert SMS' and assumes that your local RT user is named 'requesttracker4'. There must be a user in the RT database with 'gecos' set to the local RT user Cron uses. The search filter is a TicketSQL expression. You can use the RT query builder to generate TicketSQL, but it's very limited so you will usually want to write your own. You can test it by pasting it into the Advanced search in RT. This search sends SMSes for any ticket with a due date set that's due 24-25 mins, 11-12 mins, or 3-5 mins from now. Since it runs every minute ("*/1"; could just be written as "*") this will generate one message for each of the first time ranges and two for the 2nd. The crontab entry: */1 * * * * requesttracker4 rt-crontool --transaction last --search RT::Search::FromSQL --search-arg "(Status='new' OR Status='open') AND (Due > 'Jan 1, 1970') AND ((Due < '25 minutes' AND Due >= '24 minutes') OR (Due < '12 minutes' AND Due >= '11 minutes') OR (Due < '5 minutes' AND Due >= '3 minutes'))" --action RT::Action::SMSNotify --template 'SLA Alert SMS' LICENSE The same as for Perl itself