Update to 2021-11-02 18:00

master
Daniel Berteaud 3 years ago
parent 42262cb597
commit 16aca60368
  1. 13
      roles/matrix_element/templates/config.json.j2
  2. 2
      roles/matrix_synapse/defaults/main.yml
  3. 3
      roles/matrix_synapse/templates/homeserver.yaml.j2
  4. 1
      roles/squid/files/acl/software_windows.domains

@ -1,7 +1,7 @@
{ {
"default_hs_url": "{{ element_default_home_server | default('https://' + synapse_server_name) | default('https://matrix.org') }}", "default_hs_url": "{{ element_default_home_server | default('https://' + synapse_server_name) | default('https://matrix.org') }}",
"default_is_url": "{{ element_default_identity_server }}", "default_is_url": "{{ element_default_identity_server }}",
"brand": "Riot", "brand": "Element",
"integrations_ui_url": "https://scalar.vector.im/", "integrations_ui_url": "https://scalar.vector.im/",
"integrations_rest_url": "https://scalar.vector.im/api", "integrations_rest_url": "https://scalar.vector.im/api",
"integrations_widgets_urls": [ "integrations_widgets_urls": [
@ -12,7 +12,7 @@
"https://scalar-staging.element.im/scalar/api" "https://scalar-staging.element.im/scalar/api"
], ],
"bug_report_endpoint_url": "https://element.im/bugreports/submit", "bug_report_endpoint_url": "https://element.im/bugreports/submit",
"enableLabs": true, "showLabsSettings": true,
"roomDirectory": { "roomDirectory": {
"servers": [ "servers": [
"matrix.org" "matrix.org"
@ -26,5 +26,14 @@
"preferredDomain": "{{ element_jitsi_server }}" "preferredDomain": "{{ element_jitsi_server }}"
}, },
{% endif %} {% endif %}
"settingDefaults": {
"UIFeature.feedback": false,
"UIFeature.thirdPartyId": false,
{% if synapse_auth is defined and 'internal' not in synapse_auth and synapse_auth != 'internal' %}
"UIFeature.passwordReset": false,
"UIFeature.deactivate": false,
{% endif %}
"UIFeature.registration": {{ (synapse_enable_registration | default(False)) | ternary('true', 'false') }}
},
"happyJson": true "happyJson": true
} }

@ -1,7 +1,7 @@
--- ---
# Synapse version to deploy # Synapse version to deploy
synapse_version: 1.45.0 synapse_version: 1.46.0
# Should ansible handle Synapse upgrades ? If false, only initial install will be done # Should ansible handle Synapse upgrades ? If false, only initial install will be done
synapse_manage_upgrade: True synapse_manage_upgrade: True

@ -208,4 +208,7 @@ alias_creation_rules:
alias: '*' alias: '*'
action: allow action: allow
server_notices:
system_mxid_localpart: server
system_mxid_display_name: "Notification bot"
... ...

@ -21,6 +21,7 @@ dl.delivery.mp.microsoft.com
dmd.metaservices.microsoft.com dmd.metaservices.microsoft.com
activation-v2.sls.microsoft.com activation-v2.sls.microsoft.com
download.visualstudio.microsoft.com download.visualstudio.microsoft.com
activation.sls.microsoft.com
# comon CRL / OCSP # comon CRL / OCSP
crl.microsoft.com crl.microsoft.com

Loading…
Cancel
Save