couldn't decrypt password: base64 decode failed when revealing password - is it obscured?: illegal base64 data at input byte 5
when I add a WebDAV account.
Remote server is Opencloud
App version is 1.14.10
Here is my .ini
[webdav_ci07]
pass = slang jump poison quirk placate roulette
type = webdav
url = https://cloud.example.com/remote.php/dav/spaces/771cbc96-19f4-4f73-96b0-263e669cc718$b9d48a10-97d5-4825-89ca-093d4e5ae87a
user = myuser
vendor = other
.ini
config expects password to be obscured, so you can't use plaintext password like that:
pass = slang jump poison quirk placate roulette
You can obscure password using rclone obscure
command, in Bash that would be:
echo "slang jump poison quirk placate roulette" | rclone obscure -
which would spit out something similar to this: eVkxJ-jgmDJzR4hLVgNsNp_Y9WGL0cGdh0CS4YE_ZIcE5uLy1BPzHmjBgM4f_mDMKpGRqVp-O6Y
https://docs.s3drive.app/advanced/#useful-commands
Please let me know if that helped to resolve your issue. Thanks!