Fixed: 8Gb mailbox limitation. Replaced variables to hold bigger numbers

This commit is contained in:
robvde 2012-08-06 07:44:21 +04:00
parent c4a835b92f
commit 4552d47fc4
8 changed files with 168 additions and 154 deletions

View file

@ -86,9 +86,9 @@ namespace WebsitePanel.Providers.HostedSolution
bool enableMAPI;
bool enableActiveSync;
int issueWarningKB;
int prohibitSendKB;
int prohibitSendReceiveKB;
long issueWarningKB;
long prohibitSendKB;
long prohibitSendReceiveKB;
int keepDeletedItemsDays;
private string domain;
@ -328,19 +328,19 @@ namespace WebsitePanel.Providers.HostedSolution
set { this.enableActiveSync = value; }
}
public int IssueWarningKB
public long IssueWarningKB
{
get { return this.issueWarningKB; }
set { this.issueWarningKB = value; }
}
public int ProhibitSendKB
public long ProhibitSendKB
{
get { return this.prohibitSendKB; }
set { this.prohibitSendKB = value; }
}
public int ProhibitSendReceiveKB
public long ProhibitSendReceiveKB
{
get { return this.prohibitSendReceiveKB; }
set { this.prohibitSendReceiveKB = value; }