I hope I explain well...
It would be of great help if a user whose nick is registered enters the server, he cannot write in any room or private room until he identifies himself.
since on my server, they use registered nicks of other users and bother posing as other people and leave before the services change their nick.
Hopefully something can be done.
Thank you very much.
Only allow messages from registered user
Moderator: Supporters
Re: Registered user
Could you tell me how please?.
Re: Registered user
(I know, old topic, was just going through it)
A more common question is to limit only private messages to registered users, while still allowing channel messages. This is explained in "Disable private message" in the new Security guide.
For disallowing messages in channels from unregistered users there is normally channel mode +M which you set on individual channels.
If you would really want to disallow that for EVERY channel then set::restrict-commands can help with that.
This example would disable both private and public messages from unregistered users:
A more common question is to limit only private messages to registered users, while still allowing channel messages. This is explained in "Disable private message" in the new Security guide.
For disallowing messages in channels from unregistered users there is normally channel mode +M which you set on individual channels.
If you would really want to disallow that for EVERY channel then set::restrict-commands can help with that.
This example would disable both private and public messages from unregistered users:
Code: Select all
set {
restrict-commands {
private-message {
except { identified yes; }
}
private-notice {
except { identified yes; }
}
channel-message {
except { identified yes; }
}
channel-notice {
except { identified yes; }
}
}
}
Re: Only allow messages from registered user
Sorry if I do thread-necrophilia, but I've a small question: if an user cannot send private message and his client doesn't allow SASL, how can he register or identify himself ?