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

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";
  • Comment on Re^2: SMTP.pm & LWP Conflict - Internal response 500 from LWP

Replies are listed 'Best First'.
Re^3: SMTP.pm & LWP Conflict - Internal response 500 from LWP
by Anonymous Monk on Jun 17, 2014 at 02:37 UTC

    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.