Hi guys,
I had Microsoft support helping me to setup my CRM4.0 email router with Office365 i had to use powersheel to add rights to mailboxes and stuff like that, i did it, and it was working for couple of mounths, and suddenly it stoped to work, and im getting :
Incoming Status: Failure - The remote Microsoft Exchange e-mail server returned the error "(401) Unauthorized". Verify that you have permission to connect to the mailbox. The request failed with HTTP status 401: Unauthorized
What i did with microsoft support you can see it here:
- First, you need to grant permissions to the account that the Email Router uses to the various mail boxes that use the Email Router.
- Second, set up the CRM 2011 Email Router.
Grant Email Account Full Access to Mail Boxes:
Open Windows PowerShell from any client.
Set your credentials by entering:
$LiveCred = Get-Credential
Enter the username and password for an account that has administrative privileges in Office 365.
Enter the command:
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic –AllowRedirection
Then the command:
Import-PSSession $Session
For each of the mailboxes that your account needs to access enter the command (mailboxname is the mailbox you want to access and emailaccount is the account the CRM Email Router will use):
Add-MailboxPermission "mailboxname" -User "emailaccount" -AccessRights FullAccess
Disconnect from your Exchange session:
Remove-PSSession $Session
Set up the CRM 2011 Email Router:
Get your Exchange Server name by logging into Office 365 and going to Outlook, Click on "Options" in the upper right and select "See All Options". From there click "Settings for POP, IMAP, and SMTP access..." and make a note of the Server name under POP setting. It will be something like PODxxxxx.outlook.com
Start the CRM E-Mail Configuration Manager
On the "Configuration Profiles" Create a new Incoming Profile with the following setting:
Profile Name: Office 365 Incoming (or something like that)
Direction: Incoming
E-mail Server Type: ExchangeOnline
Exchange Web Services URL: https://podxxxxx.outlook.com/ews/Exchange.asmx (use the server from step 1)
Access Credentials: Other Specified
Username: (the account you gave access to)
Password: (the password)
On the "Configuration Profiles" Create a new Outgoing Profile with the following setting:
Profile Name: Office 365 Outgoing (or something like that)
Direction: Outgoing
E-mail Server Type: ExchangeOnline
Exchange Web Services URL: https://podxxxxx.outlook.com/ews/Exchange.asmx (use the server from step 1)
Access Credentials: Other Specified
User Type: Administrator
Username: (the account you gave access to)
Password: (the password)
Access Type: Delegate Access
If necessary change the Default Incoming and Outgoing profiles for your CRM server(s) on the "Deployment" tab
Click Publish to save the new configuration
Test by going to the "Users, Queues, and Forward Mailboxes" tab, clicking on Load Data, Select all users and queues and click test Access.
So something has changed in Office365, and i need to know what, and how to fix it.
i allraedy have permissions to all mailboxes..
this issue is crtical for my company, and i need to solve it. as far my google goes, im not the only one having this issue.