fix wsp-10243 Exchange 2010
This commit is contained in:
parent
12b1a08168
commit
d53f450523
1 changed files with 5 additions and 2 deletions
|
@ -3073,8 +3073,11 @@ namespace WebsitePanel.EnterpriseServer
|
||||||
|
|
||||||
}
|
}
|
||||||
ResultObject res = exchange.SetMailBoxArchiving(orgId, accountName, EnableArchiving, archiveQuotaKB, archiveWarningQuotaKB, RetentionPolicy);
|
ResultObject res = exchange.SetMailBoxArchiving(orgId, accountName, EnableArchiving, archiveQuotaKB, archiveWarningQuotaKB, RetentionPolicy);
|
||||||
result.ErrorCodes.AddRange(res.ErrorCodes);
|
if (res != null)
|
||||||
result.IsSuccess = result.IsSuccess && res.IsSuccess;
|
{
|
||||||
|
result.ErrorCodes.AddRange(res.ErrorCodes);
|
||||||
|
result.IsSuccess = result.IsSuccess && res.IsSuccess;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static List<ExchangeRetentionPolicyTag> GetExchangeRetentionPolicyTags(int itemId)
|
public static List<ExchangeRetentionPolicyTag> GetExchangeRetentionPolicyTags(int itemId)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue