diff options
Diffstat (limited to 'rt/etc/upgrade/4.1.15/content')
-rw-r--r-- | rt/etc/upgrade/4.1.15/content | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/rt/etc/upgrade/4.1.15/content b/rt/etc/upgrade/4.1.15/content new file mode 100644 index 000000000..3e1f1d55a --- /dev/null +++ b/rt/etc/upgrade/4.1.15/content @@ -0,0 +1,22 @@ +use strict; +use warnings; + +our @ScripActions = ( + { Name => 'Notify Owner and AdminCcs', # loc + Description => 'Sends mail to the Owner and administrative Ccs', # loc + ExecModule => 'Notify', + Argument => 'Owner,AdminCc' }, +); + +our @Templates = ( + # Shadow the global templates of the same name to suppress duplicate + # notifications until rules is ripped out. + { Queue => "___Approvals", + Name => "Transaction in HTML", + Content => "", + }, + { Queue => "___Approvals", + Name => "Transaction", + Content => "", + }, +); |