Mercurial > prosody-modules
view mod_component_client/README.markdown @ 2713:eea1d5bac451
mod_smacks: Fix delayed_ack event
After the first delayed ack every queued stanza should immediately
trigger the delayed_ack event.
author | tmolitor <thilo@eightysoft.de> |
---|---|
date | Mon, 08 May 2017 19:36:37 +0200 |
parents | 35ae59a8196d |
children |
line wrap: on
line source
Introduction ============ This module turns Prosody hosts into components of other XMPP servers. Configuration ============= Example configuration: ``` {.lua} VirtualHost "component.example.com" modules_enabled = { "component_client" } component_client = { host = "localhost"; port = 5347; secret = "hunter2"; } ```