Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
best-practical
rt
Commits
079a4e49
Commit
079a4e49
authored
Jun 13, 2014
by
Alex Vandiver
Browse files
Merge branch '4.2/notify-owner-or-adminccs' into 4.2-trunk
parents
6c81bce8
2a6ac1ce
Changes
4
Hide whitespace changes
Inline
Side-by-side
docs/UPGRADING-4.2
View file @
079a4e49
...
...
@@ -329,4 +329,13 @@ which is not listed as an option. RT 4.2.4 also includes enhancements
to the Queue admin page for ___Approvals to prevent editing things which
might cause problems.
=head1 UPGRADING FROM 4.2.5 AND EARLIER
RT 4.2.6 includes a new Scrip Action "Notify Owner or AdminCc". This
action will send the given correspondence to the Owner, if not Nobody,
otherwise it will notify the AdminCcs. If using this, you will likely
want to modify or remove the Notify Owner and AdminCcs scrip to avoid
duplicate notifications. This Scrip Action is not used in any default
Scrips at this time.
=cut
etc/initialdata
View file @
079a4e49
...
...
@@ -62,6 +62,10 @@
Description => 'Sends mail to the Owner and administrative Ccs', # loc
ExecModule => 'Notify',
Argument => 'Owner,AdminCc' },
{ Name => 'Notify Owner or AdminCcs', # loc
Description => 'Sends mail to the Owner if set, otherwise administrative Ccs', # loc
ExecModule => 'NotifyOwnerOrAdminCc',
},
{ Name => 'Notify Requestors and Ccs as Comment', # loc
Description => 'Send mail to requestors and Ccs as a comment', # loc
ExecModule => 'NotifyAsComment',
...
...
etc/upgrade/4.2.6/content
0 → 100644
View file @
079a4e49
use strict;
use warnings;
our @ScripActions = (
{ Name => 'Notify Owner or AdminCcs', # loc
Description => 'Sends mail to the Owner if set, otherwise administrative Ccs', # loc
ExecModule => 'NotifyOwnerOrAdminCc',
},
);
lib/RT/Action/NotifyOwnerOrAdminCc.pm
0 → 100644
View file @
079a4e49
# BEGIN BPS TAGGED BLOCK {{{
#
# COPYRIGHT:
#
# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC
# <sales@bestpractical.com>
#
# (Except where explicitly superseded by other copyright notices)
#
#
# LICENSE:
#
# This work is made available to you under the terms of Version 2 of
# the GNU General Public License. A copy of that license should have
# been provided with this software, but in any event can be snarfed
# from www.gnu.org.
#
# This work is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 or visit their web page on the internet at
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
#
#
# CONTRIBUTION SUBMISSION POLICY:
#
# (The following paragraph is not intended to limit the rights granted
# to you to modify and distribute this software under the terms of
# the GNU General Public License and is only of importance to you if
# you choose to contribute your changes and enhancements to the
# community by submitting them to Best Practical Solutions, LLC.)
#
# By intentionally submitting any modifications, corrections or
# derivatives to this work, or any other work intended for use with
# Request Tracker, to Best Practical Solutions, LLC, you confirm that
# you are the copyright holder for those contributions and you grant
# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable,
# royalty-free, perpetual, license to use, copy, create derivative
# works based on those contributions, and sublicense and distribute
# those contributions and any derivatives thereof.
#
# END BPS TAGGED BLOCK }}}
package
RT::Action::
NotifyOwnerOrAdminCc
;
use
strict
;
use
warnings
;
use
base
qw(RT::Action::Notify)
;
use
Email::
Address
;
=head1 Notify Owner or AdminCc
If the owner of this ticket is Nobody, notify the AdminCcs. Otherwise, only notify the Owner.
=cut
sub
Argument
{
my
$self
=
shift
;
my
$ticket
=
$self
->
TicketObj
;
if
(
$ticket
->
Owner
==
RT
->
Nobody
->
id
)
{
return
'
AdminCc
';
}
else
{
return
'
Owner
';
}
}
RT::
Base
->
_ImportOverlays
();
1
;
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment