Ernesto escribió:
Hi all,

please have a look at my db/suite - maybe it gives you some inspiration,
how to handle DBI connections in QPSMTPD plugins.


The problem should be affecting you if you used the TLS plugin.

Can you activate TLS and try this script on your server?

#!/usr/bin/perl
my $to = $ARGV[0] or die "Usage: $0 email";
use Net::SMTP::TLS;
my $mailer = new Net::SMTP::TLS(
       'HOST_TO_HANG',
       Hello => 'localhost',
       NoTLS => 0
       );
$mailer->mail('');
$mailer->to($to);
$mailer->{sock}->write('DATA');
$mailer->{sock}->close();
print "do a top on your SMTP server\n";

----------------------------
s/HOST_TO_HANG/your server IP/
invoke with [EMAIL PROTECTED], as $ARGV[0]

Jose Luis Martinez
CAPSiDE
[EMAIL PROTECTED]

Reply via email to