From 82e0b5e59cb71666fd93aeb45ce894354222757c Mon Sep 17 00:00:00 2001 From: robvde Date: Sat, 1 Sep 2012 09:38:08 +0400 Subject: [PATCH] Fixed: Contact with e-mail address a@b.cz exists in tenant X. User with e-mail address a@b.cz exists in tenant Y. Tenant Y wants to create new distribution list and set a@b.cz as a manager of this DL. Error appears when clicking on Create New distribution list button. System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Exception: Error executing 'CREATE_DISTR_LIST' task on '' EXCHANGE ---> System.Web.Services.Protocols.SoapException: System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> Microsoft.Exchange.Configuration.Tasks.ThrowTerminatingErrorException: There are multiple recipients matching the identity "a@b.cz". Please specify a unique value. --- .../Code/ExchangeServer/ExchangeServerController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/ExchangeServer/ExchangeServerController.cs b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/ExchangeServer/ExchangeServerController.cs index 88a4fb78..5ea1853a 100644 --- a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/ExchangeServer/ExchangeServerController.cs +++ b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/ExchangeServer/ExchangeServerController.cs @@ -3189,7 +3189,7 @@ namespace WebsitePanel.EnterpriseServer displayName, accountName, name, - domain, manager.AccountName, addressLists.ToArray()); + domain, manager.SamAccountName, addressLists.ToArray()); ExchangeDistributionList dl = exchange.GetDistributionListGeneralSettings(accountName);