Mercurial > prosody-modules
annotate mod_audit_user_accounts/README.md @ 5951:d6a695abb33c
mod_ping_muc: Delay ping a configurable amount of time
If a server is restarting, checking immediately before it has a chance
to complete its restart and get ready would often fail, preventing the
possibility of transparent restarts as supported by Prosody's mod_muc.
Reconnecting immediately when a connection is closed for being idle, or
because the remote server is trying to reclaim some resources, is also
counter-productive as the connection may fail.
Also, if there is some Internet routing problem affecting s2s, it may
help to wait a bit before checking, in case the problem resolved itself
in the mean time.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 11 Aug 2024 16:10:24 +0200 |
parents | 628952e4ff47 |
children |
rev | line source |
---|---|
4933
530d116b7f68
mod_audit*: modules for audit logging in prosody
Jonas Schäfer <jonas@wielicki.name>
parents:
diff
changeset
|
1 --- |
5745
628952e4ff47
mod_audit_user_accounts: Renamed from mod_audit_register
Matthew Wild <mwild1@gmail.com>
parents:
4933
diff
changeset
|
2 summary: Store user account lifecycle events in the audit log |
4933
530d116b7f68
mod_audit*: modules for audit logging in prosody
Jonas Schäfer <jonas@wielicki.name>
parents:
diff
changeset
|
3 rockspec: |
530d116b7f68
mod_audit*: modules for audit logging in prosody
Jonas Schäfer <jonas@wielicki.name>
parents:
diff
changeset
|
4 dependencies: |
530d116b7f68
mod_audit*: modules for audit logging in prosody
Jonas Schäfer <jonas@wielicki.name>
parents:
diff
changeset
|
5 - mod_audit |
530d116b7f68
mod_audit*: modules for audit logging in prosody
Jonas Schäfer <jonas@wielicki.name>
parents:
diff
changeset
|
6 ... |
530d116b7f68
mod_audit*: modules for audit logging in prosody
Jonas Schäfer <jonas@wielicki.name>
parents:
diff
changeset
|
7 |
5745
628952e4ff47
mod_audit_user_accounts: Renamed from mod_audit_register
Matthew Wild <mwild1@gmail.com>
parents:
4933
diff
changeset
|
8 This module stores events related to user accounts in the audit log. Events |
628952e4ff47
mod_audit_user_accounts: Renamed from mod_audit_register
Matthew Wild <mwild1@gmail.com>
parents:
4933
diff
changeset
|
9 include: |
628952e4ff47
mod_audit_user_accounts: Renamed from mod_audit_register
Matthew Wild <mwild1@gmail.com>
parents:
4933
diff
changeset
|
10 |
628952e4ff47
mod_audit_user_accounts: Renamed from mod_audit_register
Matthew Wild <mwild1@gmail.com>
parents:
4933
diff
changeset
|
11 - New user registered via IBR (user-registered) |
628952e4ff47
mod_audit_user_accounts: Renamed from mod_audit_register
Matthew Wild <mwild1@gmail.com>
parents:
4933
diff
changeset
|
12 - User deleted their account via IBR (user-deregistered) |
628952e4ff47
mod_audit_user_accounts: Renamed from mod_audit_register
Matthew Wild <mwild1@gmail.com>
parents:
4933
diff
changeset
|
13 - User requested deletion of their account (i.e. when a grace period is set) (user-deregistered-pending) |
628952e4ff47
mod_audit_user_accounts: Renamed from mod_audit_register
Matthew Wild <mwild1@gmail.com>
parents:
4933
diff
changeset
|
14 - User account disabled |
628952e4ff47
mod_audit_user_accounts: Renamed from mod_audit_register
Matthew Wild <mwild1@gmail.com>
parents:
4933
diff
changeset
|
15 - User account enabled |
628952e4ff47
mod_audit_user_accounts: Renamed from mod_audit_register
Matthew Wild <mwild1@gmail.com>
parents:
4933
diff
changeset
|
16 |
628952e4ff47
mod_audit_user_accounts: Renamed from mod_audit_register
Matthew Wild <mwild1@gmail.com>
parents:
4933
diff
changeset
|
17 There are no configuration options for this module. It depends on mod_audit. |