Merge
This commit is contained in:
commit
ab64d307cd
3 changed files with 4 additions and 5 deletions
|
@ -7317,6 +7317,7 @@ namespace WebsitePanel.Providers.HostedSolution
|
||||||
cmd.Parameters.Add("Identity", accountName);
|
cmd.Parameters.Add("Identity", accountName);
|
||||||
cmd.Parameters.Add("Archive");
|
cmd.Parameters.Add("Archive");
|
||||||
string database = GetDatabase(runSpace, PrimaryDomainController, ArchiveMailboxDatabase);
|
string database = GetDatabase(runSpace, PrimaryDomainController, ArchiveMailboxDatabase);
|
||||||
|
if (String.IsNullOrEmpty(database)) database = ArchiveMailboxDatabase;
|
||||||
ExchangeLog.DebugInfo("archivedatabase: " + database);
|
ExchangeLog.DebugInfo("archivedatabase: " + database);
|
||||||
if (database != string.Empty)
|
if (database != string.Empty)
|
||||||
{
|
{
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td class="FormLabel150"><asp:Localize ID="Localize2" runat="server" meta:resourcekey="locMailboxplanName" Text="Mailbox plan: *"></asp:Localize></td>
|
<td class="FormLabel150"><asp:Localize ID="Localize2" runat="server" meta:resourcekey="locMailboxplanName" Text="Mailbox plan: *"></asp:Localize></td>
|
||||||
<td>
|
<td>
|
||||||
<wsp:MailboxPlanSelector ID="mailboxPlanSelector" runat="server" Changed="mailboxPlanSelector_Changed" />
|
<wsp:MailboxPlanSelector ID="mailboxPlanSelector" runat="server" OnChanged="mailboxPlanSelector_Changed" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -108,7 +108,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td class="FormLabel150"></td>
|
<td class="FormLabel150"></td>
|
||||||
<td>
|
<td>
|
||||||
<asp:CheckBox ID="chkEnableArchiving" runat="server" meta:resourcekey="chkEnableArchiving" Text="Enable archiving" AutoPostBack="true" />
|
<asp:CheckBox ID="chkEnableArchiving" runat="server" meta:resourcekey="chkEnableArchiving" Text="Enable archiving" />
|
||||||
<br />
|
<br />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -82,7 +82,6 @@ namespace WebsitePanel.Portal.ExchangeServer
|
||||||
}
|
}
|
||||||
|
|
||||||
secRetentionPolicy.Visible = Utils.CheckQouta(Quotas.EXCHANGE2013_ALLOWRETENTIONPOLICY, Cntx);
|
secRetentionPolicy.Visible = Utils.CheckQouta(Quotas.EXCHANGE2013_ALLOWRETENTIONPOLICY, Cntx);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int planId = -1;
|
int planId = -1;
|
||||||
|
@ -90,8 +89,6 @@ namespace WebsitePanel.Portal.ExchangeServer
|
||||||
ExchangeMailboxPlan plan = ES.Services.ExchangeServer.GetExchangeMailboxPlan(PanelRequest.ItemID, planId);
|
ExchangeMailboxPlan plan = ES.Services.ExchangeServer.GetExchangeMailboxPlan(PanelRequest.ItemID, planId);
|
||||||
|
|
||||||
secArchiving.Visible = plan.EnableArchiving;
|
secArchiving.Visible = plan.EnableArchiving;
|
||||||
|
|
||||||
rowArchiving.Visible = chkEnableArchiving.Checked;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void BindSettings()
|
private void BindSettings()
|
||||||
|
@ -165,6 +162,7 @@ namespace WebsitePanel.Portal.ExchangeServer
|
||||||
chkEnableArchiving.Checked = account.EnableArchiving;
|
chkEnableArchiving.Checked = account.EnableArchiving;
|
||||||
archivingQuotaViewer.QuotaUsedValue = Convert.ToInt32(stats.ArchivingTotalSize / 1024 / 1024);
|
archivingQuotaViewer.QuotaUsedValue = Convert.ToInt32(stats.ArchivingTotalSize / 1024 / 1024);
|
||||||
archivingQuotaViewer.QuotaValue = ArchivingMaxSize;
|
archivingQuotaViewer.QuotaValue = ArchivingMaxSize;
|
||||||
|
rowArchiving.Visible = chkEnableArchiving.Checked;
|
||||||
|
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue