summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Send
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-03-12 22:02:09 +0100
committerGitHub <noreply@github.com>2018-03-12 22:02:09 +0100
commit9a8e6dd21f64b0242939c2abf789e274995b4ded (patch)
tree63e6b0824077edcebdec24c8c54116667718935a /Bugzilla/Send
parentb6ffa8dec3bd7b14f8096a60ad9740ccda92a044 (diff)
downloadbugzilla-9a8e6dd21f64b0242939c2abf789e274995b4ded.tar.gz
bugzilla-9a8e6dd21f64b0242939c2abf789e274995b4ded.tar.xz
Bug 1437238 - Create override parameters for mailer configuration
Diffstat (limited to 'Bugzilla/Send')
-rw-r--r--Bugzilla/Send/Sendmail.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Send/Sendmail.pm b/Bugzilla/Send/Sendmail.pm
index 71c1f67ce..81c2190e5 100644
--- a/Bugzilla/Send/Sendmail.pm
+++ b/Bugzilla/Send/Sendmail.pm
@@ -37,7 +37,7 @@ sub send {
unless (close $pipe) {
return failure "error when closing pipe to $mailer: $!" if $!;
my ($error_message, $is_transient) = _map_exitcode($? >> 8);
- if (Bugzilla->params->{'use_mailer_queue'}) {
+ if (Bugzilla->get_param_with_override('use_mailer_queue')) {
# Return success for errors which are fatal so Bugzilla knows to
# remove them from the queue
if ($is_transient) {