Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Can't get Net::SMTP to work

by tobyink (Canon)
on May 09, 2013 at 22:18 UTC ( [id://1032856]=note: print w/replies, xml ) Need Help??


in reply to Can't get Net::SMTP to work

Have you tried using the server's IP address rather than host name? Net::SMTP->new appears to return undef if it can't lookup the host name.

$ perl -MNet::SMTP -MData::Dumper -e'print Dumper(Net::SMTP->new(Host +=> "zzzz.tmpdir.eu", Debug => 1, Timeout => 60))' $VAR1 = undef; $ perl -MNet::SMTP -MData::Dumper -e'print Dumper(Net::SMTP->new(Host +=> "mail.tmpdir.eu", Debug => 1, Timeout => 60))' Net::SMTP>>> Net::SMTP(2.31) Net::SMTP>>> Net::Cmd(2.29) Net::SMTP>>> Exporter(5.66) Net::SMTP>>> IO::Socket::INET(1.33) Net::SMTP>>> IO::Socket(1.34) Net::SMTP>>> IO::Handle(1.33) Net::SMTP=GLOB(0x9ff45e8)<<< 220 mail.g5n.co.uk ESMTP Postfix (Ubuntu) Net::SMTP=GLOB(0x9ff45e8)>>> EHLO localhost.localdomain Net::SMTP=GLOB(0x9ff45e8)<<< 250-mail.g5n.co.uk Net::SMTP=GLOB(0x9ff45e8)<<< 250-PIPELINING Net::SMTP=GLOB(0x9ff45e8)<<< 250-SIZE 10240000 Net::SMTP=GLOB(0x9ff45e8)<<< 250-ETRN Net::SMTP=GLOB(0x9ff45e8)<<< 250-STARTTLS Net::SMTP=GLOB(0x9ff45e8)<<< 250-AUTH PLAIN LOGIN Net::SMTP=GLOB(0x9ff45e8)<<< 250-AUTH=PLAIN LOGIN Net::SMTP=GLOB(0x9ff45e8)<<< 250-ENHANCEDSTATUSCODES Net::SMTP=GLOB(0x9ff45e8)<<< 250-8BITMIME Net::SMTP=GLOB(0x9ff45e8)<<< 250 DSN $VAR1 = bless( \*Symbol::GEN0, 'Net::SMTP' );
package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

Replies are listed 'Best First'.
Re^2: Can't get Net::SMTP to work
by kcantrel (Initiate) on May 09, 2013 at 22:35 UTC
    Yes, actually, I initially had the IP address, but changing to the hostname was one of my attempts to get it to work.
Re^2: Can't get Net::SMTP to work
by kcantrel (Initiate) on May 09, 2013 at 22:39 UTC
    Also, what is odd, even with "Debug => 1" set, I don't get ANY output from the 'new' routine. It is almost like it immediately fails and returns.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1032856]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-16 18:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found