Mercurial > prosody-modules
annotate mod_pubsub_hub/README.markdown @ 5296:0f5657db1cfc
mod_isolate_host: handle server-generated stanzas
The hook for setting the no_host_isolation is only called for c2s
sessions. This does not work for stanzas generated by the server,
such as PEP notifications or presence probe answers.
To handle that, we do per-stanza checks for the case that the origin
is local.
author | Jonas Schäfer <jonas@wielicki.name> |
---|---|
date | Sat, 01 Apr 2023 12:03:08 +0200 |
parents | f933e3909795 |
children |
rev | line source |
---|---|
1803 | 1 --- |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
2 summary: PubSubHubbub hub |
1803 | 3 ... |
4 | |
5 Introduction | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
6 ============ |
1803 | 7 |
8 This module implements a | |
2330
f933e3909795
mod_pubsub_hub/README: Update specification link
Kim Alvefur <zash@zash.se>
parents:
1986
diff
changeset
|
9 [PubSubHubbub](http://pubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.3.html) |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
10 (PuSH) hub, allowing PuSH clients to subscribe to local XMPP |
1803 | 11 [Publish-Subscribe](http://xmpp.org/extensions/xep-0060.html) nodes |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
12 stored by [mod\_pubsub](http://prosody.im/doc/modules/mod_pubsub) and |
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
13 receive real time updates to feeds. |
1803 | 14 |
15 Configuration | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
16 ============= |
1803 | 17 |
18 Component "pubsub.example.com" "pubsub" | |
19 | |
20 modules_enabled = { | |
21 "pubsub_hub"; | |
22 } | |
23 | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
24 The hub is then available on `http://pubsub.example.com:5280/hub`. |
1803 | 25 |
26 Compatibility | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
27 ============= |
1803 | 28 |
29 ------- -------------- | |
30 trunk Works | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
31 0.10 Should work |
1803 | 32 0.9 Works |
33 0.8 Doesn't work | |
34 ------- -------------- | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
35 |
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
36 |