in reply to Re^3: NET::SMTP on 64 bit
in thread NET::SMTP on 64 bit

Oh, sorry about not completing the other issue. When we upgraded to NET::SMTP on the 32 bit (linux) then the TLS worked successfully. I'm not the one doing the actual upgrade (don't have the root password ) so I will send your suggestion to see if he can run the install using the Perl debugger and let you know the results. We were able to upgrade IO::Socket:SSL but not NET::SMTP.

Replies are listed 'Best First'.
Re^5: NET::SMTP on 64 bit
by thanos1983 (Parson) on Oct 12, 2017 at 18:05 UTC

    Hello again bdegan2,

    No worries about the previous questions, I am curious to understand if they are related with the current OS or the LiuxOS 32 bit.

    Provide us the following information:

    1. Perl Version. (perl -v)

    2. OS version e.g. LinuxOS 64, WindowsOS 32 or 64.

    3. Net::SMTP installed version.

    Regarding the I'm not the one doing the actual upgrade (don't have the root password ) so I will send your suggestion to see if he can run the install using the Perl debugger and let you know the results. I meant to execute your script on debugger and see where it gets stack. Is it successfully installed or not? See sample bellow:

    #!/usr/bin/perl use strict; use warnings; use feature 'say'; say "Begin Test"; say "End Test"; __END__ $ perl -d test.pl Loading DB routines from perl5db.pl version 1.49_05 Editor support available. Enter h or 'h h' for help, or 'man perldebug' for more help. main::(test.pl:6): say "Begin Test"; DB<1> s + + Begin Test main::(test.pl:7): say "End Test"; DB<1>

    Looking forward to your update.

    Seeking for Perl wisdom...on the process of learning...not there...yet!
      Somehow I missed your specific questions about the versions we have installed. Here they are:
      [ops@oh01lx04 testemail]$ perl -v This is perl, v5.8.8 built for x86_64-linux-thread-multi Copyright 1987-2006, Larry Wall Perl may be copied only under the terms of either the Artistic License + or the GNU General Public License, which may be found in the Perl 5 source ki +t. Complete documentation for Perl, including FAQ lists, should be found +on this system using "man perl" or "perldoc perl". If you have access to + the Internet, point your browser at http://www.perl.org/, the Perl Home Pa +ge. [ops@oh01lx04 testemail]$ uname -a Linux oh01lx04.workflowone.net 2.6.18-53.1.6.el5 #1 SMP Wed Jan 16 03: +56:15 EST 2008 x86_64 x86_64 x86_64 GNU/Linux [ops@oh01lx04 testemail]$ perl -e 'use Net::SMTP; print $Net::SMTP::VE +RSION."\n"' 2.31
      Thanks again.

        What does this command show - Redhat ?

         cat /etc/*release
        
        poj