From 8a3d4469cc85108a194a78ac95f2a6780d2971eb Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Wed, 24 Dec 2008 03:43:36 +0000 Subject: Bug 284184: Allow Bugzilla to use an asynchronous job queue for sending mail. Patch By Max Kanat-Alexander and Mark Smith r=glob, a=mkanat --- template/en/default/global/code-error.html.tmpl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'template/en/default/global/code-error.html.tmpl') diff --git a/template/en/default/global/code-error.html.tmpl b/template/en/default/global/code-error.html.tmpl index f85375849..37e052f81 100644 --- a/template/en/default/global/code-error.html.tmpl +++ b/template/en/default/global/code-error.html.tmpl @@ -277,6 +277,21 @@ given. [% END %] + [% ELSIF error == "jobqueue_insert_failed" %] + [% title = "Job Queue Failure" %] + Inserting a [% job FILTER html %] job into the Job + Queue failed with the following error: [% errmsg FILTER html %] + + [% ELSIF error == "jobqueue_not_configured" %] + Using the job queue system requires that certain Perl modules + be installed. Run checksetup.pl to see what modules + you are missing. + + [% ELSIF error == "jobqueue_no_job_mapping" %] + Bugzilla::JobQueue has not been configured to handle + the job "[% job FILTER html %]". You need to add this job type + to the JOB_MAP constant in Bugzilla::JobQueue. + [% ELSIF error == "ldap_bind_failed" %] Failed to bind to the LDAP server. The error message was: [% errstr FILTER html %] -- cgit v1.2.3-24-g4f1b