Re: Mod_Perl and Net::SMTP

2008-10-16 Thread Guy Alston
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

Re: Mod_Perl and Net::SMTP

2008-10-16 Thread Guy Alston
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

Re: Mod_Perl and Net::SMTP

2008-10-16 Thread Guy Alston
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

Re: Mod_Perl and Net::SMTP

2008-10-03 Thread Philip M. Gollucci
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

Mod_Perl and Net::SMTP

2008-09-30 Thread Guy Alston
I have a Netware server 6.5 sp6 with Apache 2.0.59.  I am trying to use some perl scripts to send HTML form data back to a particular e-mail address.  The scripts work on my workstation with my active perl but fail running on the server.   Error message: Can't call method "mail" on an undefined v