summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2013-01-06 00:26:36 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2013-01-06 00:26:36 +0100
commitd758a8169eacbccc0a65d6fd68e49f8eb8b713be (patch)
treed52cbe76cced45b2b7717ac0a6a6c2de8e6616cb /Bugzilla/Config
parentaea14709d4e25299cfe3aa3b0dc76344727f7b0b (diff)
downloadbugzilla-d758a8169eacbccc0a65d6fd68e49f8eb8b713be.tar.gz
bugzilla-d758a8169eacbccc0a65d6fd68e49f8eb8b713be.tar.xz
Bug 826678: Disable warnings about the deprecated Return::Value module when loading Email::Send
r=wicked a=LpSolit
Diffstat (limited to 'Bugzilla/Config')
-rw-r--r--Bugzilla/Config/MTA.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/Bugzilla/Config/MTA.pm b/Bugzilla/Config/MTA.pm
index c90e5dc76..aeded375f 100644
--- a/Bugzilla/Config/MTA.pm
+++ b/Bugzilla/Config/MTA.pm
@@ -34,6 +34,12 @@ package Bugzilla::Config::MTA;
use strict;
use Bugzilla::Config::Common;
+# Return::Value 1.666002 pollutes the error log with warnings about this
+# deprecated module. We have to set NO_CLUCK = 1 before loading Email::Send
+# to disable these warnings.
+BEGIN {
+ $Return::Value::NO_CLUCK = 1;
+}
use Email::Send;
our $sortkey = 1200;