This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
internet:mail:exchange:exchange_ssl [2020/08/25 21:34] gcooper |
internet:mail:exchange:exchange_ssl [2025/04/21 23:09] (current) gcooper |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Exchange Server SSL Certificates ====== | ====== Exchange Server SSL Certificates ====== | ||
+ | |||
+ | See also: **https:// | ||
See also: **http:// | See also: **http:// | ||
Line 192: | Line 194: | ||
Get-ReceiveConnector " | Get-ReceiveConnector " | ||
</ | </ | ||
+ | |||
+ | Set the correct SSL certificate used by the Default Frontend (SMTP on port 25) connector: | ||
< | < | ||
Line 207: | Line 211: | ||
openssl s_client -connect exchange.yourdomain.tld: | openssl s_client -connect exchange.yourdomain.tld: | ||
</ | </ | ||
+ | |||
+ | ===== Microsoft Exchange Server Auth Certificate ===== | ||
+ | |||
+ | Read this entire page first: https:// | ||
+ | |||
+ | ==== Exchange Admin Center ==== | ||
+ | |||
+ | Renew the expired/ | ||
+ | |||
+ | **EAC -> Servers -> Certificates** | ||
+ | |||
+ | :!: You will need to **copy the thumbprint of the new MESAC** to be used in the following EMS commands. | ||
+ | |||
+ | ==== Exchange Management Shell ==== | ||
+ | |||
+ | :!: Substitute your new thumbprint. | ||
+ | |||
+ | < | ||
+ | Get-AuthConfig | ||
+ | |||
+ | $thumb = " | ||
+ | $date = get-date | ||
+ | |||
+ | Set-AuthConfig -NewCertificateThumbprint $thumb -NewCertificateEffectiveDate $date | ||
+ | |||
+ | Set-AuthConfig -PublishCertificate | ||
+ | |||
+ | Set-AuthConfig -ClearPreviousCertificate | ||
+ | |||
+ | iisreset | ||
+ | </ | ||
+ | |||
+ | :!: If it is still not working properly, you might try rebooting the server. | ||
===== Troubleshooting ===== | ===== Troubleshooting ===== |