Browse Source

Merge branch 'prosody' of github.com:Titan-C/sovereign

Thomas Buck 5 years ago
parent
commit
3529418579
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      roles/xmpp/tasks/prosody.yml
  2. 1
    1
      roles/xmpp/templates/prosody.cfg.lua.j2

+ 1
- 1
roles/xmpp/tasks/prosody.yml View File

26
   file: state=directory path=/decrypted/prosody owner=prosody group=prosody
26
   file: state=directory path=/decrypted/prosody owner=prosody group=prosody
27
 
27
 
28
 - name: Configure Prosody
28
 - name: Configure Prosody
29
-  template: src=prosody.cfg.lua.j2 dest=/etc/prosody/prosody.cfg.lua group=root owner=root
29
+  template: src=prosody.cfg.lua.j2 dest=/etc/prosody/prosody.cfg.lua group=prosody owner=prosody
30
   notify: restart prosody
30
   notify: restart prosody
31
 
31
 
32
 - name: Create Prosody accounts
32
 - name: Create Prosody accounts

+ 1
- 1
roles/xmpp/templates/prosody.cfg.lua.j2 View File

43
 		"vcard"; -- Allow users to set vCards
43
 		"vcard"; -- Allow users to set vCards
44
 
44
 
45
 	-- These are commented by default as they have a performance impact
45
 	-- These are commented by default as they have a performance impact
46
-		"privacy"; -- Support privacy lists
46
+                "blocklist"; -- Support blocking users
47
 		--"compression"; -- Stream compression (requires the lua-zlib package installed)
47
 		--"compression"; -- Stream compression (requires the lua-zlib package installed)
48
 
48
 
49
 	-- Nice to have
49
 	-- Nice to have

Loading…
Cancel
Save