You need to create an Autodiscover directory in IIS and configure it. What I do with this script is creating that directory and configuring for redirection.
1 2 3 4 5 6 7 8 |
New-Item "C:\inetpub\Autodiscover_redirect" -type Directory New-Item "C:\inetpub\Autodiscover_redirect\Autodiscover" -type Directory New-Item "C:\inetpub\Autodiscover_redirect\Autodiscover\Autodiscover.xml" –type File Import-Module WebAdministration Remove-WebBinding -Name “Default Web Site” -BindingInformation *:80: New-ItemProperty IIS:\Sites\”Default Web Site” -name bindings -value @{protocol="http";bindingInformation="*:80:mail.yusufozturk.info"} New-Item IIS:\Sites\Autodiscover -bindings (@{protocol="http";bindingInformation="*:80:"}) -PhysicalPath “C:\inetpub\Autodiscover_redirect" Set-WebConfiguration -filter /system.webServer/httpRedirect -value (@{enabled="True"; destination="autodiscover.yusufozturk.info"}) -PSPath IIS:\ -location Autodiscover |
You won’t get any SSL error on Outlook after changes.