According to [this post]{https://forum.rclone.org/t/server-side-copy-sync-between-to-s3-buckets-different-providers/30597/2i} server side copy works only if source and destination are on remotes with the same names. In my setup however I let the user specify different remotes for the backend storage and for the backup, for maximum flexibility, but I'd like rclone to be able to do server side copy if the two different remotes actually have the same endpoint, e.g.:
[backup]
type = s3
endpoint = https:/my.minio.instance/
access_key_id = XXXXX
secret_access_key = YYYYYYY
[storage]
type = s3
endpoint = https:/my.minio.instance/
access_key_id = XXXXX
secret_access_key = YYYYYYY
In this case copying the content of the storage to the backup could be done via server side copy, even if the remote names are different. I'm currently using rclone v1.56.2, is this feature maybe already available in a newer version? If not, is there any chance it will be implemented in future?
Thanks.