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:04] gcooper |
internet:mail:exchange:exchange_ssl [2022/04/17 14:08] (current) gcooper |
||
---|---|---|---|
Line 189: | Line 189: | ||
< | < | ||
- | Get-ReceiveConnector " | + | Get-ReceiveConnector |
+ | Get-ReceiveConnector " | ||
</ | </ | ||
+ | |||
+ | Set the correct SSL certificate used by the Default Frontend (SMTP on port 25) connector: | ||
+ | |||
+ | < | ||
+ | Get-ExchangeCertificate | ||
+ | $cert = Get-ExchangeCertificate -Thumbprint " | ||
+ | $cert | fl Thumbprint, | ||
+ | $tls = "< | ||
+ | Set-ReceiveConnector " | ||
+ | Get-ReceiveConnector " | ||
+ | </ | ||
+ | |||
+ | Test from a Linux host: | ||
+ | |||
+ | < | ||
+ | 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 ===== |