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
1158b2a6
Commit
1158b2a6
authored
Oct 03, 2013
by
Alex Vandiver
Browse files
Releng 0.14
parent
c1565ef1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
4 deletions
+15
-4
Changes
Changes
+4
-0
META.yml
META.yml
+1
-1
inc/Module/Install/RTx.pm
inc/Module/Install/RTx.pm
+9
-2
lib/RT/Extension/CommandByMail.pm
lib/RT/Extension/CommandByMail.pm
+1
-1
No files found.
Changes
View file @
1158b2a6
Revision history for RT-Extension-CommandByMail
0.14 Thu Oct 3 14:16:17 EDT 2013
* RT 4.2 compatibility
* Drop support for RT 3.6
0.13 Tue Jul 23 16:37:05 PDT 2013
* Add support for only inspecting headers, not the body
...
...
META.yml
View file @
1158b2a6
...
...
@@ -27,4 +27,4 @@ requires:
perl
:
5.8.3
resources
:
license
:
http://dev.perl.org/licenses/
version
:
0.1
3
version
:
0.1
4
inc/Module/Install/RTx.pm
View file @
1158b2a6
...
...
@@ -8,7 +8,7 @@ no warnings 'once';
use
Module::Install::
Base
;
use
base
'
Module::Install::Base
';
our
$VERSION
=
'
0.3
1
';
our
$VERSION
=
'
0.3
2
';
use
FindBin
;
use
File::
Glob
();
...
...
@@ -136,6 +136,7 @@ install ::
$has_etc
{acl}++;
}
if ( -e 'etc/initialdata' ) {
$has_etc
{initialdata}++; }
if ( -d 'etc/upgrade/' ) {
$has_etc
{upgrade}++; }
$self
->postamble(
"
$postamble
\
n
"
);
unless (
$subdirs
{'lib'} ) {
...
...
@@ -164,6 +165,12 @@ install ::
.
$self
->postamble(
"
initdb
::\
n$initdb
\
n
"
);
$self
->postamble(
"
initialize
-
database
::\
n$initdb
\
n
"
);
if (
$has_etc
{upgrade}) {
print
"
To
upgrade
from
a
previous
version
of
this
extension
,
use
'
make upgrade-database
'
\
n
"
;
my
$upgradedb
= qq|
\t\$
(NOECHO)
\$
(PERL) -Ilib -I
"
$local_lib_path
"
-I
"
$lib_path
"
-Minc::Module::Install -e
"
RTxInitDB
(
qw(upgrade \$(NAME) \$(VERSION))
)"
\n
|;
$self
->postamble(
"
upgrade
-
database
::\
n$upgradedb
\
n
"
);
$self
->postamble(
"
upgradedb
::\
n$upgradedb
\
n
"
);
}
}
}
...
...
@@ -209,4 +216,4 @@ sub requires_rt {
__END__
#line 3
29
#line 3
36
lib/RT/Extension/CommandByMail.pm
View file @
1158b2a6
use
5.008003
;
package
RT::Extension::
CommandByMail
;
our
$VERSION
=
'
0.1
3
';
our
$VERSION
=
'
0.1
4
';
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