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.