Skip Menu |

This queue is for tickets about the Crypt-SSLeay CPAN distribution.

Report information
The Basics
Id: 29371
Status: resolved
Priority: 1/
Queue: Crypt-SSLeay

People
Owner: dland [...] cpan.org
Requestors: JDB [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: (no value)
Fixed in: 0.57



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'} || '');
On Fri Sep 14 14:30:06 2007, JDB wrote: Show quoted text
> 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'} || '');
Good point. I'll roll that into the next release. Thanks for the suggestion, David
Fixed in release 0.57. Thanks for the report. David Landgren