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

ops@oh01lx04 ~$ 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 ~$ 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 kit. 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 Page. [ops@oh01lx04

Replies are listed 'Best First'.
Re^7: NET::SMTP on 64 bit
by hippo (Archbishop) on Oct 13, 2017 at 22:03 UTC
    This is perl, v5.8.8 built for x86_64-linux-thread-multi Copyright 1987-2006, Larry Wall

    Hmmmm. That's more than a decade old, which in IT terms is practically pre-cambrian. Have you considered upgrading?

      Hello hippo.

      Unfortunately once these servers are in place it will take a miracle to get upgraded.
      Although the 32 bit server has the same Perl and the upgrade to Net::SMTP version 3.10 worked:
      oh01lx03:/prod/run/hip73977/perl -v

      This is perl, v5.8.8 built for i386-linux-thread-multi

      Copyright 1987-2006, Larry Wall

      We are scheduled to be moved to new servers later this year (hopefully!)

      Is Net::SMTP all Perl code? Could we somehow copy the Net::SMTP that was installed on the 32bit server and install it on the 64 bit ?

      Thank you for trying to assist

        Essentially you have 2 choices: either fix your broken CPAN installation or just install the dist by hand. I would do the latter, viz:

        1. Download the tarball
        2. Untar it
        3. perl Makefile.PL
        4. Resolve any unmet dependencies
        5. make && make test && sudo make install

        You may want to install it somewhere other than the default, so set PERL_MM_OPT first if so.