Mercurial > prosody-modules
annotate mod_list_inactive/README.markdown @ 5390:f2363e6d9a64
mod_http_oauth2: Advertise the currently supported id_token signing algorithm
This field is REQUIRED. The algorithm RS256 MUST be included, but isn't
because we don't implement it, as that would require implementing a pile
of additional cryptography and JWT stuff. Instead the id_token is
signed using the client secret, which allows verification by the client,
since it's a shared secret per OpenID Connect Core 1.0 ยง 10.1 under
Symmetric Signatures.
OpenID Connect Discovery 1.0 has a lot of REQUIRED and MUST clauses that
are not supported here, but that's okay because this is served from the
RFC 8414 OAuth 2.0 Authorization Server Metadata .well-known endpoint!
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 30 Apr 2023 16:13:40 +0200 |
parents | 0c01444f8bc2 |
children |
rev | line source |
---|---|
2187
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
1 Description |
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
2 =========== |
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
3 |
2189
093b1180aa42
mod_list_inactive/README: Fixup markdown
Kim Alvefur <zash@zash.se>
parents:
2188
diff
changeset
|
4 This module lists those users, who haven't used their account in a |
093b1180aa42
mod_list_inactive/README: Fixup markdown
Kim Alvefur <zash@zash.se>
parents:
2188
diff
changeset
|
5 defined time-frame. |
2187
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
6 |
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
7 Dependencies |
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
8 ============ |
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
9 |
2190
0c01444f8bc2
mod_list_inactive/README: Describe what the dependency does
Kim Alvefur <zash@zash.se>
parents:
2189
diff
changeset
|
10 [mod_lastlog] must be enabled to collect the data used by this module. |
2187
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
11 |
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
12 Usage |
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
13 ===== |
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
14 |
2189
093b1180aa42
mod_list_inactive/README: Fixup markdown
Kim Alvefur <zash@zash.se>
parents:
2188
diff
changeset
|
15 prosodyctl mod_list_inactive example.com time [format] |
2187
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
16 |
2189
093b1180aa42
mod_list_inactive/README: Fixup markdown
Kim Alvefur <zash@zash.se>
parents:
2188
diff
changeset
|
17 Time is a number followed by 'day', 'week', 'month' or 'year' |
093b1180aa42
mod_list_inactive/README: Fixup markdown
Kim Alvefur <zash@zash.se>
parents:
2188
diff
changeset
|
18 |
093b1180aa42
mod_list_inactive/README: Fixup markdown
Kim Alvefur <zash@zash.se>
parents:
2188
diff
changeset
|
19 Formats are: |
2187
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
20 |
2189
093b1180aa42
mod_list_inactive/README: Fixup markdown
Kim Alvefur <zash@zash.se>
parents:
2188
diff
changeset
|
21 --------- ------------------------------------------------ |
093b1180aa42
mod_list_inactive/README: Fixup markdown
Kim Alvefur <zash@zash.se>
parents:
2188
diff
changeset
|
22 delete `user:delete"user@example.com" -- last action` |
093b1180aa42
mod_list_inactive/README: Fixup markdown
Kim Alvefur <zash@zash.se>
parents:
2188
diff
changeset
|
23 default `user@example.com` |
093b1180aa42
mod_list_inactive/README: Fixup markdown
Kim Alvefur <zash@zash.se>
parents:
2188
diff
changeset
|
24 event `user@example.com last action` |
093b1180aa42
mod_list_inactive/README: Fixup markdown
Kim Alvefur <zash@zash.se>
parents:
2188
diff
changeset
|
25 --------- ------------------------------------------------ |
2187
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
26 |
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
27 Example |
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
28 ======= |
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
29 |
2189
093b1180aa42
mod_list_inactive/README: Fixup markdown
Kim Alvefur <zash@zash.se>
parents:
2188
diff
changeset
|
30 prosodyctl mod_list_inactive example.com 1year |
2187
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
31 |
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
32 Help |
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
33 ==== |
287f37e6b6e1
mod_list_inactive: Add README.md (fixes issue #684 - thanks t2d2!)
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
34 |
2189
093b1180aa42
mod_list_inactive/README: Fixup markdown
Kim Alvefur <zash@zash.se>
parents:
2188
diff
changeset
|
35 prosodyctl mod_list_inactive |