Bladeren bron

Fix capitalization: room id → room ID

Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
pull/3607/head
Suguru Hirahara 1 jaar geleden
bovenliggende
commit
ac90870e30
Geen bekende sleutel gevonden voor deze handtekening in de database GPG sleutel-ID: E4F9743DAB4B7B75
4 gewijzigde bestanden met toevoegingen van 5 en 5 verwijderingen
  1. +2
    -2
      docs/configuring-playbook-email2matrix.md
  2. +1
    -1
      roles/custom/matrix-conduit/templates/conduit.toml.j2
  3. +1
    -1
      roles/custom/matrix-synapse/defaults/main.yml
  4. +1
    -1
      roles/custom/matrix-synapse/vars/main.yml

+ 2
- 2
docs/configuring-playbook-email2matrix.md Bestand weergeven

@@ -35,8 +35,8 @@ It doesn't matter who creates and owns the rooms and who joins later (you or the
What matters is that both you and the sender user are part of the same room and that the sender user has enough privileges in the room to be able to send messages there.
Inviting additional people to the room is okay too.

Take note of each room's room id (different clients show the room id in a different place).
You'll need the room id when doing [Configuration](#configuration) below.
Take note of each room's room ID (different clients show the room ID in a different place).
You'll need the room ID when doing [Configuration](#configuration) below.


### Obtaining an access token for the sender user


+ 1
- 1
roles/custom/matrix-conduit/templates/conduit.toml.j2 Bestand weergeven

@@ -7,7 +7,7 @@

[global]
# The server_name is the pretty name of this server. It is used as a suffix for user
# and room ids. Examples: matrix.org, conduit.rs
# and room IDs. Examples: matrix.org, conduit.rs

# The Conduit server needs all /_matrix/ requests to be reachable at
# https://your.server.name/ on port 443 (client-server) and 8448 (federation).


+ 1
- 1
roles/custom/matrix-synapse/defaults/main.yml Bestand weergeven

@@ -1210,7 +1210,7 @@ matrix_synapse_ext_encryption_disabler_download_url: "https://raw.githubusercont
# A list of server domain names for which to deny encryption if the event sender's domain matches the domain in the list.
# By default, with the configuration below, we prevent all homeserver users from initiating encryption in ANY room.
matrix_synapse_ext_encryption_disabler_deny_encryption_for_users_of: ["{{ matrix_domain }}"]
# A list of server domain names for which to deny encryption if the destination room id's domain matches the domain in the list.
# A list of server domain names for which to deny encryption if the destination room ID's domain matches the domain in the list.
# By default, with the configuration below, we prevent locally-created encryption events by ANY user encrypt rooms on the homeserver.
# Note: foreign users with enough room privileges will still be able to send an encryption event to your rooms and encrypt them.
matrix_synapse_ext_encryption_disabler_deny_encryption_for_rooms_of: ["{{ matrix_domain }}"]


+ 1
- 1
roles/custom/matrix-synapse/vars/main.yml Bestand weergeven

@@ -8,7 +8,7 @@ matrix_synapse_media_store_directory_name: "{{ matrix_synapse_media_store_path |
# Optionally: `false` to fully disable tls on outbound smtp
matrix_synapse_email_smtp_enable_tls: true

# Room workers handle any URL that contains a room id, either through the client-server API or the federation API
# Room workers handle any URL that contains a room ID, either through the client-server API or the federation API
# - see https://tcpipuk.github.io/synapse/deployment/nginx.html#locationsconf
matrix_synapse_workers_room_worker_client_server_endpoints:
- ^/_matrix/client/.*?!(?<room>[A-Za-z0-9._=\-\/]+):[A-Za-z0-9.\-]+


Laden…
Annuleren
Opslaan