--- lib/Qpsmtpd/TcpServer.pm.smtp-loginfo Thu May 19 13:16:33 2005 +++ lib/Qpsmtpd/TcpServer.pm Thu May 19 13:17:46 2005 @@ -58,7 +58,7 @@ while () { alarm 0; $_ =~ s/\r?\n$//s; # advanced chomp - $self->log(LOGDEBUG, "dispatching $_"); + $self->log(LOGINFO, "dispatching $_"); $self->connection->notes('original_string', $_); defined $self->dispatch(split / +/, $_) or $self->respond(502, "command unrecognized: '$_'"); @@ -71,7 +71,7 @@ my ($self, $code, @messages) = @_; while (my $msg = shift @messages) { my $line = $code . (@messages?"-":" ").$msg; - $self->log(LOGDEBUG, $line); + $self->log(LOGINFO, $line); print "$line\r\n" or ($self->log(LOGERROR, "Could not print [$line]: $!"), return 0); } return 1; @@ -79,7 +79,7 @@ sub disconnect { my $self = shift; - $self->log(LOGDEBUG,"click, disconnecting"); + $self->log(LOGINFO,"click, disconnecting"); $self->SUPER::disconnect(@_); exit; }