summaryrefslogtreecommitdiffstats
path: root/defparams.pl
diff options
context:
space:
mode:
authorendico%mozilla.org <>2000-07-14 08:12:49 +0200
committerendico%mozilla.org <>2000-07-14 08:12:49 +0200
commit65695473717fdcadbcc85cac9c469231f352c739 (patch)
treeb5486ebe797e96143e40ca38a08cff2f8288d9fe /defparams.pl
parent17c6ef4af4c9c781d6d7a07be420762dfd065703 (diff)
downloadbugzilla-65695473717fdcadbcc85cac9c469231f352c739.tar.gz
bugzilla-65695473717fdcadbcc85cac9c469231f352c739.tar.xz
Bug moving code is now fully implemented. To use it, turn on the param and set the move related params.
Diffstat (limited to 'defparams.pl')
-rw-r--r--defparams.pl38
1 files changed, 37 insertions, 1 deletions
diff --git a/defparams.pl b/defparams.pl
index f3ee43a6c..57bda0c89 100644
--- a/defparams.pl
+++ b/defparams.pl
@@ -560,5 +560,41 @@ DefParam("supportwatchers",
" about) another's bugs. Useful for people going on vacation, and" .
" QA folks watching particular developers' bugs",
"b", 0 );
-1;
+
+DefParam("move-enabled",
+ "If this is on, Bugzilla will allow certain people to move bugs to the defined database.",
+ "b",
+ 0);
+DefParam("move-button-text",
+ "The text written on the Move button. Explain where the bug is being moved to.",
+ "t",
+ 'Move To Bugscape');
+DefParam("move-to-url",
+ "The URL of the database we allow some of our bugs to be moved to.",
+ "t",
+ '');
+DefParam("move-to-address",
+ "To move bugs, an email is sent to the target database. This is the email address that database
+ uses to listen for incoming bugs.",
+ "t",
+ 'bugzilla-import');
+DefParam("moved-from-address",
+ "To move bugs, an email is sent to the target database. This is the email address from which
+ this mail, and error messages are sent.",
+ "t",
+ 'bugzilla-admin');
+DefParam("movers",
+ "A list of people with permission to move bugs and reopen moved bugs (in case the move operation fails).",
+ "t",
+ '');
+DefParam("moved-default-product",
+ "Bugs moved from other databases to here are assigned to this product.",
+ "t",
+ '');
+DefParam("moved-default-component",
+ "Bugs moved from other databases to here are assigned to this component.",
+ "t",
+ '');
+
+1;