Skip Menu |

This queue is for tickets about the ORLite-Mirror CPAN distribution.

Report information
The Basics
Id: 61795
Status: resolved
Priority: 0/
Queue: ORLite-Mirror

People
Owner: Nobody in particular
Requestors: dolmen [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.20
Fixed in: (no value)



Subject: Proxy support
ORLite::Mirror uses LWP and LWP supports proxies. However this support using settings from environment variables must be explicitely enabled: my $useragent = LWP::UserAgent->new(...); $useragent->env_proxy; The env_proxy call is currently missing. -- Olivier Mengué - http://search.cpan.org/~dolmen/ http://github.com/dolmen/
Le Jeu 30 Sep 2010 10:00:53, DOLMEN a écrit : Show quoted text
> my $useragent = LWP::UserAgent->new(...); > $useragent->env_proxy; > > The env_proxy call is currently missing.
The env_proxy can also be activated by giving "env_proxy => 1" to the LWP::UserAgent constructor. -- Olivier Mengué - http://search.cpan.org/~dolmen/ http://github.com/dolmen/
This has been implemented