Mercurial > prosody-modules
annotate mod_listusers/README.markdown @ 5536:96dec7681af8
mod_firewall: Update user marks to store instantly via map store
The original approach was to keep marks in memory only, and persist them at
shutdown. That saves I/O, at the cost of potentially losing marks on an
unclean shutdown.
This change persists marks instantly, which may have some performance overhead
but should be more "correct".
It also splits the marking/unmarking into an event which may be watched or
even fired by other modules.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 08 Jun 2023 16:20:42 +0100 |
parents | b56a635220f6 |
children |
rev | line source |
---|---|
5412
b56a635220f6
mod_listusers: Obsolete, suggest prosodyctl shell instead
Kim Alvefur <zash@zash.se>
parents:
2323
diff
changeset
|
1 --- |
b56a635220f6
mod_listusers: Obsolete, suggest prosodyctl shell instead
Kim Alvefur <zash@zash.se>
parents:
2323
diff
changeset
|
2 labels: |
b56a635220f6
mod_listusers: Obsolete, suggest prosodyctl shell instead
Kim Alvefur <zash@zash.se>
parents:
2323
diff
changeset
|
3 - 'Stage-Obsolete' |
b56a635220f6
mod_listusers: Obsolete, suggest prosodyctl shell instead
Kim Alvefur <zash@zash.se>
parents:
2323
diff
changeset
|
4 --- |
b56a635220f6
mod_listusers: Obsolete, suggest prosodyctl shell instead
Kim Alvefur <zash@zash.se>
parents:
2323
diff
changeset
|
5 |
b56a635220f6
mod_listusers: Obsolete, suggest prosodyctl shell instead
Kim Alvefur <zash@zash.se>
parents:
2323
diff
changeset
|
6 ::: {.alert .alert-warning} |
b56a635220f6
mod_listusers: Obsolete, suggest prosodyctl shell instead
Kim Alvefur <zash@zash.se>
parents:
2323
diff
changeset
|
7 As of Prosody 0.12.x, `prosodyctl shell user list HOST` can be used |
b56a635220f6
mod_listusers: Obsolete, suggest prosodyctl shell instead
Kim Alvefur <zash@zash.se>
parents:
2323
diff
changeset
|
8 instead of this module. |
b56a635220f6
mod_listusers: Obsolete, suggest prosodyctl shell instead
Kim Alvefur <zash@zash.se>
parents:
2323
diff
changeset
|
9 ::: |
b56a635220f6
mod_listusers: Obsolete, suggest prosodyctl shell instead
Kim Alvefur <zash@zash.se>
parents:
2323
diff
changeset
|
10 |
2323 | 11 This module adds a command to `prosodyctl` for listing users. |
12 | |
13 ``` sh | |
14 prosodyctl mod_listusers | |
15 ``` |