Connection not possible with mail-address as username
Brought to you by:
wdonne
When I try to connect to a server that uses a mail-address as user name I'm unable to connect since the URL includes 2 @.
java -jar webdav_sync1_1_4.jar -c sync.conf
Wrong url value "https://user@domain.com:password@server".
There should be a way to specify the username outside the URL or to escape the @ character.
You have to URI-encode special characters. The @-sign for example should be replaced with the code "%40", 40 being the hexadecimal ASCII-code of @.
Thanks, that works.