On 20 Jan 2006, at 19:44, Ovid wrote:
What appears to be the relevant part of the error message from qpsmtpd is this:10797 trying to get config for me 10797 FATAL PLUGIN ERROR: Invalid argument at ./plugins/queue/smtp-forward line 49, <STDIN> line 13. 10797 451 Queuing declined or disabled; try again later 10797 dispatching QUIT And what's actually throwing the error (comments are the values): my $smtp = Net::SMTP->new( $self->{_smtp_server}, # localhost Port => $self->{_smtp_port}, # 2525 Timeout => 60, Hello => $self->qp->config("me"), # Curtis-Poes-Computer.local ) || die $!; From what I can tell from the Net::SMTP docs, "Port" is not a valid parameter. "LocalPort" is a valid parameter, but that fails with "Address already in use" (since postfix is using it). Does anyone know what I'm doing wrong?
Probably postfix is rejecting the connection for some reason. Can you tcpdump the connection and see what happens? Is there anything in the postfix logs?
Matt.
