From 66e67f2189b183d76d3f0de63a0ad8d7eba10746 Mon Sep 17 00:00:00 2001 From: Margash Date: Mon, 27 Nov 2017 18:34:08 +0100 Subject: [PATCH] Added fix for TLS issues because of missing libcurl3 --- Newznab.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/Newznab.md b/Newznab.md index 0dd66cb..9df6c2f 100644 --- a/Newznab.md +++ b/Newznab.md @@ -8,4 +8,15 @@ This is caused by the indexer using a SSL protocol not supported by .net 4.5, to ### Error getting response stream (Write: The authentication or decryption has failed.): SendFailure ### -This is caused by the indexer using a new certificate authority that is not trusted by mono 2.10. The solution is to upgrade to mono 3.x, on Ubuntu this can be done via this method: http://stackoverflow.com/a/13384233/882971 We recommend upgrading to mono 3.x to fix a number of bugs and add support for .net 4.5 features. \ No newline at end of file +This is caused by the indexer using a new certificate authority that is not trusted by mono 2.10. The solution is to upgrade to mono 3.x, on Ubuntu this can be done via this method: http://stackoverflow.com/a/13384233/882971 We recommend upgrading to mono 3.x to fix a number of bugs and add support for .net 4.5 features. + +### The request timed out + +Sonarr seems to have issues with certain TLS versions or configurations. If you get the following error messages in your log: +> System.Net.WebException: The request timed out: 'https://example.org/api?t=caps&apikey=(removed) ---> System.Net.WebException: The request timed out + +And you can see the following in the trace logfile: +> |Trace|FallbackHttpDispatcher|Curl not available, using default WebClient. + +You might fix it by installing libcurl3. On Ubuntu/Debian use +> apt install libcurl3 \ No newline at end of file