rclone/docs/content/mailru.md

427 lines
12 KiB
Markdown
Raw Permalink Normal View History

2019-09-10 06:56:16 +10:00
---
title: "Mailru"
description: "Mail.ru Cloud"
versionIntroduced: "v1.50"
2019-09-10 06:56:16 +10:00
---
2021-07-21 04:45:41 +10:00
# {{< icon "fas fa-at" >}} Mail.ru Cloud
2019-09-10 06:56:16 +10:00
[Mail.ru Cloud](https://cloud.mail.ru/) is a cloud storage provided by a Russian internet company [Mail.Ru Group](https://mail.ru). The official desktop client is [Disk-O:](https://disk-o.cloud/en), available on Windows and Mac OS.
2019-09-10 06:56:16 +10:00
## Features highlights
2019-09-10 06:56:16 +10:00
- Paths may be as deep as required, e.g. `remote:directory/subdirectory`
2019-09-10 06:56:16 +10:00
- Files have a `last modified time` property, directories don't
- Deleted files are by default moved to the trash
- Files and directories can be shared via public links
- Partial uploads or streaming are not supported, file size must be known before upload
2020-05-19 21:02:44 +10:00
- Maximum file size is limited to 2G for a free account, unlimited for paid accounts
2019-09-10 06:56:16 +10:00
- Storage keeps hash for all files and performs transparent deduplication,
the hash algorithm is a modified SHA1
- If a particular file is already present in storage, one can quickly submit file hash
instead of long file upload (this optimization is supported by rclone)
## Configuration
2019-09-10 06:56:16 +10:00
Here is an example of making a mailru configuration.
First create a Mail.ru Cloud account and choose a tariff.
You will need to log in and create an app password for rclone. Rclone
**will not work** with your normal username and password - it will
give an error like `oauth2: server response missing access_token`.
- Click on your user icon in the top right
- Go to Security / "Пароль и безопасность"
- Click password for apps / "Пароли для внешних приложений"
- Add the password - give it a name - eg "rclone"
- Copy the password and use this password below - your normal login password won't work.
Now run
2019-09-10 06:56:16 +10:00
rclone config
This will guide you through an interactive setup process:
```
No remotes found, make a new one?
2019-09-10 06:56:16 +10:00
n) New remote
s) Set configuration password
q) Quit config
n/s/q> n
name> remote
Type of storage to configure.
Type of storage to configure.
Enter a string value. Press Enter for the default ("").
Choose a number from below, or type in your own value
[snip]
XX / Mail.ru Cloud
\ "mailru"
[snip]
Storage> mailru
User name (usually email)
Enter a string value. Press Enter for the default ("").
user> username@mail.ru
Password
This must be an app password - rclone will not work with your normal
password. See the Configuration section in the docs for how to make an
app password.
2019-09-10 06:56:16 +10:00
y) Yes type in my own password
g) Generate random password
y/g> y
Enter the password:
password:
Confirm the password:
password:
Skip full upload if there is another file with same data hash.
This feature is called "speedup" or "put by hash". It is especially efficient
in case of generally available files like popular books, video or audio clips
[snip]
Enter a boolean value (true or false). Press Enter for the default ("true").
Choose a number from below, or type in your own value
1 / Enable
\ "true"
2 / Disable
\ "false"
speedup_enable> 1
Edit advanced config? (y/n)
y) Yes
n) No
y/n> n
Remote config
--------------------
[remote]
type = mailru
user = username@mail.ru
pass = *** ENCRYPTED ***
speedup_enable = true
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d> y
```
Configuration of this backend does not require a local web browser.
You can use the configured backend as shown below:
See top level directories
rclone lsd remote:
Make a new directory
rclone mkdir remote:directory
List the contents of a directory
rclone ls remote:directory
Sync `/home/local/directory` to the remote path, deleting any
excess files in the path.
rclone sync --interactive /home/local/directory remote:directory
2019-09-10 06:56:16 +10:00
### Modified time
2019-09-10 06:56:16 +10:00
Files support a modification time attribute with up to 1 second precision.
Directories do not have a modification time, which is shown as "Jan 1 1970".
### Hash checksums
2019-09-10 06:56:16 +10:00
Hash sums use a custom Mail.ru algorithm based on SHA1.
If file size is less than or equal to the SHA1 block size (20 bytes),
its hash is simply its data right-padded with zero bytes.
Hash sum of a larger file is computed as a SHA1 sum of the file data
bytes concatenated with a decimal representation of the data length.
### Emptying Trash
2019-09-10 06:56:16 +10:00
Removing a file or directory actually moves it to the trash, which is not
visible to rclone but can be seen in a web browser. The trashed file
still occupies part of total quota. If you wish to empty your trash
and free some quota, you can use the `rclone cleanup remote:` command,
which will permanently delete all your trashed files.
This command does not take any path arguments.
### Quota information
2019-09-10 06:56:16 +10:00
To view your current quota you can use the `rclone about remote:`
command which will display your usage limit (quota) and the current usage.
### Restricted filename characters
2019-10-03 04:36:25 +10:00
In addition to the [default restricted characters set](/overview/#restricted-characters)
the following characters are also replaced:
| Character | Value | Replacement |
| --------- |:-----:|:-----------:|
| " | 0x22 | |
| * | 0x2A | |
| : | 0x3A | |
| < | 0x3C | |
| > | 0x3E | |
| ? | 0x3F | |
| \ | 0x5C | |
| \| | 0x7C | |
Invalid UTF-8 bytes will also be [replaced](/overview/#invalid-utf8),
as they can't be used in JSON strings.
{{< rem autogenerated options start" - DO NOT EDIT - instead edit fs.RegInfo in backend/mailru/mailru.go then run make backenddocs" >}}
2021-11-02 02:42:05 +11:00
### Standard options
2019-09-10 06:56:16 +10:00
2022-07-10 03:08:20 +10:00
Here are the Standard options specific to mailru (Mail.ru Cloud).
2019-09-10 06:56:16 +10:00
2023-09-12 00:59:44 +10:00
#### --mailru-client-id
OAuth Client Id.
Leave blank normally.
Properties:
- Config: client_id
- Env Var: RCLONE_MAILRU_CLIENT_ID
- Type: string
- Required: false
#### --mailru-client-secret
OAuth Client Secret.
Leave blank normally.
Properties:
- Config: client_secret
- Env Var: RCLONE_MAILRU_CLIENT_SECRET
- Type: string
- Required: false
2019-09-10 06:56:16 +10:00
#### --mailru-user
2021-11-02 02:42:05 +11:00
User name (usually email).
2019-09-10 06:56:16 +10:00
2022-03-18 23:29:54 +11:00
Properties:
2019-09-10 06:56:16 +10:00
- Config: user
- Env Var: RCLONE_MAILRU_USER
- Type: string
2022-03-18 23:29:54 +11:00
- Required: true
2019-09-10 06:56:16 +10:00
#### --mailru-pass
2021-11-02 02:42:05 +11:00
Password.
2019-09-10 06:56:16 +10:00
2022-12-21 04:16:14 +11:00
This must be an app password - rclone will not work with your normal
password. See the Configuration section in the docs for how to make an
app password.
2020-09-03 01:59:04 +10:00
**NB** Input to this must be obscured - see [rclone obscure](/commands/rclone_obscure/).
2022-03-18 23:29:54 +11:00
Properties:
2019-09-10 06:56:16 +10:00
- Config: pass
- Env Var: RCLONE_MAILRU_PASS
- Type: string
2022-03-18 23:29:54 +11:00
- Required: true
2019-09-10 06:56:16 +10:00
#### --mailru-speedup-enable
Skip full upload if there is another file with same data hash.
2021-11-02 02:42:05 +11:00
2019-09-10 06:56:16 +10:00
This feature is called "speedup" or "put by hash". It is especially efficient
in case of generally available files like popular books, video or audio clips,
because files are searched by hash in all accounts of all mailru users.
2021-02-03 00:42:35 +11:00
It is meaningless and ineffective if source file is unique or encrypted.
2019-09-10 06:56:16 +10:00
Please note that rclone may need local memory and disk space to calculate
content hash in advance and decide whether full upload is required.
Also, if rclone does not know file size in advance (e.g. in case of
streaming or partial uploads), it will not even try this optimization.
2022-03-18 23:29:54 +11:00
Properties:
2019-09-10 06:56:16 +10:00
- Config: speedup_enable
- Env Var: RCLONE_MAILRU_SPEEDUP_ENABLE
- Type: bool
- Default: true
- Examples:
- "true"
- Enable
- "false"
- Disable
2021-11-02 02:42:05 +11:00
### Advanced options
2019-09-10 06:56:16 +10:00
2022-07-10 03:08:20 +10:00
Here are the Advanced options specific to mailru (Mail.ru Cloud).
2019-09-10 06:56:16 +10:00
2023-09-12 00:59:44 +10:00
#### --mailru-token
OAuth Access Token as a JSON blob.
Properties:
- Config: token
- Env Var: RCLONE_MAILRU_TOKEN
- Type: string
- Required: false
#### --mailru-auth-url
Auth server URL.
Leave blank to use the provider defaults.
Properties:
- Config: auth_url
- Env Var: RCLONE_MAILRU_AUTH_URL
- Type: string
- Required: false
#### --mailru-token-url
Token server url.
Leave blank to use the provider defaults.
Properties:
- Config: token_url
- Env Var: RCLONE_MAILRU_TOKEN_URL
- Type: string
- Required: false
2019-09-10 06:56:16 +10:00
#### --mailru-speedup-file-patterns
Comma separated list of file name patterns eligible for speedup (put by hash).
2021-11-02 02:42:05 +11:00
2019-10-26 21:04:54 +11:00
Patterns are case insensitive and can contain '*' or '?' meta characters.
2019-09-10 06:56:16 +10:00
2022-03-18 23:29:54 +11:00
Properties:
2019-09-10 06:56:16 +10:00
- Config: speedup_file_patterns
- Env Var: RCLONE_MAILRU_SPEEDUP_FILE_PATTERNS
- Type: string
- Default: "*.mkv,*.avi,*.mp4,*.mp3,*.zip,*.gz,*.rar,*.pdf"
- Examples:
2019-10-26 21:04:54 +11:00
- ""
2019-09-10 06:56:16 +10:00
- Empty list completely disables speedup (put by hash).
2019-10-26 21:04:54 +11:00
- "*"
2019-09-10 06:56:16 +10:00
- All files will be attempted for speedup.
2019-10-26 21:04:54 +11:00
- "*.mkv,*.avi,*.mp4,*.mp3"
2019-09-10 06:56:16 +10:00
- Only common audio/video files will be tried for put by hash.
2019-10-26 21:04:54 +11:00
- "*.zip,*.gz,*.rar,*.pdf"
2019-09-10 06:56:16 +10:00
- Only common archives or PDF books will be tried for speedup.
#### --mailru-speedup-max-disk
2021-11-02 02:42:05 +11:00
This option allows you to disable speedup (put by hash) for large files.
Reason is that preliminary hashing can exhaust your RAM or disk space.
2019-09-10 06:56:16 +10:00
2022-03-18 23:29:54 +11:00
Properties:
2019-09-10 06:56:16 +10:00
- Config: speedup_max_disk
- Env Var: RCLONE_MAILRU_SPEEDUP_MAX_DISK
- Type: SizeSuffix
2021-07-21 04:45:41 +10:00
- Default: 3Gi
2019-09-10 06:56:16 +10:00
- Examples:
- "0"
- Completely disable speedup (put by hash).
- "1G"
- Files larger than 1Gb will be uploaded directly.
- "3G"
- Choose this option if you have less than 3Gb free on local disk.
#### --mailru-speedup-max-memory
Files larger than the size given below will always be hashed on disk.
2022-03-18 23:29:54 +11:00
Properties:
2019-09-10 06:56:16 +10:00
- Config: speedup_max_memory
- Env Var: RCLONE_MAILRU_SPEEDUP_MAX_MEMORY
- Type: SizeSuffix
2021-07-21 04:45:41 +10:00
- Default: 32Mi
2019-09-10 06:56:16 +10:00
- Examples:
- "0"
- Preliminary hashing will always be done in a temporary disk location.
- "32M"
- Do not dedicate more than 32Mb RAM for preliminary hashing.
- "256M"
- You have at most 256Mb RAM free for hash calculations.
#### --mailru-check-hash
2021-11-02 02:42:05 +11:00
What should copy do if file checksum is mismatched or invalid.
2019-09-10 06:56:16 +10:00
2022-03-18 23:29:54 +11:00
Properties:
2019-09-10 06:56:16 +10:00
- Config: check_hash
- Env Var: RCLONE_MAILRU_CHECK_HASH
- Type: bool
- Default: true
- Examples:
- "true"
- Fail with error.
- "false"
- Ignore and continue.
#### --mailru-user-agent
HTTP user agent used internally by client.
2021-11-02 02:42:05 +11:00
2019-09-10 06:56:16 +10:00
Defaults to "rclone/VERSION" or "--user-agent" provided on command line.
2022-03-18 23:29:54 +11:00
Properties:
2019-09-10 06:56:16 +10:00
- Config: user_agent
- Env Var: RCLONE_MAILRU_USER_AGENT
- Type: string
2022-03-18 23:29:54 +11:00
- Required: false
2019-09-10 06:56:16 +10:00
#### --mailru-quirks
2019-10-26 21:04:54 +11:00
Comma separated list of internal maintenance flags.
2021-11-02 02:42:05 +11:00
2019-10-26 21:04:54 +11:00
This option must not be used by an ordinary user. It is intended only to
facilitate remote troubleshooting of backend issues. Strict meaning of
flags is not documented and not guaranteed to persist between releases.
Quirks will be removed when the backend grows stable.
2021-02-03 00:42:35 +11:00
Supported quirks: atomicmkdir binlist unknowndirs
2019-09-10 06:56:16 +10:00
2022-03-18 23:29:54 +11:00
Properties:
2019-09-10 06:56:16 +10:00
- Config: quirks
- Env Var: RCLONE_MAILRU_QUIRKS
- Type: string
2022-03-18 23:29:54 +11:00
- Required: false
2019-09-10 06:56:16 +10:00
2020-02-01 21:31:42 +11:00
#### --mailru-encoding
2022-03-18 23:29:54 +11:00
The encoding for the backend.
2020-02-01 21:31:42 +11:00
2021-11-02 02:42:05 +11:00
See the [encoding section in the overview](/overview/#encoding) for more info.
2020-02-01 21:31:42 +11:00
2022-03-18 23:29:54 +11:00
Properties:
2020-02-01 21:31:42 +11:00
- Config: encoding
- Env Var: RCLONE_MAILRU_ENCODING
- Type: MultiEncoder
- Default: Slash,LtGt,DoubleQuote,Colon,Question,Asterisk,Pipe,BackSlash,Del,Ctl,InvalidUtf8,Dot
{{< rem autogenerated options stop >}}
## Limitations
File size limits depend on your account. A single file size is limited by 2G
for a free account and unlimited for paid tariffs. Please refer to the Mail.ru
site for the total uploaded size limits.
Note that Mailru is case insensitive so you can't have a file called
"Hello.doc" and one called "hello.doc".