tmatilai / vagrant-proxyconf

Vagrant plugin that configures the virtual machine to use proxies
MIT License
531 stars 74 forks source link

http proxy password contains @ #66

Closed sumeetn closed 10 years ago

sumeetn commented 10 years ago

If the password string contains @ in the http://[[user][:pass]@]host[:port]/ the connections fails.

tmatilai commented 10 years ago

I'm not sure if this is even fixable in a generic way. I guess it depends on the program how they handle the URIs containing authentication information.

What program is failing for you? Does it work if you escape the at char? For example:

config.proxy.http = "http://user:p\\@ss@proxy:1234"
sumeetn commented 10 years ago

didn't try by escaping character, i just changed the password. Anyway will check and let you know