diff --git a/plugin/templates/help.html b/plugin/templates/help.html index c972d9d..965a3b8 100644 --- a/plugin/templates/help.html +++ b/plugin/templates/help.html @@ -10,6 +10,9 @@ This link is also at the top of your router console when ZzzOT is running.

Report bugs or add comments on the plugin forum on zzz.i2p. +

This help file is $PLUGIN/eepsite/docroot/help.html, you should probably move it + outside of the document root before you announce your eepsite as it may contain your user name. +

Eepsite Key and Helpful Hints for I2P

Your Base 32 address is $B32. @@ -47,8 +50,6 @@ This link is also at the top of your router console when ZzzOT is running. If your tracker gets over 1000 peers, you will probably want to increase the number of tunnels.

The Jetty webserver port is 7662. If you must change it, edit jetty.xml, i2ptunnel.config, and plugins.config in the directory $PLUGIN. Then stop and restart the plugin. -

This help file is $PLUGIN/eepsite/docroot/help.html, you should probably move it - outside of the document root before you announce your eepsite as it may contain your user name.

As you probably know, an open tracker does not require torrents to be registered, and it does not host torrent files. You can, however, host torrent files elsewhere on the eepsite, for example at /torrents. diff --git a/src/java/net/i2p/zzzot/ZzzOTController.java b/src/java/net/i2p/zzzot/ZzzOTController.java index e978503..2812d17 100644 --- a/src/java/net/i2p/zzzot/ZzzOTController.java +++ b/src/java/net/i2p/zzzot/ZzzOTController.java @@ -96,12 +96,12 @@ public class ZzzOTController { _log.error("Unable to create " + key.getAbsolutePath() + ' ' + e); throw new IllegalArgumentException("Unable to create " + key.getAbsolutePath() + ' ' + e); } - _log.error("NOTICE: ZzzOT: New eepsite keys created in " + key.getAbsolutePath()); - _log.error("NOTICE: ZzzOT: You should back up this file!"); + _log.logAlways(Log.INFO, "NOTICE: ZzzOT: New eepsite keys created in " + key.getAbsolutePath()); + _log.logAlways(Log.INFO, "NOTICE: ZzzOT: You should back up this file!"); String b32 = Base32.encode(dest.calculateHash().getData()) + ".b32.i2p"; String b64 = dest.toBase64(); - _log.error("NOTICE: ZzzOT: Your base 32 address is " + b32); - _log.error("NOTICE: ZzzOT: Your base 64 address is " + b64); + _log.logAlways(Log.INFO, "NOTICE: ZzzOT: Your base 32 address is " + b32); + _log.logAlways(Log.INFO, "NOTICE: ZzzOT: Your base 64 address is " + b64); } startJetty(pluginDir, dest); startI2PTunnel(pluginDir, dest);