explain crawl denial when not switched to intranet mode

This commit is contained in:
Michael Peter Christen 2014-10-11 09:02:12 +02:00
parent f818f84adb
commit 6983dff334

View File

@ -542,7 +542,7 @@ public final class CrawlStacker {
if (this.acceptLocalURLs && local) return null;
if (this.acceptGlobalURLs && !local) return null;
final String host = url.getHost();
if (host == null) return "url.host is null";
if (host == null) return "url.host is null (you must switch to intranet mode to crawl these sources)";
// check if this is a local address and we are allowed to index local pages:
//boolean local = hostAddress.isSiteLocalAddress() || hostAddress.isLoopbackAddress();
//assert local == yacyURL.isLocalDomain(url.hash()); // TODO: remove the dnsResolve above!