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

Thanks thanow1983. That link didn't have a solution but at least they were able to install the latest version of Net::SMTP onto their windows OS.

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

    Hello again bdegan2,

    The link does not give a solution but it proposes Try the Perl debugger, run your code with $perl -d ... and try to see what's up, step by step.. Did you try that?

    Where are you failing? I assume that you running on WindowsOS right?

    Provide us details, Perl version, module version, OS etc. So we could try to replicate your problem and see if it is only local on your OS or general.

    By the way, is your question related with NET::SMTP with TLS and Net::SMTP::TLS attachments (previously asked by you)? Where they resolved from your point of view? it looks like it on the latest question.

    Looking forward to your update, BR.

    Seeking for Perl wisdom...on the process of learning...not there...yet!
      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.

        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!