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

@ -1814,6 +1814,8 @@ pub trait Store {
// NickServ SET HIDE STATUS: whether this account hides its last-seen line.
fn set_account_hide_status(&mut self, account: &str, on: bool) -> Result<(), RegError>;
fn account_hides_status(&self, account: &str) -> bool;
fn set_account_snotice(&mut self, account: &str, on: bool) -> Result<(), RegError>;
fn account_wants_snotice(&self, account: &str) -> bool;
// HostServ vhosts.
fn set_vhost(&mut self, account: &str, host: &str, setter: &str, ttl: Option<u64>) -> Result<(), RegError>;
fn del_vhost(&mut self, account: &str) -> Result<bool, RegError>;