This commit is contained in:
Virtuworks 2014-06-02 11:39:51 -04:00
commit 80c7d75fd8

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)