v1.50

Mail.ru Cloud

Mail.ru Cloud is a cloud storage provided by a Russian internet company Mail.Ru Group. The official desktop client is Disk-O:, available on Windows and Mac OS.

Features highlights

  • Paths may be as deep as required, e.g. remote:directory/subdirectory
  • 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
  • Maximum file size is limited to 2G for a free account, unlimited for paid accounts
  • 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

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

  1. rclone config

This will guide you through an interactive setup process:

  1. No remotes found, make a new one?
  2. n) New remote
  3. s) Set configuration password
  4. q) Quit config
  5. n/s/q> n
  6. name> remote
  7. Type of storage to configure.
  8. Type of storage to configure.
  9. Enter a string value. Press Enter for the default ("").
  10. Choose a number from below, or type in your own value
  11. [snip]
  12. XX / Mail.ru Cloud
  13. \ "mailru"
  14. [snip]
  15. Storage> mailru
  16. User name (usually email)
  17. Enter a string value. Press Enter for the default ("").
  18. user> username@mail.ru
  19. Password
  20. This must be an app password - rclone will not work with your normal
  21. password. See the Configuration section in the docs for how to make an
  22. app password.
  23. y) Yes type in my own password
  24. g) Generate random password
  25. y/g> y
  26. Enter the password:
  27. password:
  28. Confirm the password:
  29. password:
  30. Skip full upload if there is another file with same data hash.
  31. This feature is called "speedup" or "put by hash". It is especially efficient
  32. in case of generally available files like popular books, video or audio clips
  33. [snip]
  34. Enter a boolean value (true or false). Press Enter for the default ("true").
  35. Choose a number from below, or type in your own value
  36. 1 / Enable
  37. \ "true"
  38. 2 / Disable
  39. \ "false"
  40. speedup_enable> 1
  41. Edit advanced config? (y/n)
  42. y) Yes
  43. n) No
  44. y/n> n
  45. Remote config
  46. Configuration complete.
  47. Options:
  48. - type: mailru
  49. - user: username@mail.ru
  50. - pass: *** ENCRYPTED ***
  51. - speedup_enable: true
  52. Keep this "remote" remote?
  53. y) Yes this is OK
  54. e) Edit this remote
  55. d) Delete this remote
  56. 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

  1. rclone lsd remote:

Make a new directory

  1. rclone mkdir remote:directory

List the contents of a directory

  1. rclone ls remote:directory

Sync /home/local/directory to the remote path, deleting any excess files in the path.

  1. rclone sync --interactive /home/local/directory remote:directory

Modification times and hashes

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”.

File hashes are supported, with 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. Hashes of a larger file is computed as a SHA1 of the file data bytes concatenated with a decimal representation of the data length.

Emptying Trash

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

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

In addition to the default restricted characters set the following characters are also replaced:

CharacterValueReplacement
0x22
*0x2A
:0x3A
<0x3C
>0x3E
?0x3F
\0x5C
|0x7C

Invalid UTF-8 bytes will also be replaced, as they can’t be used in JSON strings.

Standard options

Here are the Standard options specific to mailru (Mail.ru Cloud).

--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

--mailru-user

User name (usually email).

Properties:

  • Config: user
  • Env Var: RCLONE_MAILRU_USER
  • Type: string
  • Required: true

--mailru-pass

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.

NB Input to this must be obscured - see rclone obscure.

Properties:

  • Config: pass
  • Env Var: RCLONE_MAILRU_PASS
  • Type: string
  • Required: true

--mailru-speedup-enable

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, because files are searched by hash in all accounts of all mailru users. It is meaningless and ineffective if source file is unique or encrypted. 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.

Properties:

  • Config: speedup_enable
  • Env Var: RCLONE_MAILRU_SPEEDUP_ENABLE
  • Type: bool
  • Default: true
  • Examples:
    • “true”
      • Enable
    • “false”
      • Disable

Advanced options

Here are the Advanced options specific to mailru (Mail.ru Cloud).

--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

--mailru-client-credentials

Use client credentials OAuth flow.

This will use the OAUTH2 client Credentials Flow as described in RFC 6749.

Properties:

  • Config: client_credentials
  • Env Var: RCLONE_MAILRU_CLIENT_CREDENTIALS
  • Type: bool
  • Default: false

--mailru-speedup-file-patterns

Comma separated list of file name patterns eligible for speedup (put by hash).

Patterns are case insensitive and can contain ‘*‘ or ‘?’ meta characters.

Properties:

  • Config: speedup_file_patterns
  • Env Var: RCLONE_MAILRU_SPEEDUP_FILE_PATTERNS
  • Type: string
  • Default: “.mkv,.avi,.mp4,.mp3,.zip,.gz,.rar,.pdf”
  • Examples:
    • “”
      • Empty list completely disables speedup (put by hash).
    • “*“
      • All files will be attempted for speedup.
    • .mkv,.avi,.mp4,.mp3”
      • Only common audio/video files will be tried for put by hash.
    • .zip,.gz,.rar,.pdf”
      • Only common archives or PDF books will be tried for speedup.

--mailru-speedup-max-disk

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.

Properties:

  • Config: speedup_max_disk
  • Env Var: RCLONE_MAILRU_SPEEDUP_MAX_DISK
  • Type: SizeSuffix
  • Default: 3Gi
  • 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.

Properties:

  • Config: speedup_max_memory
  • Env Var: RCLONE_MAILRU_SPEEDUP_MAX_MEMORY
  • Type: SizeSuffix
  • Default: 32Mi
  • 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

What should copy do if file checksum is mismatched or invalid.

Properties:

  • 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.

Defaults to “rclone/VERSION” or “—user-agent” provided on command line.

Properties:

  • Config: user_agent
  • Env Var: RCLONE_MAILRU_USER_AGENT
  • Type: string
  • Required: false

--mailru-quirks

Comma separated list of internal maintenance flags.

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. Supported quirks: atomicmkdir binlist unknowndirs

Properties:

  • Config: quirks
  • Env Var: RCLONE_MAILRU_QUIRKS
  • Type: string
  • Required: false

--mailru-encoding

The encoding for the backend.

See the encoding section in the overview for more info.

Properties:

  • Config: encoding
  • Env Var: RCLONE_MAILRU_ENCODING
  • Type: Encoding
  • Default: Slash,LtGt,DoubleQuote,Colon,Question,Asterisk,Pipe,BackSlash,Del,Ctl,InvalidUtf8,Dot

--mailru-description

Description of the remote.

Properties:

  • Config: description
  • Env Var: RCLONE_MAILRU_DESCRIPTION
  • Type: string
  • Required: false

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”.