Hi, guys. How can I check the TLS version of an e-mail account in pop/imap with SSL enabled?
I downloaded the XML in the account page and it shows some information about TLS 1.2 but I am not sure if this is true:
Email Account
pxCustom
TLSv1.2
Embed-EmailProtocol-Sender-SMTP
TLSv1.2
Can someone help me?
@GabrielM16837471 this does not seem to be pega-specific. Does a Google search not provide the info you need?
The XML you downloaded from the email account page in Pega does show the TLS version being used. The tag indicates the version of the TLS protocol being used for the connection. If it shows TLSv1.2, it means that TLS version 1.2 is being used for the connection. If you have SSL enabled and your email server supports TLS 1.2, then this should be accurate.
This is a GenAI-powered tool. All generated answers require validation against the provided references.
Email servers > Fields and controls { .section}
Hi @GabrielM16837471 - You can use OpenSSL to verify this. Run this command for e.g.
openssl s_client -connect imap.gmail.com:993 -servername imap.gmail.com
(*For POP3S use port 995).
When you run this command, OpenSSL will output a lot of information about the SSL/TLS handshake. Look for a line starting with Protocol or SSL-Session that indicates the TLS version.
@MarijeSchillern, Hi.
Maybe I wasntt very clear in my question. I would like to know which version pega supports and its using in this e-mail account.
This helped me. Thank you.