From 8527f784c081b0a1f646aa428a3c906e5d05e10b Mon Sep 17 00:00:00 2001 From: Devin Carraway Date: Thu, 21 May 2009 13:54:27 -0700 Subject: [PATCH] prefork: Fix startup when no interface addresses are specified MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ask Bjørn Hansen --- Changes | 2 ++ qpsmtpd-prefork | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index f300ed7..88f123f 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ X.YY - Date + prefork: Fix startup when no interface addresses are specified (Devin Carraway) + prefork: add multi-address support The clamdscan virus-scanning plugin now requires the ClamAV::Client diff --git a/qpsmtpd-prefork b/qpsmtpd-prefork index 798e3c4..aecb417 100755 --- a/qpsmtpd-prefork +++ b/qpsmtpd-prefork @@ -139,7 +139,7 @@ if (@d_addr) { } } } else { - @d_addr = ( 'addr' => $has_ipv6 ? "[::]" : "0.0.0.0" ); + @d_addr = ( { addr => $has_ipv6 ? "[::]" : "0.0.0.0", port => $d_port } ); } # set max from ip to max number of children if option is set to disabled