Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
best-practical
rt-extension-commandbymail
Commits
81d9f277
Commit
81d9f277
authored
Jul 22, 2013
by
Thomas Sibley
Browse files
Releng 0.12
parent
0ef60982
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
9 deletions
+15
-9
Changes
Changes
+5
-0
META.yml
META.yml
+1
-1
inc/Module/Install/RTx.pm
inc/Module/Install/RTx.pm
+8
-7
lib/RT/Extension/CommandByMail.pm
lib/RT/Extension/CommandByMail.pm
+1
-1
No files found.
Changes
View file @
81d9f277
Revision history for RT-Extension-CommandByMail
0.12 Mon Jul 22 11:07:44 PDT 2013
* Handle setting TxnCFs to 0 (zero)
* Regression fix for parsing bug in 0.11
* Look for commands in headers too via $CommandByMailHeader option
0.11
* get rid of uninit warnings
* make tests create DBs rather then re-use production
...
...
META.yml
View file @
81d9f277
...
...
@@ -27,4 +27,4 @@ requires:
perl
:
5.8.3
resources
:
license
:
http://dev.perl.org/licenses/
version
:
0.1
1
version
:
0.1
2
inc/Module/Install/RTx.pm
View file @
81d9f277
...
...
@@ -8,13 +8,13 @@ no warnings 'once';
use
Module::Install::
Base
;
use
base
'
Module::Install::Base
';
our
$VERSION
=
'
0.3
0
';
our
$VERSION
=
'
0.3
1
';
use
FindBin
;
use
File::
Glob
();
use
File::
Basename
();
my
@DIRS
=
qw(etc lib html bin sbin po var)
;
my
@DIRS
=
qw(etc lib html
static
bin sbin po var)
;
my
@INDEX_DIRS
=
qw(lib bin sbin)
;
sub
RTx
{
...
...
@@ -62,10 +62,11 @@ sub RTx {
unshift
@INC
,
"
$RT
::LocalPath/lib
"
if
$
RT::
LocalPath
;
unshift
@INC
,
$lib_path
;
$
RT::
LocalVarPath
||=
$
RT::
VarPath
;
$
RT::
LocalPoPath
||=
$
RT::
LocalLexiconPath
;
$
RT::
LocalHtmlPath
||=
$
RT::
MasonComponentRoot
;
$
RT::
LocalLibPath
||=
"
$RT
::LocalPath/lib
";
$
RT::
LocalVarPath
||=
$
RT::
VarPath
;
$
RT::
LocalPoPath
||=
$
RT::
LocalLexiconPath
;
$
RT::
LocalHtmlPath
||=
$
RT::
MasonComponentRoot
;
$
RT::
LocalStaticPath
||=
$
RT::
StaticPath
;
$
RT::
LocalLibPath
||=
"
$RT
::LocalPath/lib
";
my
$with_subdirs
=
$ENV
{
WITH_SUBDIRS
};
@ARGV
=
grep
{
/WITH_SUBDIRS=(.*)/
?
(
(
$with_subdirs
=
$
1
),
0
)
:
1
}
...
...
@@ -208,4 +209,4 @@ sub requires_rt {
__END__
#line 32
8
#line 32
9
lib/RT/Extension/CommandByMail.pm
View file @
81d9f277
use
5.008003
;
package
RT::Extension::
CommandByMail
;
our
$VERSION
=
'
0.1
1
';
our
$VERSION
=
'
0.1
2
';
1
;
__END__
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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