summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authordmose%mozilla.org <>2000-04-12 09:25:37 +0200
committerdmose%mozilla.org <>2000-04-12 09:25:37 +0200
commit6dff94ab87e983958e91b9eef4cee7a9deb0d84c (patch)
treee6875367151fdffdeab687070ee6e7e8fc81ac9c /checksetup.pl
parent27a112e5ce96b682d48d6fcacfbb597d9b331c22 (diff)
downloadbugzilla-6dff94ab87e983958e91b9eef4cee7a9deb0d84c.tar.gz
bugzilla-6dff94ab87e983958e91b9eef4cee7a9deb0d84c.tar.xz
use sendmail deferred delivery to avoid long hangs at bug submission time
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl4
1 files changed, 4 insertions, 0 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 17e510940..f0a7a3d77 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -1639,6 +1639,8 @@ if ( CountIndexes('cc') != 3 ) {
DropIndexes('cc');
$dbh->do("ALTER TABLE cc ADD UNIQUE (bug_id,who)");
$dbh->do("ALTER TABLE cc ADD INDEX (who)");
+
+ $regenerateshadow=1; # cc fields no longer have spaces in them
}
if ( CountIndexes('keywords') != 3 ) {
@@ -1649,6 +1651,7 @@ if ( CountIndexes('keywords') != 3 ) {
DropIndexes('keywords');
$dbh->do("ALTER TABLE keywords ADD INDEX (keywordid)");
$dbh->do("ALTER TABLE keywords ADD UNIQUE (bug_id,keywordid)");
+
}
#
@@ -1670,3 +1673,4 @@ if ($regenerateshadow) {
unlink "data/versioncache";
print "Reminder: Bugzilla now requires version 3.22.5 or later of MySQL.\n";
+print "Reminder: Bugzilla now requires version 8.7 or later of sendmail.\n";