I got it to work after upgrading the TCP/IP stack. It works for awhile but after processing a few forms I get the following:
Failed to open SMTP connection: Inappropriate I/O control operation
Here's some test code I'm using to diagnose the problem.
#!/usr/bin/perluse Net::SMTP; #Creat
Got it working after updating UPDATING TCPIP stack. I have noticed after I do a few operations or process a form with a fair amount of data I start getting this error :
Failed to open SMTP connection: Inappropriate I/O control operation
Could this be some sort of Buffer issue. Here is a sm
First of all thanks to everyone who has responded. I've run a few more test and the problem is clearly around "MOD_Perl". I've load an SMTP server on the same system where I'm running the apache server and the scripts fail to establish a session.
I'm able to run those scripts same scripts succes
Guy Alston wrote:
Error message:
Can't call method "mail" on an undefined value at
sys:/perl/web/mailtest2.pl line 6.
It's always a line containing " $smtp = Net::SMTP->new("smtpserver")
Net::SMTP is known to work, though I'm not currently using it.
You could add
local $SIG{__WARN__} = \&Ca