@Tom I have an issue with Dropbox. The setup is simple:
[dropbox_base]
type = dropbox
token = <token>
[dropbox_store]
type = alias
remote = dropbox_base:Store
[dropbox_crypt]
type = crypt
directory_name_encryption = true
filename_encoding = base64
filename_encryption = standard
password = <password>
remote = dropbox_store:
suffix = none
cipher_version = 2
I am able to upload a file to dropbox_base
(including the Store folder directly), but it doesn't work in both dropbox_store
and dropbox_crypt
. I am getting this error (per screenshot):
Exception: upload failed: batcher is shutting down
I was able to manually upload the same file using rclone copy
to all three targets. When I copied the file to dropbox_crypt
with rclone
, the file appeared on S3Drive in dropbox_crypt
with an encrypted file name instead of the original name. I cleared everything out, used cipher_version = 1
, repeated the process, and nothing changed.
The file is just test.txt
with the contents test
. I am using the Windows client v1.14.10 (build: 10141000). What might be wrong here? (edited)