Dovecot handshake failure, on Postfix success

22

You have actually disabled SSLv2, SSLv3, and TLSv1.0 in dovecot.

ssl_protocols = !SSLv2 !SSLv3 !TLSv1
ssl_cipher_list = HIGH:!SSLv2:!SSLv3:!TLSv1.0:!aNULL:!MD5

This is a problem because some clients don't yet speak TLSv1.1/TLSv1.2, your only remaining choices.

Try not disabling TLSv1.0 and see if you get any farther.

Share:
22

Related videos on Youtube

LeDoc
Author by

LeDoc

Updated on September 18, 2022

Comments

  • LeDoc
    LeDoc over 1 year

    I have two sortable lists linked together using jquery-ui. One is hidden however and I'd like it to be shown when dragging an element from List 1 over the title List 2. Then without releasing the mouse, I'd like the elements in List 2 to continue to sort.

    The reveal does work, but the elements do not sort once the list is shown. How do I go about implementing this? Here is a link to the js-fiddle

    To see what I mean, try dragging Card 1 to the title List 2, and then to Card 4 without releasing the mouse in the fiddle

    • Kondybas
      Kondybas over 10 years
      You have denied all SSL protocols and ciphers within dovecot. Comment out lines ssl_protocols = !SSLv2 !SSLv3 !TLSv1 and ssl_cipher_list = HIGH:!SSLv2:!SSLv3:!TLSv1.0:!aNULL:!MD5
    • John WH Smith
      John WH Smith over 10 years
      I actually removed '!'s. I still want a restriction, yet I read docs too quickly ;)
  • John WH Smith
    John WH Smith over 10 years
    And this, is how I get ridiculous reading docs too quickly. Thanks a lot, openssl s_client is much nicer now. Yet for some unknown reason, Thunderbird still fails authenticating...