Сравнение версий

Ключ

  • Эта строка добавлена.
  • Эта строка удалена.
  • Formatting was changed.

Integration with Интеграция с сервером Microsoft Exchange 2007 occurs by way of Exchange’s inbuilt web services API. This API is enabled and accessible by default. However, to perform a successful import, one needs to use an account with sufficient privileges to access all mailboxes.

 
To do this:
 

  1.  Login to Exchange 2007 server as Administrator
  2. Either create a new mailbox called ‘journal’ in Microsoft Exchange or use an existing one that does not already have any Admin privileges assigned.
  3. Run the Exchange Management Shell
  4. Type the following into the Exchange Management shell:

 

 

происходит с помощью встроенных в Exchange API веб служб. Данный API включен и доступен по умолчанию. Для успешного импорта необходимо создать учетную запись с правами на чтение всех почтовых ящиков.

 Для этого:

  • Авторизируйтесь на сервере Exchange 2007 с правами администратора 
  • Создайте новый почтовый ящик "journal" или используйте любой другой, который не имеет административных прав
  • Запустите Exchange Management Shell
  • Наберите и выполните команду

 

Code Block
languagepowershell
Get-ClientAccessServer | Add-AdPermission -User journal -ExtendedRights ms-Exch-EPI-Impersonation
Get-MailboxDatabase | Add-AdPermission -User journal -ExtendedRights ms-Exch-EPI-May-Impersonate

 

 

Note: If necessary, substitute ‘journal’ to be the chosen username of the impersonation account.

 

Note: It is also possible to use the computer account created in Active Directory for the purposes of login (as described in Logins). In this case, the mailbox name should resemble the following: “service$@smallbusiness.local”.

 

To prevent Microsoft Exchange from throttling Архива requestsДля предотвращения регулирования запросы от Архива к Microsoft Exchange выполните команду:

 

 

Code Block
languagepowershell
New-ThrottlingPolicy -Name mailmigration -EWSFindCountLimit $null -EWSFastSearchTimeoutInSeconds $null -EWSMaxConcurrency $null -EWSMaxSubscriptions $null -EWSPercentTimeInAD $null -EWSPercentTimeInCAS $null -EWSPercentTimeInMailboxRPC $null
$b = Get-ThrottlingPolicy mailmigration;
Set-Mailbox -Identity journal -ThrottlingPolicy $b;
Info

Более подробно о настройке имперсонализации в Exchange 2007 можно изучить в базе знаний Microsoft.