in reply to Mechanize and Bypassing SSL Certificate Check

I don't think LWP::UserAgent exposes that option; however, you can set the PERL_LWP_SSL_VERIFY_HOSTNAME environment var to 0 to bypass the cert check.

$ export PERL_LWP_SSL_VERIFY_HOSTNAME=0 $ ./my_mech_script

-derby