Ever had the problem when you have enabled the user's mailbox with In-Place Archive (a.k.a. Hosted Archive or Archive Mailbox), but yet it doesn't show up in OWA?
And you have tried to enable it for a hybrid mailbox, as well as a cloud only mailbox and both has the same behaviour?
The fix for me was a simple one - just clear your browser cache - for some reason that solved the problem for me.
Showing posts with label Office 365. Show all posts
Showing posts with label Office 365. Show all posts
Tuesday, April 12, 2016
Tuesday, March 01, 2016
Office 365: Maximum Number of Unverified Domains
Apparently there is a limit of how many unverified domains that you can have within an Office 365 subscription, and the magic number (as of 1 March 2016) is:
55
When you add more than 55 domains using PowerShell, you get the following error message:
The following article talks about the error, but does not mention the limit:
https://support.microsoft.com/en-us/kb/2279117
This article mentions more errors when adding domains into Office 365:
https://support.microsoft.com/en-us/kb/2762161
55
When you add more than 55 domains using PowerShell, you get the following error message:
Number of unverified domains exceeded.
Your account has too many unverified domains. Verify or delete one of your unverified domains, and then add the new domain.
The following article talks about the error, but does not mention the limit:
https://support.microsoft.com/en-us/kb/2279117
This article mentions more errors when adding domains into Office 365:
https://support.microsoft.com/en-us/kb/2762161
Wednesday, October 08, 2014
Hybrid Deployment - Route all emails (including Internet bound email from Office 365 users) to On Premise
There will be situation where the client wants to route all emails (including the ones from Office 365 users to the Internet) to on premise Exchange server first, before sending it out. The most common reason is for centralised tracking and quarantining.
To perform this, during HCW, you would pick the option "Enable centralized mail transport" during the HCW wizard, i.e.:
The only problem is that, when an Office 365 user sends an email to any Internet recipient, it would fail with NDR - "5.7.1 Unable to relay". Further examining the NDR, it would seem that the On Prem Exchange Server (in my case - Exchange 2013 CU6) is rejecting the email relay.
The only article I can find that relates to this problem is here (http://community.office365.com/en-us/f/148/t/265897.aspx), but I couldn't find the receive connector named "Inbound from Office 365" on my Exchange 2013. See below:
So apparently, Exchange 2007 HCW creates a new receive connector called "Inbound from Office 365" and Exchange 2013 HCW just reconfigures the "Default Front End servername" receive connector with TLS authentication with Exchange Online Protection, as seen in the following HCW log entry:
[10/06/2014 13:36:21] INFO : Session=OnPrem Cmdlet=Set-ReceiveConnector -Identity 'ServerName\Default Frontend ServerName' -TLSCertificateName 'CN=Go Daddy Secure Certificate Authority - G2, OU=http://certs.godaddy.com/repository/, O="GoDaddy.com, Inc.", L=Scottsdale, S=Arizona, C=USCN=*.company.com, O=Company Name' -TLSDomainCapabilities 'CN=MSIT Machine Auth CA 2, DC=redmond, DC=corp, DC=microsoft, DC=comCN=mail.protection.outlook.com, OU=Forefront Online Protection for Exchange, O=Microsoft, L=Redmond, S=WA, C=US:AcceptCloudServicesMail' START
With Exchange 2013 CU6, it seems like there is a bug that relay is not enabled on the "Default Frontend" receive connector.
According to the Microsoft engineer, it is a bug that has been highlighted to the product group.
So to fix the problem, I just need to issue the command and the problem is fixed:
Get-ReceiveConnector "ServerName\Default Frontend ServerName" | Add-ADPermission -User "NT AUTHORITY\ANONYMOUS LOGON" -ExtendedRights "Ms-Exch-SMTP-Accept-Any-Recipient"
To perform this, during HCW, you would pick the option "Enable centralized mail transport" during the HCW wizard, i.e.:
The only problem is that, when an Office 365 user sends an email to any Internet recipient, it would fail with NDR - "5.7.1 Unable to relay". Further examining the NDR, it would seem that the On Prem Exchange Server (in my case - Exchange 2013 CU6) is rejecting the email relay.
The only article I can find that relates to this problem is here (http://community.office365.com/en-us/f/148/t/265897.aspx), but I couldn't find the receive connector named "Inbound from Office 365" on my Exchange 2013. See below:
So apparently, Exchange 2007 HCW creates a new receive connector called "Inbound from Office 365" and Exchange 2013 HCW just reconfigures the "Default Front End servername" receive connector with TLS authentication with Exchange Online Protection, as seen in the following HCW log entry:
[10/06/2014 13:36:21] INFO : Session=OnPrem Cmdlet=Set-ReceiveConnector -Identity 'ServerName\Default Frontend ServerName' -TLSCertificateName 'CN=Go Daddy Secure Certificate Authority - G2, OU=http://certs.godaddy.com/repository/, O="GoDaddy.com, Inc.", L=Scottsdale, S=Arizona, C=USCN=*.company.com, O=Company Name' -TLSDomainCapabilities 'CN=MSIT Machine Auth CA 2, DC=redmond, DC=corp, DC=microsoft, DC=comCN=mail.protection.outlook.com, OU=Forefront Online Protection for Exchange, O=Microsoft, L=Redmond, S=WA, C=US:AcceptCloudServicesMail' START
With Exchange 2013 CU6, it seems like there is a bug that relay is not enabled on the "Default Frontend" receive connector.
According to the Microsoft engineer, it is a bug that has been highlighted to the product group.
So to fix the problem, I just need to issue the command and the problem is fixed:
Get-ReceiveConnector "ServerName\Default Frontend ServerName" | Add-ADPermission -User "NT AUTHORITY\ANONYMOUS LOGON" -ExtendedRights "Ms-Exch-SMTP-Accept-Any-Recipient"
Labels:
Hybrid Deployment Wizard,
NDR,
Office 365,
Receive Connector
Monday, October 06, 2014
Exchange 2013 Hybrid Configuration Wizard Failing
I couldn't get the Hybrid configuration wizard working. The moment after I sign into Office 365, I get the following error:
HTTP Error 500.19 - Internal Server Error
Absolute physical path "C:\inetpub\custerr\C:\inetpub\custerr" is not allowed in system.webServer/httpErrors section in web.config file. Use relative path instead.
Screenshot here:
HTTP Error 500.19 - Internal Server Error
Absolute physical path "C:\inetpub\custerr\C:\inetpub\custerr" is not allowed in system.webServer/httpErrors section in web.config file. Use relative path instead.
Screenshot here:
Looking up and down the Internet, I could not find any useful clue at all. Out of the whim, I decided to move the mailbox that my admin account is associated with to Exchange 2013 and problem fixed!
Hopefully this is useful for some other poor folks with the same problem.
There are a lot of discussions about Exchange 2013 CU6 causing co-existence and hybrid problems but I do not this has been documented before.
Labels:
Exchange 2013,
HCW,
Hybrid Deployment Wizard,
Office 365
Subscribe to:
Posts (Atom)


