On Sat, 30 May 2015 at 06:03 Dominique Dumont <[email protected]> wrote:
>
> https connection was reworked with version 6.06 of libwww-perl and
> liblwp-protocol-https-perl.
>
> https connection through proxy now works fine.
>
> Could you check the status of this bug on your side ?
>
It works much better now. Perhaps worth noting that the original code
doesn't work:
$ENV{HTTPS_PROXY} = "http://proxy.pri:3128";
This is required instead, which I believe is now consistant with the HTTP
(non-SSL) proxy configuration:
$ua->proxy(['https'], 'http://proxy.pri:3128');
Heaps better then before.