Page 1 of 1

Informations from irc server

Posted: Tue Jun 25, 2024 6:00 am
by Parisien123
Hello

I have an unrealircd server.

I have another computer that i want to connect to the server.
The other computer needs to be informed when a user connect, quit, when a channel is open or closed, if a user goes inside or outside a channel.

Can i have all These informations by connecting as a link server?

Thank you for your help

Re: Informations from irc server

Posted: Tue Jun 25, 2024 6:12 am
by CrazyCat
Just connect with an ircop account with the good flags (have a look on https://www.unrealircd.org/docs/Snomasks) and you'll see the server activity (connect, quit, kicks, nick changement, ...).
But you won't see channels creations nor joined/left by users

Re: Informations from irc server

Posted: Tue Jun 25, 2024 6:41 am
by Parisien123
CrazyCat wrote: Tue Jun 25, 2024 6:12 am But you won't see channels creations nor joined/left by users
Why?

Re: Informations from irc server

Posted: Tue Jun 25, 2024 6:55 am
by CrazyCat
Because unrealircd doesn't provide these informations as far I know.

Or peharps plaing with logs (see https://www.unrealircd.org/docs/Log_sources)

Re: Informations from irc server

Posted: Fri Jun 28, 2024 6:40 am
by Syzop
In the URL that CrazyCat posted, https://www.unrealircd.org/docs/Snomasks you can see that the 'j' snomask will give you notifications of joins, parts and kicks.

Code: Select all

MODE Yournick +s +j
I believe the feature was added in UnrealIRCd 6.0.0.

See also that page regarding set::snomask-on-oper and oper::snomask to give it by default so you don't have to /MODE yourself.

Re: Informations from irc server

Posted: Fri Jun 28, 2024 7:09 am
by CrazyCat
Syzop wrote: Fri Jun 28, 2024 6:40 am

Code: Select all

MODE Yournick +s +j
I believe the feature was added in UnrealIRCd 6.0.0.
Remember me to re-read the doc after a new unrealircd release :)