When running a hybrid environment we have noticed that in some situations that an user with an on premise mailbox is not showing in the Office 365 GAL. After comparing account details we noticed that the attribute CloudExchangeRecipientDisplayType was empty for those accounts. In a search how to fix this we found an article …
Continue reading CloudExchangeRecipientDisplayType is empty for one or more users
Category:Office 365
Change email address of a Plan in Office 365 planner
When you add a new plan in the Office 365 Planner, a public group is automatically created with an email address that matches the initial name. It is possible to change the email address of a Plan using powershell. Start Windows PowerShell and run these commands to connect to Exchange Online
1 2 3 |
$cred = Get-Credential $exo = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri "https://outlook.office365.com/powershell-liveid/" -Credential $cred -Authentication Basic -AllowRedirection -ErrorVariable +err -ErrorAction SilentlyContinue Import-PSSession $exo -DisableNameChecking -AllowClobber -ErrorVariable +err -ErrorAction SilentlyContinue |
Now run this …
Continue reading Change email address of a Plan in Office 365 planner
Enable DKIM in Office 365
Microsoft has made it very easy to use DKIM, basically you only need to create two CNAME DNS records and enable DKIM in Office 365. DKIM DNS records To enable DKIM in Office 365 you first need to create two dns CNAME records. The records should look like this:
1 2 |
selector1._domainkey.domain.com selector2._domainkey.domain.com |
Where .domain.com is the domain …
Continue reading Enable DKIM in Office 365
Status: No DKIM keys saved for this domain
When you want to enable DKIM in your Office 365 environment for a specific domain you might run into the problem that you can’t because the message is saying: “No DKIM keys saved for this domain” What you would expect to see is this, depending on the current state (enabled or disabled): To resolve this …
Continue reading Status: No DKIM keys saved for this domain