Skip to content

benya3310/WebDavMailRuCloud

 
 

Repository files navigation

WebDAV emulator for Mail.ru Cloud

  • You don't need this program if you have paid account
  • UA users! Mail.Ru заблокирован в вашей стране, используйте, например, эти инструкции

Requirements

WebDAVCloudMailRu-*-dotNet45.zip / WebDAVCloudMailRu-*-dotNetCore20.zip respectively

Usage

	-p, --port        (Default: 801) WebDAV server port
	-h, --host	  (Default: "http://127.0.0.1") WebDAV server host with protocol (http://* for http://0.0.0.0)
	--maxthreads      (Default: 5) Maximum concurrent connections to cloud.mail.ru
	--user-agent      "browser" user-agent
	--help            Display this help screen.
	--version         Display version information.

Commands
Commands executed by making directory with special name.
Parameters with spaces must be screened by quotes.

  • >>join SHARED_FOLDER_LINK Clone shared cloud.mail.ru file/folder to your account
  • >>link SHARED_FOLDER_LINK [linkname] Link shared folder without wasting your space (or manually edit file /item.links.wdmrc)
    • >>link check Remove all dead links (may take time if there's a lot of links)
  • >>move /full/path/from /full/path/to Fast move (if your client moves inner items recursively)
  • >>copy /full/path/from /full/path/to Fast copy (if your client copies inner items recursively)
  • >>del Fast delete (if your client makes recursive deletions of inner items)
    • >>del current folder
    • >>del abc/cde current folder/abc/cde
    • >>del /abc/cde root/abc/cde

Settings in wdmrc.exe.config

  • Logging
    <config><log4net>
    It's standart Apache log4net configurations, take a look for examples

  • 2 Factor Authentification
    <config><TwoFactorAuthHandlerName>
    At this time you can use

    • AuthCodeWindow - asks for authcode in GUI window (only for .NET Framework releases)
    • AuthCodeConsole - asks for authcode in application console

    Be careful, this methods does not usable when application started as a service/daemon.
    You can make your own 2FA handlers inherited from ITwoFaHandler and put it in separate dll which name starts with MailRuCloudApi.TwoFA

Connect with (almost any) file manager that supports WebDAV using Basic authentification with no encryption and your cloud.mail.ru email and password (it's safe when you opens server on 127.0.0.1)

Automatically split/join when uploading/downloading files larger than cloud allows.

Russian FAQ
Discussion on geektimes.ru

Windows

Using from explorer requires enabled Basic Auth for WebDAV * Press Win+R, type `regedit`, click OK * HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters * Right click on the BasicAuthLevel and click Modify * In the Value data box, type 2, and then click OK. * Reset computer (or run `cmd` with admin rights and then `net stop webclient`, `net start webclient`)
Use as Windows disk ``` net use ^disk^: http://^address^:^port^ ^your_mailru_password^ /USER:^your_mailru_email^ ```
Faster WebDAV Performance in Windows 7 Windows 7 client might perform very bad when connecting to any WebDAV server. This is caused, because it tries to auto-detect any proxy server before any request. Refer to KB2445570 for more information.
  • In Internet Explorer, open the Tools menu, then click Internet Options.
  • Select the Connections tab.
  • Click the LAN Settings button.
  • Uncheck the “Automatically detect settings” box.
  • Click OK until you’re out of dialog.
By default, Windows limits file size to 5000000 bytes, you can increase it up to 4Gb * Press Win+R, type `regedit`, click OK * HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters * Right click on the FileSizeLimitInBytes and click Modify * Click on Decimal * In the Value data box, type 4294967295, and then click OK. * Reset computer (or run `cmd` with admin rights and then `net stop webclient`, `net start webclient`)
Wrong disk size when mapped as Windows drive [Microsoft says - "It's not a bug, it's by design"](https://support.microsoft.com/en-us/kb/2386902)

Linux

(tested under Elementary OS and Lubuntu)

See also

Mount with davfs2 * `mkdir /mnt/` * edit `/etc/davfs2/davfs2.conf` set `use_locks 0` * `sudo mount --rw -t davfs http://: /mnt// -o uid=`
CERTIFICATE_VERIFY_FAILED exception [Issue 56](yar229#56) [default installation of Mono doesn’t trust anyone](http://www.mono-project.com/docs/faq/security/)

In short:

# cat /etc/ssl/certs/* >ca-bundle.crt
# cert-sync ca-bundle.crt
# rm ca-bundle.crt

Mac OS X

Use any client supports webdav.

Remarks

  • Total Commander:
    • requires to update WebDAV plugin to v.2.9
    • turn on (connection properties) -> Send\Receive accents in URLs as UTF-8 Unicode
  • WebDrive:
    • disable (disk properties) -> HTTP Settings -> Do chunked upload for large files.
  • avoid using Unicode non-printing characters such as right-to-left mark in file/folder names

Big thanks

See also

About

WebDAV cloud.mail.ru | WebDAV Облако Mail.Ru Сетевой Диск

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%