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

@ -18,6 +18,7 @@ pub enum Event {
AccountAutoOpSet { account: String, on: bool },
AccountKillSet { account: String, on: bool },
AccountHideStatusSet { account: String, on: bool },
AccountSnoticeSet { account: String, on: bool },
AccountPasswordSet { account: String, scram256: String, scram512: String },
AccountDropped { account: String },
AccountVerified { account: String },
@ -176,6 +177,7 @@ impl Event {
| Event::AccountAutoOpSet { .. }
| Event::AccountKillSet { .. }
| Event::AccountHideStatusSet { .. }
| Event::AccountSnoticeSet { .. }
| Event::AccountPasswordSet { .. }
| Event::AccountDropped { .. }
| Event::AccountVerified { .. }
@ -352,6 +354,11 @@ pub(crate) fn apply(accounts: &mut HashMap<String, Account>, channels: &mut Hash
a.hide_status = on;
}
}
Event::AccountSnoticeSet { account, on } => {
if let Some(a) = accounts.get_mut(&key(&account)) {
a.snotice = on;
}
}
Event::AccountPasswordSet { account, scram256, scram512 } => {
if let Some(a) = accounts.get_mut(&key(&account)) {
a.scram256 = Some(scram256);