Fix archiving
This commit is contained in:
parent
2170367f8f
commit
56cf823559
19 changed files with 371 additions and 179 deletions
|
@ -170,6 +170,13 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
set { this.archivingMailboxPlan = value; }
|
||||
}
|
||||
|
||||
bool enableArchiving;
|
||||
public bool EnableArchiving
|
||||
{
|
||||
get { return this.enableArchiving; }
|
||||
set { this.enableArchiving = value; }
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -225,6 +225,20 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
set { this.enableArchiving = value; }
|
||||
}
|
||||
|
||||
int archiveSizeMB;
|
||||
public int ArchiveSizeMB
|
||||
{
|
||||
get { return this.archiveSizeMB; }
|
||||
set { this.archiveSizeMB = value; }
|
||||
}
|
||||
|
||||
int archiveWarningPct;
|
||||
public int ArchiveWarningPct
|
||||
{
|
||||
get { return this.archiveWarningPct; }
|
||||
set { this.archiveWarningPct = value; }
|
||||
}
|
||||
|
||||
public string WSPUniqueName
|
||||
{
|
||||
get
|
||||
|
|
|
@ -55,5 +55,11 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
public ExchangeAccountType MailboxType { get; set; }
|
||||
public bool BlackberryEnabled { get; set; }
|
||||
public string MailboxPlan { get; set; }
|
||||
|
||||
|
||||
public long ArchivingTotalSize { get; set; }
|
||||
public long ArchivingTotalItems { get; set; }
|
||||
public long ArchivingMaxSize { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue