I have created an rclone config which connects to smb on a server. This works.
I would like to encrypt a single folder within a single share on that server. i.e encrypting the contents of myfoldername on
smb://mysamberserver.mydomain.com/mysharename/myfoldername
My question is this. It looks like the only way to encrypt is per config and the config does not include the share name. Does this mean if I have a config which does:
rclone mount rsyncconfigname:srv/data/encrypted /home/simon/encrypted
and I apply encryption to it, if at some point in the future I accidentally do:
rclone mount rsyncconfigname:srv/ /home/simon/encrypted
That all my files could be at risk of being encrypted ?
I'm not sure I'm making sense. I suppose I want to ensure categorically that only files in that specific folder will be encrypted. My preferred option would be for rsync to store the sharename and foldername in the rclone.conf but that would a feature request and probably a big ask.
I'm sorry If my question is nonsensical, I'm new to rclone and just trying to figure out the best way to do transparent encryption of a folder safely.