Software / code / prosody-modules
Annotate
mod_rawdebug/README.md @ 6238:c1b94dd6e53b
mod_http_oauth2: Change password grant to take username instead of JID [BC]
For consistency since the other grant types do not accept JIDs
This has been like this from the beginning of this module.
Changing this breaks backwards-compatibility with anything that relied
on the JID as username, but things shouldn't really be using the
password grant anyway as it is insecure.
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sat, 19 Apr 2025 16:25:24 +0200 |
| parent | 6003:fe081789f7b5 |
| rev | line source |
|---|---|
| 1803 | 1 --- |
|
2256
c5c583fae25d
mod_rawdebug: Simplify, remove telnet command, log every single byte
Kim Alvefur <zash@zash.se>
parents:
1937
diff
changeset
|
2 summary: Extra verbose logging of sent and received |
|
c5c583fae25d
mod_rawdebug: Simplify, remove telnet command, log every single byte
Kim Alvefur <zash@zash.se>
parents:
1937
diff
changeset
|
3 --- |
| 1803 | 4 |
|
2256
c5c583fae25d
mod_rawdebug: Simplify, remove telnet command, log every single byte
Kim Alvefur <zash@zash.se>
parents:
1937
diff
changeset
|
5 Summary |
|
c5c583fae25d
mod_rawdebug: Simplify, remove telnet command, log every single byte
Kim Alvefur <zash@zash.se>
parents:
1937
diff
changeset
|
6 ======= |
| 1803 | 7 |
| 8 Sometimes it is useful to get the raw XML logs from clients for | |
|
2256
c5c583fae25d
mod_rawdebug: Simplify, remove telnet command, log every single byte
Kim Alvefur <zash@zash.se>
parents:
1937
diff
changeset
|
9 debugging purposes, but some clients don't expose this. |
| 1803 | 10 |
|
2256
c5c583fae25d
mod_rawdebug: Simplify, remove telnet command, log every single byte
Kim Alvefur <zash@zash.se>
parents:
1937
diff
changeset
|
11 This module logs dumps everything sent and received into debug logs, for |
|
c5c583fae25d
mod_rawdebug: Simplify, remove telnet command, log every single byte
Kim Alvefur <zash@zash.se>
parents:
1937
diff
changeset
|
12 debugging purposes. |