I have managed to set up a Kopia Server and a Kopia client.
By default, a user can only see his own snapshots. On the server, I have given a particular user the right to see all snapshots:
$ kopia server acl list
id:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx user:test1@example access:READ target:type=snapshot
On the client, with that user test1@example , I can now see all snapshots:
$ kopia snapshot list --all
...
2026-05-25 23:30:45 CEST xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 6.2 KB drwxrwxr-x files:5 dirs:4 (latest-6,daily-4)
...
However, I cannot list the files inside that snapshot:
$ kopia list xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
unable to open object: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx: unexpected content error: access denied
The exact same command works on the server without any problems.
What am I doing wrong?
I am using Kopia version 0.23.0 in a Docker container, both on the client and on the server.
Thanks in advance,
rdiez