MAYBE the problem is that gateway does not accept an IP but only an hostname. The error you reported in your log is from this code:

try {
 final InetAddress[] ips = dnsServer.getAllByName(nextGateway);
 ...
} catch (java.net.UnknownHostException uhe) {
 log("Unknown gateway host: " + uhe.getMessage().trim());
 log("This could be a DNS server error or configuration error.");
}

so it uses a getAllByName starting from the address you used.

If you have a valod hostname (not ip) for the gateway try using it.

If this was the problem please open a JIRA issue because we have to either fix it or document the fact that an IP will not work.

Stefano

lissette ha scritto:
         <mailet match="All" class="RemoteDelivery">
            <!--gateway>localhost</gateway-->
                <gateway>192.168.2.106</gateway>
            <gatewayPort>25</gatewayPort>
</mailet>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to