nickserv: SET SNOTICE — opt-in server-notice-style service replies (*** NickServ: ...) sourced from the server instead of the pseudoclient
All checks were successful
CI / check (push) Successful in 3m47s

This commit is contained in:
Jean Chevronnet 2026-07-18 03:40:22 +00:00
parent 3230cdd9db
commit 6429b82fc4
No known key found for this signature in database
12 changed files with 90 additions and 11 deletions

View file

@ -106,6 +106,11 @@ pub struct Account {
// (visible) is the zero value.
#[serde(default)]
pub hide_status: bool,
// NickServ SET SNOTICE: when set, service replies to this user come as a
// server notice ("*** NickServ: …") instead of a normal notice from the
// pseudoclient. Default (normal notice) is the zero value.
#[serde(default)]
pub snotice: bool,
// Assigned vhost (HostServ), applied to the displayed host on identify.
#[serde(default)]
pub vhost: Option<Vhost>,