This commit is contained in:
Virtuworks 2014-05-28 19:50:05 -04:00
commit b763d9da51

View file

@ -3372,6 +3372,8 @@ namespace WebsitePanel.EnterpriseServer
ExchangeMailboxPlan policy = GetExchangeMailboxPlan(itemID, policyId);
if (policy != null)
{
List<ExchangeMailboxPlanRetentionPolicyTag> policytaglist = GetExchangeMailboxPlanRetentionPolicyTags(policyId);
List<string> tagLinks = new List<string>();
@ -3391,6 +3393,7 @@ namespace WebsitePanel.EnterpriseServer
ResultObject res = exchange.SetRetentionPolicy(policy.WSPUniqueName, tagLinks.ToArray());
result.ErrorCodes.AddRange(res.ErrorCodes);
result.IsSuccess = result.IsSuccess && res.IsSuccess;
}
}
}