This commit is contained in:
Virtuworks 2014-04-14 15:34:47 -04:00
commit 66d2cb44f1
21 changed files with 1483 additions and 263 deletions

View file

@ -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, "");
}
}
}
}