Issue with SSE and "Access to Subscription 'XYZ' is forbidden"

This is the Exception being thrown:

Which occurs when a different User Address tries to update its subscription which is different to the original request which created the subscription:

You can use a Request Filter to compare against the current and original User Address.

This validation check can also be disabled with:

Plugins.Add(new ServerEventsFeature {
    ValidateUserAddress = false,
});