Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space WBRIDGE and version 21.1

...

  • Verification of secure connections
    To verify secure connections (SSL/TLS/HTTPS) to mail servers, the underlying JVM must know the certificate chain. You can accomplish this by importing them there, or provide an additional If you get errors indicating that the SSL handshake fails due to certificate errors, most likely the JVM can not verify the certificate sent by the mail host.
    You can fix this by either
    • importing the certificates (or all missing certificates of that certificate chain) into the JVM's keystore so they can be found automatically by the JVM.
    • importing them into a separate Java Key Store (JKS)
    to the library
    • . Only in this case you need to load this separate keystore by means of loadCertificateStore().
  • Verification of PGP signatures
    To verify PGP signatures, the public key of signers must be known. To do this, you can load a PGP public key ring into the library. Refer to you PGP installation about how to export public keys.

...