in reply to SMTP.pm & LWP Conflict - Internal response 500 from LWP

Anyone seen this before or any advice on how to fix the LWP issue?

Reinstall IO::SSL

Post some diagnostically relevant information, some IO::SSL or LWP debugging information

This is the beginning

  • Comment on Re: SMTP.pm & LWP Conflict - Internal response 500 from LWP

Replies are listed 'Best First'.
Re^2: SMTP.pm & LWP Conflict - Internal response 500 from LWP
by DaisyLou (Sexton) on Jun 17, 2014 at 01:43 UTC
    Thanks. It was the installation of IO::SSL that caused the breakage in SMTP ( Default SSL_verify_mode deprecated ). I Googled around and found that if you replace that regex, it will fix SMTP, but it appears to have broken LWP. I tried to get the debug info like you suggested, but when I added the envrionment variable (from shell and in a begin block in my script), nothing was output. /usr/share/perl5/vendor_perl/IO/Socket/SSL.pm our $VERSION = '1.94'; /usr/share/perl5/LWP.pm $VERSION = "6.05";

      Hmm, lets see, the last version of LWP is 6.06, and IO-Socket-SSL is 1.993 ....

      Try the latest versions not old ones

        Is there a clever way I can do that without losing the existing one in case it causes trouble? I don't have a staging environment to test this on.