[Rt-commit] r13049 - rt/branches/3.8-TESTING/share/html/Install
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Mon Jun 9 11:18:47 EDT 2008
Author: sunnavy
Date: Mon Jun 9 11:18:31 2008
New Revision: 13049
Modified:
rt/branches/3.8-TESTING/share/html/Install/Emails.html
rt/branches/3.8-TESTING/share/html/Install/Sendmail.html
Log:
move MaxAttachmentSize from email address page to email configuration page
Modified: rt/branches/3.8-TESTING/share/html/Install/Emails.html
==============================================================================
--- rt/branches/3.8-TESTING/share/html/Install/Emails.html (original)
+++ rt/branches/3.8-TESTING/share/html/Install/Emails.html Mon Jun 9 11:18:31 2008
@@ -61,7 +61,7 @@
<%init>
my @results;
-my @Types = qw/MaxAttachmentSize OwnerEmail CommentAddress CorrespondAddress/;
+my @Types = qw/OwnerEmail CommentAddress CorrespondAddress/;
if ( $Run ) {
@@ -74,12 +74,6 @@
'Install/Basics.html');
}
- for ( qw/MaxAttachmentSize/ ) {
- if ( $ARGS{$_} && $ARGS{$_} !~ /^\d+$/ ) {
- push @results, "Invalid $_: it should be a number";
- }
- }
-
unless ( @results ) {
RT::Interface::Web::Redirect(RT->Config->Get('WebURL') .
'Install/Sendmail.html');
Modified: rt/branches/3.8-TESTING/share/html/Install/Sendmail.html
==============================================================================
--- rt/branches/3.8-TESTING/share/html/Install/Sendmail.html (original)
+++ rt/branches/3.8-TESTING/share/html/Install/Sendmail.html Mon Jun 9 11:18:31 2008
@@ -66,7 +66,7 @@
<%init>
my @results;
-my @Types = qw/SendmailArguments SendmailBounceArguments SendmailPath/;
+my @Types = qw/MaxAttachmentSize SendmailArguments SendmailBounceArguments SendmailPath/;
if ( $Run ) {
@@ -79,6 +79,12 @@
'Install/Emails.html');
}
+ for ( qw/MaxAttachmentSize/ ) {
+ if ( $ARGS{$_} && $ARGS{$_} !~ /^\d+$/ ) {
+ push @results, "Invalid $_: it should be a number";
+ }
+ }
+
unless ( @results ) {
my ( $status, $msg ) = RT::Installer->SaveConfig;
More information about the Rt-commit
mailing list