Topic shown on channel join #1038
-
|
Hi, as is usually the case, when halloy joins a channel, /topic is sent to show to the user. However I use halloy to connect to irc proxies. I am starting halloy to join an IRC session already in progress, and the topic shown every single time I start it up isn't great. Is there any way I can get it to stop showing me the topic in the main buffer everytime I run halloy and it "joins" the channels? (It's not really joining, again, it is connecting to a proxy already joined to the channels.) I tried messing with buffer.channel.topic, but that's obviously not doing what I'm asking. Thanks for any help. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
https://halloy.chat/configuration/buffer.html#bufferserver_messages Check out the topic server message. [buffer.server_messages.topic]
enabled = false |
Beta Was this translation helpful? Give feedback.
-
|
A
|
Beta Was this translation helpful? Give feedback.
A
/topiccommand is not sent by Halloy, aRPL_TOPICmessage is sent by the server in response to Halloy'sJOINcommand (as is required to do). Some quick testing shows that some bouncers will sendRPL_TOPICfor "joined" channels even if Halloy doesn't send aJOINcommand (if you want to try with your IRC proxy, comment out/remove channels from your channel list in your configuration file, and Halloy will not send aJOINcommand for those channels).RPL_TOPICmessages are the ones that are filtered bybuffer.server_messages.topic, but AFAIK there's no way for Halloy to distinguish between the one's sent for "joins" and the ones for joins. I'll try to clarify the setting's description.