[Bps-public-commit] RT-Extension-CommandByMail branch, master, updated. 0.10-3-g81ade30
Kevin Falcone
falcone at bestpractical.com
Wed Apr 18 17:30:31 EDT 2012
The branch, master has been updated
via 81ade309a4494613823801e37b26addb4bb6f2ad (commit)
via 7da4d2e5817a668c7bdaa9b5e9db89792fc8656a (commit)
from 7b45a17470b4376b7931b1a5d115ec16cad56f05 (commit)
Summary of changes:
INSTALL | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
- Log -----------------------------------------------------------------
commit 7da4d2e5817a668c7bdaa9b5e9db89792fc8656a
Author: Nicholas Hall <ngharo at gmail.com>
Date: Wed Apr 18 14:16:22 2012 -0500
Make it known to use Set() syntax for 3.8+.
diff --git a/INSTALL b/INSTALL
index b774ccc..2077ea7 100644
--- a/INSTALL
+++ b/INSTALL
@@ -39,7 +39,7 @@ You can do this by adding the following line to your RT::SiteConfig:
@MailPlugins = qw(Auth::MailFrom Filter::TakeAction);
-If you are running RT-3.8 you will need to use slightly different syntax
+If you are running RT-3.8 and above you will need to use slightly different syntax
Set(@MailPlugins, qw(Auth::MailFrom Filter::TakeAction));
commit 81ade309a4494613823801e37b26addb4bb6f2ad
Author: Kevin Falcone <falcone at bestpractical.com>
Date: Wed Apr 18 17:30:04 2012 -0400
Remove more 3.8isms and prefer the modern syntax.
diff --git a/INSTALL b/INSTALL
index 2077ea7..78f777f 100644
--- a/INSTALL
+++ b/INSTALL
@@ -37,11 +37,11 @@ or any similar plugin that loads a current user object.
You can do this by adding the following line to your RT::SiteConfig:
- at MailPlugins = qw(Auth::MailFrom Filter::TakeAction);
+Set(@MailPlugins, qw(Auth::MailFrom Filter::TakeAction));
-If you are running RT-3.8 and above you will need to use slightly different syntax
+If you are running a version of RT before 3.8, you will need to write.
-Set(@MailPlugins, qw(Auth::MailFrom Filter::TakeAction));
+ at MailPlugins = qw(Auth::MailFrom Filter::TakeAction);
You will also need to add RT::Extension::CommandByMail to your
Plugins list.
@@ -50,7 +50,7 @@ Set(@Plugins,(qw(RT::Extension::CommandByMail)))
There is an optional configuration option CommandByMailGroup
Set($CommandByMailGroup, group_id);
-You can find the id in 3.8 by browsing to Configuration -> Groups
+You can find the id by browsing to Configuration -> Groups
Enjoy.
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list