[Rt-commit] rt branch, 4.4.0-releng, updated. rt-4.4.0rc2-2-g71824d2
Shawn Moore
shawn at bestpractical.com
Thu Dec 3 16:36:09 EST 2015
The branch, 4.4.0-releng has been updated
via 71824d2fb35b63221282d9a5cfb37912bbf04a5a (commit)
from f9682294d772799aa23ecb44948a3bbea0282b30 (commit)
Summary of changes:
docs/extending/mail_plugins.pod | 8 ++++----
lib/RT/Interface/Email.pm | 4 ++--
2 files changed, 6 insertions(+), 6 deletions(-)
- Log -----------------------------------------------------------------
commit 71824d2fb35b63221282d9a5cfb37912bbf04a5a
Author: Shawn M Moore <shawn at bestpractical.com>
Date: Thu Dec 3 16:30:38 2015 -0500
Fix references of "::Email::Actions" to be "Action"
diff --git a/docs/extending/mail_plugins.pod b/docs/extending/mail_plugins.pod
index ce29d4f..77ad5ce 100644
--- a/docs/extending/mail_plugins.pod
+++ b/docs/extending/mail_plugins.pod
@@ -7,10 +7,10 @@ plug-in mechanism in the RT configuration.
You can set the array C<@MailPlugins> to be a list of plugins. For
example, to allow the mailgate to specify a 'take' action, you can use
-the bundled L<RT::Interface::Email::Actions::Take>:
+the bundled L<RT::Interface::Email::Action::Take>:
Set( @MailPlugins,
- "Actions::Take",
+ "Action::Take",
);
Anonymous subroutine references found in C<@MailPlugins> are treated
@@ -24,14 +24,14 @@ default:
=over
-=item L<RT::Interface::Email::Actions::Take>
+=item L<RT::Interface::Email::Action::Take>
Allows the mailgate to specify C<--action take-comment>, for instance,
which would take the ticket before commenting. This action is somewhat
"unsafe," which is why it is not enabled by default. It can also often
be accomplished via a scrip instead.
-=item L<RT::Interface::Email::Actions::Resolve>
+=item L<RT::Interface::Email::Action::Resolve>
Allows the mailgate to specify C<--action correspond-resolve>, for
instance, which would correspond, then resolve the ticket. This action
diff --git a/lib/RT/Interface/Email.pm b/lib/RT/Interface/Email.pm
index 1aaa221..175805d 100644
--- a/lib/RT/Interface/Email.pm
+++ b/lib/RT/Interface/Email.pm
@@ -83,8 +83,8 @@ Takes parameters:
A C<-> separated list of actions to run. Standard actions, as detailed
in L<bin/rt-mailgate>, are C<comment> and C<correspond>. The
-L<RT::Interface::Email::Actions::Take> and
-L<RT::Interface::Email::Actions::Resolve> plugins can be added to
+L<RT::Interface::Email::Action::Take> and
+L<RT::Interface::Email::Action::Resolve> plugins can be added to
L<RT_Config/@MailPlugins> to provide C<take> and C<resolve> actions,
respectively.
-----------------------------------------------------------------------
More information about the rt-commit
mailing list