-
Notifications
You must be signed in to change notification settings - Fork 271
Shout doesn't pass unknown commands #528
Comments
|
It's also making things tricky for ZNC users. (Yes I know Shout is basically a browser-based bouncer. I like my ZNC. :P) Obviously we can use |
Is there a reason to code the normal irc commands into the client individually rather than send them to the server to be executed? I would understand including custom client commands, but currently only a small fraction of valid commands work due to this implementation. I can't upload anything at the moment, but I altered the client.js around line 229 file to the following
just to test this idea out... and it made it much easier to send normal irc commands. It's definitely only a hack right now, because it means that /part requires a channel name after it, but situations like that which would require a short fix are far fewer than the amount of work required to add all of the individual commands into plugins. Not to mention it future proofs against new bouncers, server side specific commands, and other abnormalities. Today it is /znc, but tomorrow perhaps it's /xznc or something. |
I know @astorije is usually the one to do this, but the community fork, The Lounge, solved this in thelounge/thelounge#154 |
So I have a few ircops on a network running inspircd mulling around on my bouncer. Set up Shout to make sure they have a way to get on from anywhere (cheeky reverse proxy to get around the workplace firewall) and all's pretty good.
Problem we're finding is that Shout isn't passing any server side commands. Inspircd has weird stuff like
/sanick
and/check
which do handy stuff for ircops, but Shout is just dropping these without even declaring it.To use them the ircops have to do
/quote sanick Person Smelly_Person
and that's a bit annoying where they want to do stuff a bit quicker.Also,
/check
doesn't work at all, since the raw IRC server stuff doesn't get sent to the server tab. Should see something like:Instead, Shout just isn't picking this up at all. If I connect to my bouncer in another client though (like HexChat) I can see all that stuff in there if I run
/check
in Shout.So there you go. Shout is dropping some server-side stuff, making stuff tricky for ircops.
The text was updated successfully, but these errors were encountered: