NICKLOCK / NICKUNLOCK (services hold a user's nick)

This commit is contained in:
Jean Chevronnet 2026-08-09 01:09:46 +00:00
parent 4d6525cac2
commit e2a4a3e248
3 changed files with 95 additions and 0 deletions

View file

@ -32,6 +32,7 @@ pub struct UserFlags {
pub callerid: bool, // +g (only accept PMs from users on the ACCEPT list)
pub showwhois: bool, // +W (get a notice when someone WHOISes you)
pub deny_uncommon: bool, // +c (only users sharing a channel may PM you)
pub nick_locked: bool, // NICKLOCK: services/oper holds this nick (no self-change)
pub away: Option<String>, // AWAY message, if set
}