- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 838
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
HTTPS proxy support #1251
Comments
I will put this on the radar for 3.0. The problem with trying to add this to 2.x is that the proxy needs to return a Socket rather than a Stream. I will need to modify it to return a Stream for this to be possible. |
Thank a lot. Do you have any expected release date for 3.0? |
I do not have an expected release date, but I've already been working toward a 3.0 release in my |
I've created a GitHub Project board. Assuming you can at least view it, it should give you an idea of the progress I'm making toward v3.0. There's also a MimeKit 3.0 board. |
This is now implemented in the |
thank you. |
If you can, please test to make sure it works. |
Have you tested this at all? I'd like to make a 3.0 release but I need this tested first. |
I tested https proxy on nuget 3.0.0-preview1 and I am getting following exception.
|
@MaheshBGajera you will need to override the As the error suggests, the hostname in the SSL certificate does not match the hostname of the proxy that you are connecting to. |
MailKit v3.0.0 has been released with this feature. |
I am using this library for one of my project where in I fetch emails using IMAP client and I use proxy there.
I use HttpProxyClient and it seems to be working fine but now I realise that I need my proxy to work on HTTPS not HTTP for some security reasons(my proxy credentials are not encrypted over wire).
Is there any possibility that you can support HTTPS proxy here?
OR does Socks5ProxyClient supports TLS?
Thanks
The text was updated successfully, but these errors were encountered: