RE: mail sending problem

2006-09-11 Thread Gerald Richter
> > > > use Net::SMTP; > > > $smtp = Net::SMTP->new('localhost') or die "Cannot connect to > > > mailhost"; from apache not works with message: > > > Error in Perl code: Cannot connect to mailhost > > > > Try with Net::SMTP->new('localhost', Debug => 1) . This > should give you > > some infor

Re: mail sending problem

2006-09-11 Thread Andrew Antipin
> > use Net::SMTP; > > $smtp = Net::SMTP->new('localhost') or die "Cannot connect > > to mailhost"; > > from apache not works with message: > > Error in Perl code: Cannot connect to mailhost > > Try with Net::SMTP->new('localhost', Debug => 1) . This should give you > some information what's goi

RE: mail sending problem

2006-09-11 Thread Gerald Richter
Hi, > > Thank Gerald for reply about "session problem", but now I > have another question regarding mail sending: > > part of simple script: > > use Net::SMTP; > $smtp = Net::SMTP->new('localhost') or die "Cannot connect > to mailhost"; > > from apache not works with message: > Error in Pe