Skip Menu |

This queue is for tickets about the URI-Fetch CPAN distribution.

Report information
The Basics
Id: 53819
Status: resolved
Priority: 0/
Queue: URI-Fetch

People
Owner: Nobody in particular
Requestors: i.d.norton [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.08
Fixed in: 0.08



Subject: URI-Fetch fails when no direct port 80 access is available
URI-Fetch does not support access via a proxy when direct port 80 access is blocked. Please see the patch below which makes correct use of the environment variables if appropriately set. --- lib/URI/Fetch.pm 2010-01-19 13:57:50.000000000 +0000 +++ lib/URI/Fetch.pm 2010-01-19 13:57:41.000000000 +0000 @@ -68,6 +68,7 @@ } $ua ||= LWP::UserAgent->new; + $ua->env_proxy; $ua->agent(join '/', $class, $class->VERSION) if $ua->agent =~ /^libwww-perl/; Thanks, Ian.
Thanks! Will be fixed in 0.09, heading to CPAN now.