-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SmarterMail100] Added extra group options and fixing import bug when…
… no target emails set. - Work sponsored by Enterprise Guardian Inc. Tested with SmarterMail 100.0.9088.25586 (Nov 18, 2024)
- Loading branch information
1 parent
b34c4f9
commit e9240eb
Showing
5 changed files
with
224 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 49 additions & 5 deletions
54
.../SolidCP.WebPortal/DesktopModules/SolidCP/ProviderControls/SmarterMail100x_EditGroup.ascx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,52 @@ | ||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="SmarterMail100x_EditGroup.ascx.cs" Inherits="SolidCP.Portal.ProviderControls.SmarterMail100x_EditGroup" %> | ||
<%@ Register TagPrefix="dnc" TagName="EditItemsList" Src="../MailEditItems.ascx" %> | ||
<div class="form-group"> | ||
<asp:Label ID="lblGroupMembers" CssClass="control-label col-sm-2" runat="server" meta:resourcekey="lblGroupMembers" Text="Group e-mails:"></asp:Label> | ||
<div class="input-group col-sm-8"> | ||
<table cellSpacing="0" cellPadding="3" width="100%"> | ||
<tr> | ||
<td class="SubHead" width="600" nowrap> | ||
<asp:Label ID="lblDisplayName" runat="server" meta:resourcekey="lblDisplayName" Text="Group DisplayName:"></asp:Label> | ||
</td> | ||
<td class="normal" width="100%"> | ||
<asp:TextBox ID="txtDisplayName" runat="server" Width="300px"></asp:TextBox> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td class="SubHead" vAlign="top" > | ||
<asp:Label ID="lblGroupMembers" runat="server" meta:resourcekey="lblGroupMembers" Text="Group e-mails:"></asp:Label> | ||
</td> | ||
<td vAlign="top" > | ||
<dnc:EditItemsList id="mailEditItems" runat="server"></dnc:EditItemsList> | ||
</div> | ||
</div> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td class="SubHead"> | ||
<asp:Label ID="lblIncludeAllDomainUsers" runat="server" meta:resourcekey="lblIncludeAllDomainUsers" Text="Include all domain users:"></asp:Label> | ||
</td> | ||
<td class="normal"> | ||
<asp:CheckBox ID="chkIncludeAllDomainUsers" runat="server" meta:resourcekey="chkIncludeAllDomainUsers" /> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td class="SubHead"> | ||
<asp:Label ID="lblEnableGAL" runat="server" meta:resourcekey="lblEnableGAL" Text="Show in Global Address List:"></asp:Label> | ||
</td> | ||
<td class="normal"> | ||
<asp:CheckBox ID="chkEnableGAL" runat="server" meta:resourcekey="chkEnableGAL" /> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td class="SubHead"> | ||
<asp:Label ID="lblEnableChat" runat="server" meta:resourcekey="lblEnableChat" Text="Enable Group Chat:"></asp:Label> | ||
</td> | ||
<td class="normal"> | ||
<asp:CheckBox ID="chkEnableChat" runat="server" meta:resourcekey="chkEnableChat" /> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td class="SubHead"> | ||
<asp:Label ID="lblInternalOnly" runat="server" meta:resourcekey="lblInternalOnly" Text="Internal use only:"></asp:Label> | ||
</td> | ||
<td class="normal"> | ||
<asp:CheckBox ID="chkInternalOnly" runat="server" meta:resourcekey="chkInternalOnly" /> | ||
</td> | ||
</tr> | ||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
104 changes: 98 additions & 6 deletions
104
...Portal/DesktopModules/SolidCP/ProviderControls/SmarterMail100x_EditGroup.ascx.designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.