File: initialdata

package info (click to toggle)
rt-extension-smsnotify 1.04-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 512 kB
  • sloc: perl: 2,840; sh: 109; makefile: 31
file content (30 lines) | stat: -rw-r--r-- 1,442 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/perl

@ScripActions = (
    {  Name        => '[SMSNotify] SMS Queue and Ticket AdminCcs plus Owner', # loc
       Description => 'Send SMS to all Queue and Ticket AdminCcs and theticket Owner, but not requestor or Ccs' , # loc
       ExecModule  => 'SMSNotify',
       Argument    => 'TicketAdminCc,QueueAdminCc,TicketOwner'
    },
    {  Name        => '[SMSNotify] SMS Queue and Ticket AdminCcs', # loc
       Description => 'Send SMS to all Queue and Ticket AdminCcs, but not requestor or Ccs' , # loc
       ExecModule  => 'SMSNotify',
       Argument    => 'TicketAdminCc,QueueAdminCc'
    },
    {  Name        => '[SMSNotify] SMS Ticket AdminCcs', # loc
       Description => 'Send SMS to all Ticket AdminCcs, but not requestor or Ccs' , # loc
       ExecModule  => 'SMSNotify',
       Argument    => 'TicketAdminCc'
    },
    {  Name        => '[SMSNotify] SMS Ticket All Contents', # loc
       Description => 'Send SMS to all contacts for a ticket' , # loc
       ExecModule  => 'SMSNotify',
       Argument    => 'TicketAdminCc,TicketRequestors,TicketOwner,TicketCc'
    },
    {
       Name        => '[SMSNotify] SMS Ticket and Queue Cc/AdminCc ignoring shifts',
       Description => 'Send SMS to all ticket and queue ccs and adminccs with no filter function',
       ExecModule  => 'SMSNotify',
       Argument    => 'TicketAdminCc,TicketOwner,TicketCc,filtermodule:RT::Extension::SMSNotify::PagerForUser'
    }
)