Exchange Shared and Resource mailboxes : Import.Enterprise fix
This commit is contained in:
parent
52a83bfa61
commit
b3b60fd3d7
1 changed files with 36 additions and 18 deletions
|
@ -780,7 +780,24 @@ namespace WebsitePanel.Import.Enterprise
|
||||||
return userId;
|
return userId;
|
||||||
}
|
}
|
||||||
int mailboxType = (int)type.Value;
|
int mailboxType = (int)type.Value;
|
||||||
|
|
||||||
|
PropertyValueCollection typeDetails = entry.Properties["msExchRecipientTypeDetails"];
|
||||||
|
int mailboxTypeDetails = 0;
|
||||||
|
if (typeDetails!=null)
|
||||||
|
{
|
||||||
|
if (typeDetails.Value != null)
|
||||||
|
mailboxTypeDetails = (int)typeDetails.Value;
|
||||||
|
}
|
||||||
|
|
||||||
ExchangeAccountType accountType = ExchangeAccountType.Undefined;
|
ExchangeAccountType accountType = ExchangeAccountType.Undefined;
|
||||||
|
|
||||||
|
if (mailboxTypeDetails == 4)
|
||||||
|
{
|
||||||
|
Log.WriteInfo("Account type : shared mailbox");
|
||||||
|
accountType = ExchangeAccountType.SharedMailbox;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
switch (mailboxType)
|
switch (mailboxType)
|
||||||
{
|
{
|
||||||
case 1073741824:
|
case 1073741824:
|
||||||
|
@ -798,6 +815,7 @@ namespace WebsitePanel.Import.Enterprise
|
||||||
default:
|
default:
|
||||||
Log.WriteInfo("Account type : unknown");
|
Log.WriteInfo("Account type : unknown");
|
||||||
return userId;
|
return userId;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
UpdateExchangeAccount(userId, accountName, accountType, displayName, email, false, string.Empty, samName, string.Empty);
|
UpdateExchangeAccount(userId, accountName, accountType, displayName, email, false, string.Empty, samName, string.Empty);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue