fix wsp-10243 Exchange 2010

This commit is contained in:
dev_amdtel 2014-06-02 19:26:11 +04:00
parent 12b1a08168
commit d53f450523

View file

@ -3073,8 +3073,11 @@ namespace WebsitePanel.EnterpriseServer
}
ResultObject res = exchange.SetMailBoxArchiving(orgId, accountName, EnableArchiving, archiveQuotaKB, archiveWarningQuotaKB, RetentionPolicy);
result.ErrorCodes.AddRange(res.ErrorCodes);
result.IsSuccess = result.IsSuccess && res.IsSuccess;
if (res != null)
{
result.ErrorCodes.AddRange(res.ErrorCodes);
result.IsSuccess = result.IsSuccess && res.IsSuccess;
}
}
public static List<ExchangeRetentionPolicyTag> GetExchangeRetentionPolicyTags(int itemId)