blob: a6b5c542d94b1bb1a48ed875c4e0d3073d5c2247 (
plain)
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
|
use strict;
use warnings;
our @ScripActions = (
{ Name => 'Notify Ccs as Comment', # loc
Description => 'Sends mail to the Ccs as a comment', # loc
ExecModule => 'NotifyAsComment',
Argument => 'Cc' },
{ Name => 'Notify Ccs', # loc
Description => 'Sends mail to the Ccs', # loc
ExecModule => 'Notify',
Argument => 'Cc' },
);
our @ScripConditions = (
{
Name => 'On Priority Change', # loc
Description => 'Whenever a ticket\'s priority changes', # loc
ApplicableTransTypes => 'Set',
ExecModule => 'PriorityChange',
},
);
1;
|