in reply to WWW::Mechanize with HTTPS

If you are using ActiveState 5.8.x try the following:
ppm install http://theoryx5.uwinnipeg.ca/ppms/Crypt-SSLeay.ppd

Note that setting a web proxy is dependant on the method. For HTTPS we set an environment variable:

$ENV{HTTPS_PROXY} = 'http://proxy.mycompany.com:8080';
and for HTTP we call the ->proxy method:
$ua->proxy(['http'],'http://proxy.mycompany.com:8080/');