Deprecate matrix_synapse_account_threepid_delegates_email before Synapse v1.66.0
This is done in anticipation of this option's removal in the upcoming Synapse v1.66.0 release (likely tomorrow). See: https://matrix-org.github.io/synapse/v1.66/upgrade.html#delegation-of-email-validation-no-longer-supported
This commit is contained in:
		| @@ -2237,9 +2237,7 @@ matrix_synapse_enabled: "{{ matrix_homeserver_implementation == 'synapse' }}" | |||||||
|  |  | ||||||
| matrix_synapse_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}" | matrix_synapse_container_image_self_build: "{{ matrix_architecture not in ['arm64', 'amd64'] }}" | ||||||
|  |  | ||||||
| # When ma1sd is enabled, we can use it to validate email addresses and phone numbers. | # When ma1sd is enabled, we can use it to validate phone numbers. It's something that the homeserver cannot do by itself. | ||||||
| # Synapse can validate email addresses by itself as well, but it's probably not what we want by default when we have an identity server. |  | ||||||
| matrix_synapse_account_threepid_delegates_email: "{{ 'http://matrix-ma1sd:' + matrix_ma1sd_container_port | string if matrix_ma1sd_enabled else '' }}" |  | ||||||
| matrix_synapse_account_threepid_delegates_msisdn: "{{ 'http://matrix-ma1sd:' + matrix_ma1sd_container_port | string if matrix_ma1sd_enabled else '' }}" | matrix_synapse_account_threepid_delegates_msisdn: "{{ 'http://matrix-ma1sd:' + matrix_ma1sd_container_port | string if matrix_ma1sd_enabled else '' }}" | ||||||
|  |  | ||||||
| # Normally, matrix-nginx-proxy is enabled and nginx can reach Synapse over the container network. | # Normally, matrix-nginx-proxy is enabled and nginx can reach Synapse over the container network. | ||||||
|   | |||||||
| @@ -257,10 +257,6 @@ matrix_synapse_registrations_require_3pid: [] | |||||||
| #    pattern: '\+44' | #    pattern: '\+44' | ||||||
| matrix_synapse_allowed_local_3pids: [] | matrix_synapse_allowed_local_3pids: [] | ||||||
|  |  | ||||||
| # The server to use for email threepid validation. When empty, Synapse does it by itself. |  | ||||||
| # Otherwise, this should be pointed to an identity server. |  | ||||||
| matrix_synapse_account_threepid_delegates_email: '' |  | ||||||
|  |  | ||||||
| # The server to use for phone number threepid validation. When empty, validation cannot happen, as Synapse doesn't support it. | # The server to use for phone number threepid validation. When empty, validation cannot happen, as Synapse doesn't support it. | ||||||
| # To make it work, this should be pointed to an identity server. | # To make it work, this should be pointed to an identity server. | ||||||
| matrix_synapse_account_threepid_delegates_msisdn: '' | matrix_synapse_account_threepid_delegates_msisdn: '' | ||||||
|   | |||||||
| @@ -61,6 +61,7 @@ | |||||||
|     - {'old': 'matrix_synapse_use_presence', 'new': 'matrix_synapse_presence_enabled'} |     - {'old': 'matrix_synapse_use_presence', 'new': 'matrix_synapse_presence_enabled'} | ||||||
|     - {'old': 'matrix_synapse_version_arm64', 'new': '<superseded by matrix_synapse_version - see https://github.com/matrix-org/synapse/pull/11810>'} |     - {'old': 'matrix_synapse_version_arm64', 'new': '<superseded by matrix_synapse_version - see https://github.com/matrix-org/synapse/pull/11810>'} | ||||||
|     - {'old': 'matrix_synapse_enable_group_creation', 'new': '<removed in Synapse v1.61.0 - use the new Spaces feature instead>'} |     - {'old': 'matrix_synapse_enable_group_creation', 'new': '<removed in Synapse v1.61.0 - use the new Spaces feature instead>'} | ||||||
|  |     - {'old': 'matrix_synapse_account_threepid_delegates_email', 'new': '<removed in Synapse v1.66.0 - make sure to configure email settings for Synapse - see https://matrix-org.github.io/synapse/v1.66/upgrade.html#delegation-of-email-validation-no-longer-supported>'} | ||||||
|  |  | ||||||
| - name: (Deprecation) Catch and report renamed settings in matrix_synapse_configuration_extension_yaml | - name: (Deprecation) Catch and report renamed settings in matrix_synapse_configuration_extension_yaml | ||||||
|   ansible.builtin.fail: |   ansible.builtin.fail: | ||||||
|   | |||||||
| @@ -1419,14 +1419,10 @@ allow_guest_access: {{ matrix_synapse_allow_guest_access|to_json }} | |||||||
| # | # | ||||||
| #default_identity_server: https://matrix.org | #default_identity_server: https://matrix.org | ||||||
|  |  | ||||||
| # Handle threepid (email/phone etc) registration and password resets through a set of | # Handle threepid (phone etc) registration and password resets through a set of | ||||||
| # *trusted* identity servers. Note that this allows the configured identity server to | # *trusted* identity servers. Note that this allows the configured identity server to | ||||||
| # reset passwords for accounts! | # reset passwords for accounts! | ||||||
| # | # | ||||||
| # Be aware that if `email` is not set, and SMTP options have not been |  | ||||||
| # configured in the email config block, registration and user password resets via |  | ||||||
| # email will be globally disabled. |  | ||||||
| # |  | ||||||
| # Additionally, if `msisdn` is not set, registration and password resets via msisdn | # Additionally, if `msisdn` is not set, registration and password resets via msisdn | ||||||
| # will be disabled regardless, and users will not be able to associate an msisdn | # will be disabled regardless, and users will not be able to associate an msisdn | ||||||
| # identifier to their account. This is due to Synapse currently not supporting | # identifier to their account. This is due to Synapse currently not supporting | ||||||
| @@ -1441,7 +1437,6 @@ allow_guest_access: {{ matrix_synapse_allow_guest_access|to_json }} | |||||||
| # https://matrix.org/docs/spec/identity_service/latest | # https://matrix.org/docs/spec/identity_service/latest | ||||||
| # | # | ||||||
| account_threepid_delegates: | account_threepid_delegates: | ||||||
|     email: {{ matrix_synapse_account_threepid_delegates_email|to_json }} |  | ||||||
|     msisdn: {{ matrix_synapse_account_threepid_delegates_msisdn|to_json }} |     msisdn: {{ matrix_synapse_account_threepid_delegates_msisdn|to_json }} | ||||||
|  |  | ||||||
| # Whether users are allowed to change their displayname after it has | # Whether users are allowed to change their displayname after it has | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user