Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Henrik Bayer Nielsen 10 posts 92 karma points
    19 hours ago
    Henrik Bayer Nielsen
    0

    Bug: 13.5.0 breaks SSL connections to external hosts

    After upgrading from 13.4.0 to version 13.5.0 connections to external hosts fail during SSL handshake.

    We cannot connect via SMTP or WebClient. We get the following error:

    System.ComponentModel.Win32Exception (0x80090331): The client and server cannot communicate, because they do not possess a common algorithm.
    

    Rolling back to version 13.4.0 fixes the error.

  • Richard Soeteman 4052 posts 12925 karma points MVP 2x
    19 hours ago
    Richard Soeteman
    0

    Hi,

    Is this email? I use the internal Umbraco email mechanism,

    Best,

    Richard

  • Henrik Bayer Nielsen 10 posts 92 karma points
    19 hours ago
    Henrik Bayer Nielsen
    0

    It's not directly related to emails, it's a generic error when connecting to any external host via SSL/HTTPS.

    I.e. the following fails:

    using (var client = new SmtpClient
       {
           EnableSsl = true,
           Port = AppContainer.Configuration["Umbraco:CMS:Global:Smtp:Port"].ToInt(),
           Host = AppContainer.Configuration["Umbraco:CMS:Global:Smtp:Host"],
           Credentials = new NetworkCredential(AppContainer.Configuration["umbraco:CMS:Global:Smtp:Username"],
               AppContainer.Configuration["umbraco:CMS:Global:Smtp:Password"])
       })
    

    But this also fails with same error:

    var response = new WebClient().DownloadString("https://url-to-som-external-site");
    
Please Sign in or register to post replies

Write your reply to:

Draft