diff --git a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/irc/IRCFilter.java b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/irc/IRCFilter.java
index fb6f6f557bd2ab0d3799fd7dd3a72c5c8c5a610b..73f6bb887ae8069bd9ca197c72b387b773d66b00 100644
--- a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/irc/IRCFilter.java
+++ b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/irc/IRCFilter.java
@@ -102,7 +102,7 @@ abstract class IRCFilter {
         {
             String msg;
             msg = field[idx++];
-        
+
             if(msg.indexOf(0x01) >= 0) // CTCP marker ^A can be anywhere, not just immediately after the ':'
             {
                 // CTCP
@@ -139,52 +139,94 @@ abstract class IRCFilter {
             }
             return s;
         }
-        
+
         // Block the rest
         return null;
     }
-    
+
     private static final Set<String> _allowedOutbound;
     static {
         final String[] allowedCommands =
         {
-                // "NOTICE", // can contain CTCP
-                "MODE",
+                // Commands that regular users might use
+                "ADMIN",
+                "AWAY",    // should be harmless
+                "CYCLE",
+                "DCCALLOW",
+                "HELPME", "HELPOP",  // helpop is what unrealircd uses by default
+                "INVITE",
+                "ISON",    // jIRCii uses this for a ping (response is 303)
                 "JOIN",
-                "NICK",
-                "WHO",
-                "WHOIS",
+                "KICK",
+                "KNOCK",
                 "LIST",
-                "NAMES",
-                "ADMIN",
+                "LUSERS",
+                "MAP", // seems safe enough, the ircd should protect themselves though
+                "MODE",
                 "MOTD",
+                "NAMES",
+                "NICK",
+                // "NOTICE", // can contain CTCP
+                "OPER",
+                // "PART", // replace with filtered PART to hide client part messages
                 "PASS",
+                // "PING",
+                // "PONG", // replaced with a filtered PING/PONG since some clients send the server IP (thanks aardvax!)
                 // "QUIT", // replace with a filtered QUIT to hide client quit messages
+                "RULES",
+                "SETNAME",
                 "SILENCE",
-                "MAP", // seems safe enough, the ircd should protect themselves though
-                // "PART", // replace with filtered PART to hide client part messages
-                "OPER",
-                // "PONG", // replaced with a filtered PING/PONG since some clients send the server IP (thanks aardvax!)
-                // "PING",
-                "NICKSERV", "NS", // the next few are default aliases on unreal (+ anope)
+                "STATS",
+                "TOPIC",
+                "USERHOST",
+                "VHOST",
+                "WATCH",
+                "WHO",
+                "WHOIS",
+                "WHOWAS",
+                // the next few are default aliases on unreal (+ anope)
+                "BOTSERV", "BS",
                 "CHANSERV", "CS",
-                "MEMOSERV", "MS",
-                "OPERSERV", "OS",
                 "HELPSERV",
                 "HOSTSERV", "HS",
-                "BOTSERV", "BS",
+                "MEMOSERV", "MS",
+                "NICKSERV", "NS",
+                "OPERSERV", "OS",
                 "STATSERV",
-                "KICK",
-                "HELPME", "HELPOP",  // helpop is what unrealircd uses by default
                 // IRCop commands
-                "ADCHAT", "ADDMOTD", "ADDOMOTD", "CHATOPS", "CHGHOST", "CHGIDENT", "CHGNAME", "DCCDENY", "DIE",
-                "GLOBOPS", "GZLINE", "KILL", "KLINE", "LOCOPS", "NACHAT", "OPERMOTD", "REHASH", "RESTART", "SAJOIN",
-                "SAMODE", "SAPART", "SDESC", "SETHOST", "SETIDENT", "SHUN", "SPAMFILTER", "TEMPSHUN", "UNDCCDENY",
-                "RULES",
-                "TOPIC",
-                "ISON",    // jIRCii uses this for a ping (response is 303)
-                "INVITE",
-                "AWAY",    // should be harmless
+                "ADCHAT",
+                "ADDMOTD",
+                "ADDOMOTD",
+                "CHATOPS",
+                "CHGHOST",
+                "CHGIDENT",
+                "CHGNAME",
+                "CLOSE",
+                "DCCDENY",
+                "DIE",
+                "GLOBOPS",
+                "GZLINE",
+                "HTM", // "High Traffic Mode"
+                "KILL",
+                "KLINE",
+                "LOCOPS",
+                "NACHAT",
+                "OPERMOTD",
+                "REHASH",
+                "RESTART",
+                "SAJOIN",
+                "SAMODE",
+                "SAPART",
+                "SDESC",
+                "SETHOST",
+                "SETIDENT",
+                "SHUN",
+                "SPAMFILTER",
+                "SQUIT",
+                "TEMPSHUN",
+                "UNDCCDENY",
+                "WALLOPS",
+                "ZLINE",
                 // http://tools.ietf.org/html/draft-mitchell-irc-capabilities-01
                 "CAP"
         };
diff --git a/history.txt b/history.txt
index 05dfd4bb4fb530667738b2a7b31f9626008cbc2a..de6459f531e8692b9023e5d879d4dd4bb22603f0 100644
--- a/history.txt
+++ b/history.txt
@@ -1,3 +1,6 @@
+2011-11-28 kytv
+  * IRCClient: Add IRCop commands (and other safe commands) to the whitelist
+
 2011-11-27 zzz
   * IRCClient: Outbound whitelist optimization
   * Reseed:
diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java
index f2522cd4ed540000a936a603d4922f4a287ece1f..7ca1a3ec2c4e6b0a58a1f89cf73e6cb3036dcf84 100644
--- a/router/java/src/net/i2p/router/RouterVersion.java
+++ b/router/java/src/net/i2p/router/RouterVersion.java
@@ -18,7 +18,7 @@ public class RouterVersion {
     /** deprecated */
     public final static String ID = "Monotone";
     public final static String VERSION = CoreVersion.VERSION;
-    public final static long BUILD = 9;
+    public final static long BUILD = 10;
 
     /** for example "-test" */
     public final static String EXTRA = "";