Exchange archiving
This commit is contained in:
parent
5f951183e3
commit
7755217dfb
21 changed files with 1485 additions and 265 deletions
|
@ -29,6 +29,7 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
|
||||
namespace WebsitePanel.Providers.HostedSolution
|
||||
{
|
||||
|
@ -223,5 +224,14 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
get { return this.enableArchiving; }
|
||||
set { this.enableArchiving = value; }
|
||||
}
|
||||
|
||||
public string WSPUniqueName
|
||||
{
|
||||
get
|
||||
{
|
||||
Regex r = new Regex(@"[^A-Za-z0-9]");
|
||||
return "WSPPolicy" + MailboxPlanId.ToString() + "_" + r.Replace(MailboxPlan, "");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue