Software /
code /
prosody-modules
Annotate
mod_bidi/README.markdown @ 5810:e79f9dec35c0
mod_c2s_conn_throttle: Reduce log level from error->info
Our general policy is that "error" should never be triggerable by remote
entities, and that it is always about something that requires admin
intervention. This satisfies neither condition.
The "warn" level can be used for unexpected events/behaviour triggered by
remote entities, and this could qualify. However I don't think failed auth
attempts are unexpected enough.
I selected "info" because it is what is also used for other notable session
lifecycle events.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 07 Dec 2023 15:46:50 +0000 |
parent | 5659:9ce8ee530438 |
rev | line source |
---|---|
1803
4d73a1a6ba68
Convert all wiki pages to Markdown
Kim Alvefur <zash@zash.se>
parents:
1782
diff
changeset
|
1 --- |
4d73a1a6ba68
Convert all wiki pages to Markdown
Kim Alvefur <zash@zash.se>
parents:
1782
diff
changeset
|
2 labels: |
5657 | 3 - Stage-Stable |
4 summary: "XEP-0288: Bidirectional Server-to-Server Connections" | |
5 --- | |
1782 | 6 |
5656
d832a5e10c04
mod_bidi: Add warning about use with 0.12
Kim Alvefur <zash@zash.se>
parents:
3671
diff
changeset
|
7 ::: {.alert .alert-warning} |
d832a5e10c04
mod_bidi: Add warning about use with 0.12
Kim Alvefur <zash@zash.se>
parents:
3671
diff
changeset
|
8 This module is unreliable when used with Prosody 0.12, switch to |
5657 | 9 [mod_s2s_bidi][doc:modules:mod_s2s_bidi] |
5656
d832a5e10c04
mod_bidi: Add warning about use with 0.12
Kim Alvefur <zash@zash.se>
parents:
3671
diff
changeset
|
10 ::: |
d832a5e10c04
mod_bidi: Add warning about use with 0.12
Kim Alvefur <zash@zash.se>
parents:
3671
diff
changeset
|
11 |
5657 | 12 # Introduction |
1782 | 13 |
1803
4d73a1a6ba68
Convert all wiki pages to Markdown
Kim Alvefur <zash@zash.se>
parents:
1782
diff
changeset
|
14 This module implements [XEP-0288: Bidirectional Server-to-Server |
4d73a1a6ba68
Convert all wiki pages to Markdown
Kim Alvefur <zash@zash.se>
parents:
1782
diff
changeset
|
15 Connections](http://xmpp.org/extensions/xep-0288.html). It allows |
4d73a1a6ba68
Convert all wiki pages to Markdown
Kim Alvefur <zash@zash.se>
parents:
1782
diff
changeset
|
16 servers to use a single connection for sending stanzas to each other, |
4d73a1a6ba68
Convert all wiki pages to Markdown
Kim Alvefur <zash@zash.se>
parents:
1782
diff
changeset
|
17 instead of two connections (one for stanzas in each direction). |
1782 | 18 |
1803
4d73a1a6ba68
Convert all wiki pages to Markdown
Kim Alvefur <zash@zash.se>
parents:
1782
diff
changeset
|
19 Install and enable it like any other module. It has no configuration. |
1782 | 20 |
5657 | 21 # Compatibility |
1782 | 22 |
5658 | 23 ------ ------------------------------------------- |
5659
9ce8ee530438
mod_bidi: Really extra finally fix auto-linking to mod_s2s_bidi
Kim Alvefur <zash@zash.se>
parents:
5658
diff
changeset
|
24 0.12 Bidi available natively with [mod_s2s_bidi][doc:modules:mod_s2s_bidi] |
5657 | 25 0.11 Works |
5658 | 26 ------ ------------------------------------------- |