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-extension-commandbymail
Commits
81ade309
Commit
81ade309
authored
Apr 18, 2012
by
Kevin Falcone
Browse files
Remove more 3.8isms and prefer the modern syntax.
parent
7da4d2e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
INSTALL
View file @
81ade309
...
...
@@ -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:
@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)
)
;
@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.
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