summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Mailer.pm
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2013-01-07 17:03:40 +0100
committerDave Lawrence <dlawrence@mozilla.com>2013-01-07 17:03:40 +0100
commitdf058f2b9168fa02899a6eea63b19efc750487bf (patch)
tree3bc0b551fc3d7600bfd6664e732ac309ca4f7140 /Bugzilla/Mailer.pm
parentaeb35cd1a50134f8e69a7d925dca4bd54fdc3bde (diff)
parentd758a8169eacbccc0a65d6fd68e49f8eb8b713be (diff)
downloadbugzilla-df058f2b9168fa02899a6eea63b19efc750487bf.tar.gz
bugzilla-df058f2b9168fa02899a6eea63b19efc750487bf.tar.xz
merged with bugzilla/4.2
Diffstat (limited to 'Bugzilla/Mailer.pm')
-rw-r--r--Bugzilla/Mailer.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/Bugzilla/Mailer.pm b/Bugzilla/Mailer.pm
index d27f79155..7789af018 100644
--- a/Bugzilla/Mailer.pm
+++ b/Bugzilla/Mailer.pm
@@ -48,6 +48,12 @@ use Encode qw(encode);
use Encode::MIME::Header;
use Email::Address;
use Email::MIME;
+# 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;
use Sys::Hostname;