Exchange archiving

This commit is contained in:
dev_amdtel 2014-04-14 23:12:27 +04:00
parent 5f951183e3
commit 7755217dfb
21 changed files with 1485 additions and 265 deletions

View file

@ -6965,5 +6965,38 @@ namespace WebsitePanel.Providers.HostedSolution
}
#endregion
#region Archiving
public virtual void SetMailBoxArchiving(string organizationId, string accountName, bool archive, long archiveQuotaKB, long archiveWarningQuotaKB, string RetentionPolicy)
{
// not implemented
}
#endregion
#region Retention policy
public virtual void SetRetentionPolicyTag(string Identity, ExchangeRetentionPolicyTagType Type, int AgeLimitForRetention, ExchangeRetentionPolicyTagAction RetentionAction)
{
// not implemented
}
public virtual void RemoveRetentionPolicyTag(string Identity)
{
// not implemented
}
public virtual void SetRetentionPolicy(string Identity, string[] RetentionPolicyTagLinks)
{
// not implemented
}
public virtual void RemoveRetentionPolicy(string Identity)
{
// not implemented
}
#endregion
}
}