Allow the "AUTHENTICATE" command in IRC tunnels (ticket #904)

This commit is contained in:
str4d
2013-04-25 05:27:55 +00:00
parent 813a1981d9
commit 85f3f5615f
2 changed files with 6 additions and 0 deletions

View File

@@ -51,6 +51,7 @@ abstract class IRCFilter {
"KICK",
"H", // "hide operator status" (after kicking an op)
"TOPIC",
"AUTHENTICATE", // SASL, also requires CAP below
// http://tools.ietf.org/html/draft-mitchell-irc-capabilities-01
"CAP"
};
@@ -152,6 +153,7 @@ abstract class IRCFilter {
// Commands that regular users might use
"ADMIN",
"AWAY", // should be harmless
"AUTHENTICATE", // SASL, also requires CAP below
"CAP", // http://tools.ietf.org/html/draft-mitchell-irc-capabilities-01
"CYCLE",
"DCCALLOW",

View File

@@ -1,3 +1,7 @@
2013-04-25 str4d
* i2ptunnel: Allow the "AUTHENTICATE" command in IRC tunnels to enable SASL
authentication (ticket #904)
2013-04-24 zzz
* Console, i2ptunnel: Don't register shutdown hook if ClientAppManager is present
* JettyStart: Fixes for use by plugins