diff --git a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java
index a3d6f75e491f25b56cbfa85c798ac42aaa59ddd3..4b5379ac12df54a25b32e548be0b87e595e83fe8 100644
--- a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java
+++ b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java
@@ -560,7 +560,7 @@ public class I2PTunnelHTTPClient extends I2PTunnelClientBase implements Runnable
             
             Destination dest = I2PTunnel.destFromName(destination);
             if (dest == null) {
-                l.log("Could not resolve " + destination + ".");
+                //l.log("Could not resolve " + destination + ".");
                 if (_log.shouldLog(Log.WARN))
                     _log.warn("Unable to resolve " + destination + " (proxy? " + usingWWWProxy + ", request: " + targetRequest);
                 String str;
@@ -570,6 +570,8 @@ public class I2PTunnelHTTPClient extends I2PTunnelClientBase implements Runnable
                     str = FileUtil.readTextFile("docs/dnfp-header.ht", 100, true);
                 else if(ahelper != 0)
                     str = FileUtil.readTextFile("docs/dnfb-header.ht", 100, true);
+                else if (destination.length() == 60 && destination.endsWith(".b32.i2p"))
+                    str = FileUtil.readTextFile("docs/dnf-header.ht", 100, true);
                 else {
                     str = FileUtil.readTextFile("docs/dnfh-header.ht", 100, true);
                     showAddrHelper = true;