Changeset - d8198174bcb6
[Not reviewed]
0 3 0
Branko Majic (branko) - 3 years ago 2020-11-22 15:55:00
branko@majic.rs
MAR-173: Enabled blocklist module in Prosody configuration.
3 files changed with 7 insertions and 0 deletions:
0 comments (0 inline, 0 general)
docs/releasenotes.rst
Show inline comments
 
@@ -155,6 +155,11 @@ upgrade to Python 3.x, dropping support for Python 2.7.
 
    limit for the SMTP server to accept via
 
    ``mail_message_size_limit`` role parameter.
 

	
 
* ``xmpp_server`` role
 

	
 
  * Server now supports blocking users via `XEP-0191: Blocking Command
 
    <https://xmpp.org/extensions/xep-0191.html>`_.
 

	
 
**Deprecations:**
 

	
 
* ``backup_server`` and ``backup_client`` role
roles/xmpp_server/molecule/default/tests/test_default.py
Show inline comments
 
@@ -292,6 +292,7 @@ def test_enabled_modules(host):
 
    expected_modules = [
 
        "admin_adhoc",
 
        "announce",
 
        "blocklist",
 
        "dialback",
 
        "disco",
 
        "legacyauth",
roles/xmpp_server/templates/prosody.cfg.lua.j2
Show inline comments
 
@@ -17,6 +17,7 @@ modules_enabled = {
 

	
 
  -- Not essential, but recommended
 
    "private"; -- Private XML storage (for room bookmarks, etc.)
 
    "blocklist"; -- Allow users to block communications with other users
 
    "vcard"; -- Allow users to set vCards
 

	
 
  -- Nice to have
0 comments (0 inline, 0 general)