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
    Feb 03, 2025 @ 09:28
    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 4054 posts 12927 karma points MVP 2x
    Feb 03, 2025 @ 09:39
    Richard Soeteman
    0

    Hi,

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

    Best,

    Richard

  • Henrik Bayer Nielsen 10 posts 92 karma points
    Feb 03, 2025 @ 09:43
    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");
    
  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies