Related to https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/4549pull/4560/head
| @@ -57,6 +57,9 @@ matrix_appservice_kakaotalk_command_prefix: "!kt" | |||||
| matrix_appservice_kakaotalk_homeserver_address: "" | matrix_appservice_kakaotalk_homeserver_address: "" | ||||
| matrix_appservice_kakaotalk_homeserver_domain: '{{ matrix_domain }}' | matrix_appservice_kakaotalk_homeserver_domain: '{{ matrix_domain }}' | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | |||||
| # Requires a homeserver that supports MSC2246 (https://github.com/matrix-org/matrix-spec-proposals/pull/2246). | |||||
| matrix_appservice_kakaotalk_homeserver_async_media: false | |||||
| matrix_appservice_kakaotalk_appservice_address: 'http://matrix-appservice-kakaotalk:11115' | matrix_appservice_kakaotalk_appservice_address: 'http://matrix-appservice-kakaotalk:11115' | ||||
| @@ -21,7 +21,7 @@ homeserver: | |||||
| message_send_checkpoint_endpoint: null | message_send_checkpoint_endpoint: null | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | # Whether asynchronous uploads via MSC2246 should be enabled for media. | ||||
| # Requires a media repo that supports MSC2246. | # Requires a media repo that supports MSC2246. | ||||
| async_media: false | |||||
| async_media: {{ matrix_appservice_kakaotalk_homeserver_async_media | to_json }} | |||||
| # Application service host/registration related details | # Application service host/registration related details | ||||
| # Changing these values requires regeneration of the registration. | # Changing these values requires regeneration of the registration. | ||||
| @@ -37,6 +37,9 @@ matrix_beeper_linkedin_docker_src_files_path: "{{ matrix_beeper_linkedin_base_pa | |||||
| matrix_beeper_linkedin_homeserver_address: "" | matrix_beeper_linkedin_homeserver_address: "" | ||||
| matrix_beeper_linkedin_homeserver_domain: "{{ matrix_domain }}" | matrix_beeper_linkedin_homeserver_domain: "{{ matrix_domain }}" | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | |||||
| # Requires a homeserver that supports MSC2246 (https://github.com/matrix-org/matrix-spec-proposals/pull/2246). | |||||
| matrix_beeper_linkedin_homeserver_async_media: false | |||||
| matrix_beeper_linkedin_appservice_address: "http://matrix-beeper-linkedin:29319" | matrix_beeper_linkedin_appservice_address: "http://matrix-beeper-linkedin:29319" | ||||
| matrix_beeper_linkedin_bridge_presence: true | matrix_beeper_linkedin_bridge_presence: true | ||||
| @@ -21,7 +21,7 @@ homeserver: | |||||
| message_send_checkpoint_endpoint: null | message_send_checkpoint_endpoint: null | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | # Whether asynchronous uploads via MSC2246 should be enabled for media. | ||||
| # Requires a media repo that supports MSC2246. | # Requires a media repo that supports MSC2246. | ||||
| async_media: false | |||||
| async_media: {{ matrix_beeper_linkedin_homeserver_async_media | to_json }} | |||||
| # Application service host/registration related details | # Application service host/registration related details | ||||
| # Changing these values requires regeneration of the registration. | # Changing these values requires regeneration of the registration. | ||||
| @@ -28,6 +28,9 @@ matrix_mautrix_bluesky_data_path: "{{ matrix_mautrix_bluesky_base_path }}/data" | |||||
| matrix_mautrix_bluesky_docker_src_files_path: "{{ matrix_mautrix_bluesky_base_path }}/docker-src" | matrix_mautrix_bluesky_docker_src_files_path: "{{ matrix_mautrix_bluesky_base_path }}/docker-src" | ||||
| matrix_mautrix_bluesky_homeserver_address: "" | matrix_mautrix_bluesky_homeserver_address: "" | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | |||||
| # Requires a homeserver that supports MSC2246 (https://github.com/matrix-org/matrix-spec-proposals/pull/2246). | |||||
| matrix_mautrix_bluesky_homeserver_async_media: false | |||||
| matrix_mautrix_bluesky_homeserver_domain: '{{ matrix_domain }}' | matrix_mautrix_bluesky_homeserver_domain: '{{ matrix_domain }}' | ||||
| matrix_mautrix_bluesky_appservice_address: 'http://matrix-mautrix-bluesky:29340' | matrix_mautrix_bluesky_appservice_address: 'http://matrix-mautrix-bluesky:29340' | ||||
| @@ -164,7 +164,7 @@ homeserver: | |||||
| # The bridge will use the appservice as_token to authorize requests. | # The bridge will use the appservice as_token to authorize requests. | ||||
| message_send_checkpoint_endpoint: | message_send_checkpoint_endpoint: | ||||
| # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | ||||
| async_media: false | |||||
| async_media: {{ matrix_mautrix_bluesky_homeserver_async_media | to_json }} | |||||
| # Should the bridge use a websocket for connecting to the homeserver? | # Should the bridge use a websocket for connecting to the homeserver? | ||||
| # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | ||||
| @@ -36,6 +36,9 @@ matrix_mautrix_discord_data_path: "{{ matrix_mautrix_discord_base_path }}/data" | |||||
| matrix_mautrix_discord_docker_src_files_path: "{{ matrix_mautrix_discord_base_path }}/docker-src" | matrix_mautrix_discord_docker_src_files_path: "{{ matrix_mautrix_discord_base_path }}/docker-src" | ||||
| matrix_mautrix_discord_homeserver_address: "" | matrix_mautrix_discord_homeserver_address: "" | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | |||||
| # Requires a homeserver that supports MSC2246 (https://github.com/matrix-org/matrix-spec-proposals/pull/2246). | |||||
| matrix_mautrix_discord_homeserver_async_media: false | |||||
| matrix_mautrix_discord_homeserver_domain: "{{ matrix_domain }}" | matrix_mautrix_discord_homeserver_domain: "{{ matrix_domain }}" | ||||
| matrix_mautrix_discord_appservice_address: "http://matrix-mautrix-discord:8080" | matrix_mautrix_discord_appservice_address: "http://matrix-mautrix-discord:8080" | ||||
| @@ -16,7 +16,7 @@ homeserver: | |||||
| # Endpoint for reporting per-message status. | # Endpoint for reporting per-message status. | ||||
| message_send_checkpoint_endpoint: null | message_send_checkpoint_endpoint: null | ||||
| # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | ||||
| async_media: false | |||||
| async_media: {{ matrix_mautrix_discord_homeserver_async_media | to_json }} | |||||
| # Should the bridge use a websocket for connecting to the homeserver? | # Should the bridge use a websocket for connecting to the homeserver? | ||||
| # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | ||||
| @@ -37,6 +37,9 @@ matrix_mautrix_facebook_docker_src_files_path: "{{ matrix_mautrix_facebook_base_ | |||||
| matrix_mautrix_facebook_command_prefix: "!fb" | matrix_mautrix_facebook_command_prefix: "!fb" | ||||
| matrix_mautrix_facebook_homeserver_address: "" | matrix_mautrix_facebook_homeserver_address: "" | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | |||||
| # Requires a homeserver that supports MSC2246 (https://github.com/matrix-org/matrix-spec-proposals/pull/2246). | |||||
| matrix_mautrix_facebook_homeserver_async_media: false | |||||
| matrix_mautrix_facebook_homeserver_domain: '{{ matrix_domain }}' | matrix_mautrix_facebook_homeserver_domain: '{{ matrix_domain }}' | ||||
| # Whether or not the public-facing endpoints should be enabled (web-based login) | # Whether or not the public-facing endpoints should be enabled (web-based login) | ||||
| @@ -14,7 +14,7 @@ homeserver: | |||||
| asmux: false | asmux: false | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | # Whether asynchronous uploads via MSC2246 should be enabled for media. | ||||
| # Requires a media repo that supports MSC2246. | # Requires a media repo that supports MSC2246. | ||||
| async_media: false | |||||
| async_media: {{ matrix_mautrix_facebook_homeserver_async_media | to_json }} | |||||
| # Application service host/registration related details | # Application service host/registration related details | ||||
| # Changing these values requires regeneration of the registration. | # Changing these values requires regeneration of the registration. | ||||
| @@ -33,6 +33,9 @@ matrix_mautrix_gmessages_data_path: "{{ matrix_mautrix_gmessages_base_path }}/da | |||||
| matrix_mautrix_gmessages_docker_src_files_path: "{{ matrix_mautrix_gmessages_base_path }}/docker-src" | matrix_mautrix_gmessages_docker_src_files_path: "{{ matrix_mautrix_gmessages_base_path }}/docker-src" | ||||
| matrix_mautrix_gmessages_homeserver_address: "" | matrix_mautrix_gmessages_homeserver_address: "" | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | |||||
| # Requires a homeserver that supports MSC2246 (https://github.com/matrix-org/matrix-spec-proposals/pull/2246). | |||||
| matrix_mautrix_gmessages_homeserver_async_media: false | |||||
| matrix_mautrix_gmessages_homeserver_domain: "{{ matrix_domain }}" | matrix_mautrix_gmessages_homeserver_domain: "{{ matrix_domain }}" | ||||
| matrix_mautrix_gmessages_appservice_address: "http://matrix-mautrix-gmessages:8080" | matrix_mautrix_gmessages_appservice_address: "http://matrix-mautrix-gmessages:8080" | ||||
| @@ -168,7 +168,7 @@ homeserver: | |||||
| # The bridge will use the appservice as_token to authorize requests. | # The bridge will use the appservice as_token to authorize requests. | ||||
| message_send_checkpoint_endpoint: | message_send_checkpoint_endpoint: | ||||
| # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | ||||
| async_media: false | |||||
| async_media: {{ matrix_mautrix_gmessages_homeserver_async_media | to_json }} | |||||
| # Should the bridge use a websocket for connecting to the homeserver? | # Should the bridge use a websocket for connecting to the homeserver? | ||||
| # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | ||||
| @@ -116,6 +116,9 @@ matrix_mautrix_meta_instagram_database_sslmode: disable | |||||
| matrix_mautrix_meta_instagram_database_connection_string: 'postgres://{{ matrix_mautrix_meta_instagram_database_username }}:{{ matrix_mautrix_meta_instagram_database_password }}@{{ matrix_mautrix_meta_instagram_database_hostname }}:{{ matrix_mautrix_meta_instagram_database_port }}/{{ matrix_mautrix_meta_instagram_database_name }}?sslmode={{ matrix_mautrix_meta_instagram_database_sslmode }}' | matrix_mautrix_meta_instagram_database_connection_string: 'postgres://{{ matrix_mautrix_meta_instagram_database_username }}:{{ matrix_mautrix_meta_instagram_database_password }}@{{ matrix_mautrix_meta_instagram_database_hostname }}:{{ matrix_mautrix_meta_instagram_database_port }}/{{ matrix_mautrix_meta_instagram_database_name }}?sslmode={{ matrix_mautrix_meta_instagram_database_sslmode }}' | ||||
| matrix_mautrix_meta_instagram_homeserver_address: "" | matrix_mautrix_meta_instagram_homeserver_address: "" | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | |||||
| # Requires a homeserver that supports MSC2246 (https://github.com/matrix-org/matrix-spec-proposals/pull/2246). | |||||
| matrix_mautrix_meta_instagram_homeserver_async_media: false | |||||
| matrix_mautrix_meta_instagram_homeserver_domain: '{{ matrix_domain }}' | matrix_mautrix_meta_instagram_homeserver_domain: '{{ matrix_domain }}' | ||||
| matrix_mautrix_meta_instagram_homeserver_token: '' | matrix_mautrix_meta_instagram_homeserver_token: '' | ||||
| @@ -181,7 +181,7 @@ homeserver: | |||||
| # The bridge will use the appservice as_token to authorize requests. | # The bridge will use the appservice as_token to authorize requests. | ||||
| message_send_checkpoint_endpoint: | message_send_checkpoint_endpoint: | ||||
| # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | ||||
| async_media: false | |||||
| async_media: {{ matrix_mautrix_meta_instagram_homeserver_async_media | to_json }} | |||||
| # Should the bridge use a websocket for connecting to the homeserver? | # Should the bridge use a websocket for connecting to the homeserver? | ||||
| # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | ||||
| @@ -117,6 +117,9 @@ matrix_mautrix_meta_messenger_database_connection_string: 'postgres://{{ matrix_ | |||||
| matrix_mautrix_meta_messenger_homeserver_address: "" | matrix_mautrix_meta_messenger_homeserver_address: "" | ||||
| matrix_mautrix_meta_messenger_homeserver_domain: '{{ matrix_domain }}' | matrix_mautrix_meta_messenger_homeserver_domain: '{{ matrix_domain }}' | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | |||||
| # Requires a homeserver that supports MSC2246 (https://github.com/matrix-org/matrix-spec-proposals/pull/2246). | |||||
| matrix_mautrix_meta_messenger_homeserver_async_media: false | |||||
| matrix_mautrix_meta_messenger_homeserver_token: '' | matrix_mautrix_meta_messenger_homeserver_token: '' | ||||
| matrix_mautrix_meta_messenger_appservice_address: "http://{{ matrix_mautrix_meta_messenger_identifier }}:29319" | matrix_mautrix_meta_messenger_appservice_address: "http://{{ matrix_mautrix_meta_messenger_identifier }}:29319" | ||||
| @@ -181,7 +181,7 @@ homeserver: | |||||
| # The bridge will use the appservice as_token to authorize requests. | # The bridge will use the appservice as_token to authorize requests. | ||||
| message_send_checkpoint_endpoint: | message_send_checkpoint_endpoint: | ||||
| # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | ||||
| async_media: false | |||||
| async_media: {{ matrix_mautrix_meta_messenger_homeserver_async_media | to_json }} | |||||
| # Should the bridge use a websocket for connecting to the homeserver? | # Should the bridge use a websocket for connecting to the homeserver? | ||||
| # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | ||||
| @@ -42,6 +42,9 @@ matrix_mautrix_signal_docker_src_files_path: "{{ matrix_mautrix_signal_base_path | |||||
| matrix_mautrix_signal_homeserver_address: "" | matrix_mautrix_signal_homeserver_address: "" | ||||
| matrix_mautrix_signal_homeserver_domain: "{{ matrix_domain }}" | matrix_mautrix_signal_homeserver_domain: "{{ matrix_domain }}" | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | |||||
| # Requires a homeserver that supports MSC2246 (https://github.com/matrix-org/matrix-spec-proposals/pull/2246). | |||||
| matrix_mautrix_signal_homeserver_async_media: false | |||||
| matrix_mautrix_signal_appservice_address: "http://matrix-mautrix-signal:8080" | matrix_mautrix_signal_appservice_address: "http://matrix-mautrix-signal:8080" | ||||
| matrix_mautrix_signal_msc4190_enabled: "{{ matrix_bridges_msc4190_enabled }}" | matrix_mautrix_signal_msc4190_enabled: "{{ matrix_bridges_msc4190_enabled }}" | ||||
| @@ -159,7 +159,7 @@ homeserver: | |||||
| # The bridge will use the appservice as_token to authorize requests. | # The bridge will use the appservice as_token to authorize requests. | ||||
| message_send_checkpoint_endpoint: null | message_send_checkpoint_endpoint: null | ||||
| # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | ||||
| async_media: false | |||||
| async_media: {{ matrix_mautrix_signal_homeserver_async_media | to_json }} | |||||
| # Should the bridge use a websocket for connecting to the homeserver? | # Should the bridge use a websocket for connecting to the homeserver? | ||||
| # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | ||||
| @@ -32,6 +32,9 @@ matrix_mautrix_slack_docker_src_files_path: "{{ matrix_mautrix_slack_base_path } | |||||
| matrix_mautrix_slack_homeserver_address: "" | matrix_mautrix_slack_homeserver_address: "" | ||||
| matrix_mautrix_slack_homeserver_domain: "{{ matrix_domain }}" | matrix_mautrix_slack_homeserver_domain: "{{ matrix_domain }}" | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | |||||
| # Requires a homeserver that supports MSC2246 (https://github.com/matrix-org/matrix-spec-proposals/pull/2246). | |||||
| matrix_mautrix_slack_homeserver_async_media: false | |||||
| matrix_mautrix_slack_appservice_address: "http://matrix-mautrix-slack:8080" | matrix_mautrix_slack_appservice_address: "http://matrix-mautrix-slack:8080" | ||||
| matrix_mautrix_slack_msc4190_enabled: "{{ matrix_bridges_msc4190_enabled }}" | matrix_mautrix_slack_msc4190_enabled: "{{ matrix_bridges_msc4190_enabled }}" | ||||
| @@ -197,7 +197,7 @@ homeserver: | |||||
| # The bridge will use the appservice as_token to authorize requests. | # The bridge will use the appservice as_token to authorize requests. | ||||
| message_send_checkpoint_endpoint: | message_send_checkpoint_endpoint: | ||||
| # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | ||||
| async_media: false | |||||
| async_media: {{ matrix_mautrix_slack_homeserver_async_media | to_json }} | |||||
| # Should the bridge use a websocket for connecting to the homeserver? | # Should the bridge use a websocket for connecting to the homeserver? | ||||
| # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | ||||
| @@ -79,6 +79,9 @@ matrix_mautrix_telegram_public_endpoint: "{{ matrix_mautrix_telegram_path_prefix | |||||
| matrix_mautrix_telegram_homeserver_address: "" | matrix_mautrix_telegram_homeserver_address: "" | ||||
| matrix_mautrix_telegram_homeserver_domain: '{{ matrix_domain }}' | matrix_mautrix_telegram_homeserver_domain: '{{ matrix_domain }}' | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | |||||
| # Requires a homeserver that supports MSC2246 (https://github.com/matrix-org/matrix-spec-proposals/pull/2246). | |||||
| matrix_mautrix_telegram_homeserver_async_media: false | |||||
| matrix_mautrix_telegram_appservice_address: 'http://matrix-mautrix-telegram:8080' | matrix_mautrix_telegram_appservice_address: 'http://matrix-mautrix-telegram:8080' | ||||
| matrix_mautrix_telegram_appservice_public_external: '{{ matrix_mautrix_telegram_scheme }}://{{ matrix_mautrix_telegram_hostname }}{{ matrix_mautrix_telegram_public_endpoint }}' | matrix_mautrix_telegram_appservice_public_external: '{{ matrix_mautrix_telegram_scheme }}://{{ matrix_mautrix_telegram_hostname }}{{ matrix_mautrix_telegram_public_endpoint }}' | ||||
| @@ -21,7 +21,7 @@ homeserver: | |||||
| message_send_checkpoint_endpoint: null | message_send_checkpoint_endpoint: null | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | # Whether asynchronous uploads via MSC2246 should be enabled for media. | ||||
| # Requires a media repo that supports MSC2246. | # Requires a media repo that supports MSC2246. | ||||
| async_media: false | |||||
| async_media: {{ matrix_mautrix_telegram_homeserver_async_media | to_json }} | |||||
| # Application service host/registration related details | # Application service host/registration related details | ||||
| # Changing these values requires regeneration of the registration. | # Changing these values requires regeneration of the registration. | ||||
| @@ -36,6 +36,9 @@ matrix_mautrix_twitter_data_path: "{{ matrix_mautrix_twitter_base_path }}/data" | |||||
| matrix_mautrix_twitter_docker_src_files_path: "{{ matrix_mautrix_twitter_base_path }}/docker-src" | matrix_mautrix_twitter_docker_src_files_path: "{{ matrix_mautrix_twitter_base_path }}/docker-src" | ||||
| matrix_mautrix_twitter_homeserver_address: "" | matrix_mautrix_twitter_homeserver_address: "" | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | |||||
| # Requires a homeserver that supports MSC2246 (https://github.com/matrix-org/matrix-spec-proposals/pull/2246). | |||||
| matrix_mautrix_twitter_homeserver_async_media: false | |||||
| matrix_mautrix_twitter_homeserver_domain: '{{ matrix_domain }}' | matrix_mautrix_twitter_homeserver_domain: '{{ matrix_domain }}' | ||||
| matrix_mautrix_twitter_appservice_address: 'http://matrix-mautrix-twitter:29327' | matrix_mautrix_twitter_appservice_address: 'http://matrix-mautrix-twitter:29327' | ||||
| @@ -164,7 +164,7 @@ homeserver: | |||||
| # The bridge will use the appservice as_token to authorize requests. | # The bridge will use the appservice as_token to authorize requests. | ||||
| message_send_checkpoint_endpoint: | message_send_checkpoint_endpoint: | ||||
| # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | ||||
| async_media: false | |||||
| async_media: {{ matrix_mautrix_twitter_homeserver_async_media | to_json }} | |||||
| # Should the bridge use a websocket for connecting to the homeserver? | # Should the bridge use a websocket for connecting to the homeserver? | ||||
| # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | ||||
| @@ -44,6 +44,9 @@ matrix_mautrix_whatsapp_docker_src_files_path: "{{ matrix_mautrix_whatsapp_base_ | |||||
| matrix_mautrix_whatsapp_homeserver_address: "" | matrix_mautrix_whatsapp_homeserver_address: "" | ||||
| matrix_mautrix_whatsapp_homeserver_domain: "{{ matrix_domain }}" | matrix_mautrix_whatsapp_homeserver_domain: "{{ matrix_domain }}" | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | |||||
| # Requires a homeserver that supports MSC2246 (https://github.com/matrix-org/matrix-spec-proposals/pull/2246). | |||||
| matrix_mautrix_whatsapp_homeserver_async_media: false | |||||
| matrix_mautrix_whatsapp_appservice_address: "http://matrix-mautrix-whatsapp:8080" | matrix_mautrix_whatsapp_appservice_address: "http://matrix-mautrix-whatsapp:8080" | ||||
| matrix_mautrix_whatsapp_msc4190_enabled: "{{ matrix_bridges_msc4190_enabled }}" | matrix_mautrix_whatsapp_msc4190_enabled: "{{ matrix_bridges_msc4190_enabled }}" | ||||
| @@ -255,7 +255,7 @@ homeserver: | |||||
| # The bridge will use the appservice as_token to authorize requests. | # The bridge will use the appservice as_token to authorize requests. | ||||
| message_send_checkpoint_endpoint: | message_send_checkpoint_endpoint: | ||||
| # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | ||||
| async_media: false | |||||
| async_media: {{ matrix_mautrix_whatsapp_homeserver_async_media | to_json }} | |||||
| # Should the bridge use a websocket for connecting to the homeserver? | # Should the bridge use a websocket for connecting to the homeserver? | ||||
| # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | ||||
| @@ -47,6 +47,9 @@ matrix_wechat_agent_container_src_files_path: "{{ matrix_wechat_base_path }}/age | |||||
| matrix_wechat_homeserver_address: "" | matrix_wechat_homeserver_address: "" | ||||
| matrix_wechat_homeserver_domain: "{{ matrix_domain }}" | matrix_wechat_homeserver_domain: "{{ matrix_domain }}" | ||||
| # Whether asynchronous uploads via MSC2246 should be enabled for media. | |||||
| # Requires a homeserver that supports MSC2246 (https://github.com/matrix-org/matrix-spec-proposals/pull/2246). | |||||
| matrix_wechat_homeserver_async_media: false | |||||
| matrix_wechat_appservice_address: 'http://matrix-wechat:8080' | matrix_wechat_appservice_address: 'http://matrix-wechat:8080' | ||||
| matrix_wechat_container_network: "" | matrix_wechat_container_network: "" | ||||
| @@ -16,7 +16,7 @@ homeserver: | |||||
| # Endpoint for reporting per-message status. | # Endpoint for reporting per-message status. | ||||
| message_send_checkpoint_endpoint: null | message_send_checkpoint_endpoint: null | ||||
| # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? | ||||
| async_media: false | |||||
| async_media: {{ matrix_wechat_homeserver_async_media | to_json }} | |||||
| # Should the bridge use a websocket for connecting to the homeserver? | # Should the bridge use a websocket for connecting to the homeserver? | ||||
| # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, | ||||