On Thu, Sep 19, 2002 at 06:12:36PM -0700, Max Clark wrote:
> After increasing the verbosity of the logs I am getting this error
> message.
>
> Can't locate object method "new" via package "Qpsmtpd::TcpServer" at
> /usr/home/smtpd/qpsmtpd/qpsmtpd line 22.
>
> Have I missed something, I am running v.10 from cvs.
are you using a pre-5.6 version of perl? i found i needed the patch
below to get it to work with 5.00503.
(at least, i think this patch cleaned up a similar error message for me.)
jim
--- lib/Qpsmtpd/TcpServer.pm 8 Sep 2002 13:52:12 -0000 1.2
+++ lib/Qpsmtpd/TcpServer.pm 20 Sep 2002 01:28:31 -0000
@@ -1,6 +1,7 @@
package Qpsmtpd::TcpServer;
use strict;
-use base qw(Qpsmtpd);
+use Qpsmtpd;
+@Qpsmtpd::TcpServer::ISA = qw(Qpsmtpd);
sub start_connection {
my $self = shift;