Skip to content

Commit

Permalink
Default Ghost sequence changed to REGAIN
Browse files Browse the repository at this point in the history
  • Loading branch information
casperstorm committed Sep 10, 2024
1 parent fc8fbd4 commit e5e69c2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Fixed:

- Regression where messages sent to ZNC virtual users were routed to the wrong buffer (e.g. `*status` routed to `status`).

Changed:

- Default Ghost sequence changed to `REGAIN`.

# 2024.11 (2024-09-04)

Added:
Expand Down
2 changes: 1 addition & 1 deletion book/src/configuration/servers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ The command(s) that should be sent to NickServ to recover a nickname.

- **type**: array of strings
- **values**: array of any strings
- **default**: `["GHOST"]`
- **default**: `["REGAIN"]`

## `umodes`

Expand Down
2 changes: 1 addition & 1 deletion data/src/config/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ fn default_reconnect_delay() -> u64 {
}

fn default_ghost_sequence() -> Vec<String> {
vec!["GHOST".into()]
vec!["REGAIN".into()]
}

fn default_who_poll_interval() -> Duration {
Expand Down

0 comments on commit e5e69c2

Please sign in to comment.