One Exchange Install, Multiple OWAs
I've setup Exchange 2007 all on one box and its now accepting mail for two domains:companyA.com (primary)companyB.comOWA works for webmail.companyA.com with a certificate warning. I'm about ot purchase a certificate for it, but I'd also like to setup webmail.companyB.com as well. Since SSLs are tied to a URL, I can't simply point that record to the primary OWA URL. Anyone have any suggestions?Pirooz Javan
February 11th, 2009 5:24pm

Dear Pirooz, From your post, I understand that you have two domain names, and you want to purchase a SSL certificate to support both domain names. Based on my research, we can achieve that by perform the following steps: To configure your SSL certificates to use multiple Client Access server host names, do the following steps: 1. Use the New-ExchangeCertificate cmdlet to create a certificate request file. You should include all the domain names after domainname parameter. New-ExchangeCertificate -generaterequest -subjectname "dc=com,dc=contoso,o=Contoso Corporation,cn=exchange.contoso.com" -domainname exchange.contoso.com, CAS01,CAS01.exchange.corp.constoso.com, autodiscover.contoso.com -PrivateKeyExportable $true -path c:\certrequest_cas01.txt 2. Send this file to a Windows Certificate Services certification authority and use the Web server template on the Certification Authority page. This will result in a .cer file that can be imported to the Client Access server. Import-ExchangeCertificate -path <certificate_file_name>.cer -friendlyname "Contoso CAS01" 3. Use the Get-ExchangeCertificate cmdlet to determine the thumbprint for your certificate. Get-ExchangeCertificate -DomainName "CAS01" 4. After you have imported the certificate, you can assign it to IIS, IMAP4, and POP3 by using the Enable-ExchangeCertificate cmdlet. Enable-ExchangeCertificate -thumbprint <certificate-thumbprint> -services "IIS,POP,IMAP" For more information How to Configure SSL Certificates to Use Multiple Client Access Server Host Names, please look through the following article: How to Configure SSL Certificates to Use Multiple Client Access Server Host Names http://technet.microsoft.com/en-us/library/aa995942.aspx If anything is unclear, dont hesitate to ask me. Regards, Rock Wang - MSFT
Free Windows Admin Tool Kit Click here and download it now
February 12th, 2009 5:10am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics