in reply to Re: LWP and HTTPSin thread LWP and HTTPS
If you want to set up the environment, either do so outside your script, or at least, before the SSL modules are loaded:
BEGIN { $ENV{ HTTPS_VERSION }= 3; }; use WWW::Mechanize; [download]