Subject: | Warnings disabled due to wrong perl version check |
Hello,
In the following code, as seen in Mail/Mbox/MessageParser.pm, $^W is
always set to 0 - the $] variable must be compared to 5.008, not 5.8.
local $^W = 0 if $] >= 5.006 and $] < 5.8;