view mod_server_contact_info/README.markdown @ 2491:5fbca7de2088

mod_smacks: Send out more ack requests where needed Under some circumstances it was possible that more than "max_unacked_stanzas" where left in the outgoing stanza queue without forcing an ack. This could happen, when more stanzas entered the queue while the last ack request was still unanswered. Now the test "#queue > max_unacked_stanzas" is done upon receiving an ack as well as when sending out stanzas, which fixes this bug.
author tmolitor <thilo@eightysoft.de>
date Sun, 12 Feb 2017 19:27:50 +0100
parents d9c19ee16f2e
children 44e5adbb6ac0
line wrap: on
line source

---
labels:
- 'Stage-Beta'
summary: Contact Addresses for XMPP Services
---

Introduction
============

This module lets you advertise various contact addresses for your XMPP
service via [XEP-0157].

Configuration
=============

Various types of contact addresses can be set via the single table
option `contact_info`. Each field is either a string or a list of
strings. Each string should be an URI.

An example showing all possible fields:

``` {.lua}
contact_info = {
  abuse = { "mailto:abuse@shakespeare.lit", "xmpp:abuse@shakespeare.lit" };
  admin = { "mailto:admin@shakespeare.lit", "xmpp:admin@shakespeare.lit" };
  feedback = { "http://shakespeare.lit/feedback.php", "mailto:feedback@shakespeare.lit", "xmpp:feedback@shakespeare.lit" };
  sales = "xmpp:bard@shakespeare.lit";
  security = "xmpp:security@shakespeare.lit";
  support = { "http://shakespeare.lit/support.php", "xmpp:support@shakespeare.lit" };
};
```

If not set, the `admins` option will be used.

Compatibility
=============

  ------ ---------------
  0.10   works
  0.9    works
  0.8    does not work
  ------ ---------------