-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Description
First of all, thank you for your great work on turtlemine.
What steps will reproduce the problem?
1. Use Redmine Instance v2.4.1 (redmine version shouldn't matter, but i used
this version.
2. Use apache2 with SSLv3 enabled.
3. While configuring the "Issue Tracker integration" in the TortoiseGit
Settings Dialog the testing of url of the issues list fails.
Further investigation (wireshark / msdn documentation) showed that the
ServicePointManager used the SecurityProtocolType.Tls which wasn't compatible
with the server's SSLv3 setting.
By putting "ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3;"
in the ConnectionHelper.cs on line 86 my problem is solved.
I think it's a good idea to let the user choose which encryption he would use.
When i find some time i will add this to the latest version and post the diffs
here.
Used turtlemine version 1.2.0.1 on an w7 x86 and w7 x64.
Original issue reported on code.google.com by [email protected] on 13 Mar 2014 at 5:27