}
String allowedHosts = mConfig.getString(Configuration.NNTP_SERVER_ALLOWED_HOSTS);
if (allowedHosts == null) {
allowedHosts = "127.0.0.1";
}
mNNTPServer = new FreetalkNNTPServer(this, 1199, bindTo, allowedHosts);
mNNTPServer.start();
} else {
if(logDEBUG) Logger.debug(this, "NNTP server disabled by user...");
mNNTPServer = null;
}