>
> > > 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
> > 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
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