Subject: | Support $ENV{no_proxy} in addition to $ENV{NO_PROXY} |
LWP uses the lowercase 'no_proxy' name, so it would be nice if Net::SSL
would reuse the variable.
Net/SSL.pm line 320 (in 0.56):
my @no_proxy = split( /\s*,\s*/, $ENV{'NO_PROXY'} || '');
should become
my @no_proxy = split( /\s*,\s*/, $ENV{'NO_PROXY'} ||
$ENV{'no_proxy'} || '');