-
Notifications
You must be signed in to change notification settings - Fork 701
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTTP_PROXY and reserved characters #1579
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The value of HTTP_PROXY has as format
http://user:pass@host:80/
In the password special characters can occur, like @ and !.
According to wiki (http://en.wikipedia.org/wiki/Percent-escape)
these characters must be percent-encoded, like %40 and %21.
Cabal doesn't accept percent-encoded characters.
And cabal errs on these characters (if password is a@b, Cabal doesn't look to the right site, but probably to "b@host:80" (error message is not clear enough to be certain)
The text was updated successfully, but these errors were encountered: