.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.40) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "RT::Action::SMSNotify 3pm" .TH RT::Action::SMSNotify 3pm "2021-01-09" "perl v5.32.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" RT::Action::SMSNotify \- an action to send SMS notifications .SH "DESCRIPTION" .IX Header "DESCRIPTION" See RT::Extension::SMSNotify for details on how to use this extension, including how to customise error reporting. .PP This action may be invoked directly, from rt-crontool, or via a Scrip. .SH "ARGUMENTS" .IX Header "ARGUMENTS" \&\f(CW\*(C`RT::Action::SMSNotify\*(C'\fR takes a single argument, like all other \s-1RT\s0 actions. The argument is a comma-delimited string of codes indicating where the module should get phone numbers to \s-1SMS\s0 from. Wherever a group appers in a category, all the users from that group will be recursively added. .PP Recognised codes are: .SS "TicketRequestors" .IX Subsection "TicketRequestors" The ticket requestor(s). May be groups. .SS "TicketCc" .IX Subsection "TicketCc" All entries in the ticket Cc field .SS "TicketAdminCc" .IX Subsection "TicketAdminCc" All entires in the ticket AdminCc field .SS "TicketOwner" .IX Subsection "TicketOwner" The ticket Owner field .SS "QueueCc" .IX Subsection "QueueCc" All queue watchers in the Cc category on the queue .SS "QueueAdminCc" .IX Subsection "QueueAdminCc" All queue watchers in the AdminCc category on the queue .SS "g:name" .IX Subsection "g:name" The \s-1RT\s0 group with name 'name'. Ignored with a warning if it doesn't exist. No mechanism for escaping commas in names is provided. .SS "p:number" .IX Subsection "p:number" A phone number, specified in +0000000 form with no spaces, commas etc. .SS "filtermodule:" .IX Subsection "filtermodule:" You may override the phone number filter function on a per-call basis by passing filtermodule: in the arguments. The argument must be the name of a module that defines a GetPhoneForUser function. .PP This can appear anywhere in the argument string. For example, to force the use of the OnShift filter for this action, you might write: .PP .Vb 1 \& TicketAdminCc,TicketRequestors,TicketOwner,TicketCc,filtermodule:RT::Extension::SMSNotify::OnShift .Ve