403Webshell
Server IP : 209.209.40.120  /  Your IP : 216.73.217.112
Web Server : Microsoft-IIS/10.0
System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586
User : NEWWWW$ ( 0)
PHP Version : 8.3.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/Program Files (x86)/Mail Enable/Bin/NETWebAdmin/Mondo/lang/sys/Forms/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/Program Files (x86)/Mail Enable/Bin/NETWebAdmin/Mondo/lang/sys/Forms/UserDetails.aspx
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="UserDetails.aspx.vb" Inherits="MailEnable.Clients.WebAdmin.Mondo.UserDetails" %>
<%@ Register TagPrefix="uc1" TagName="uscStyleHeader" Src="../Controls/uscStyleHeader.ascx" %>
<%@ Register TagPrefix="uc2" TagName="uscLanguageTokenMondo" Src="../Controls/uscLanguageToken.ascx" %>
<%@ Register TagPrefix="ucScriptsInclude" TagName="ScriptsInclude" Src="../Controls/ScriptsInclude.ascx" %>
<%@ Register TagPrefix="uc3" TagName="uscContactPersonalDetails" Src="../Controls/ContactPersonalDetails.ascx" %>
<uc2:uscLanguageTokenMondo id="uscToken" runat="server"></uc2:uscLanguageTokenMondo>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<title>MailEnable - Login Details</title>
	<base target="_self"/>
	<meta http-equiv="content-type" content="text/html;charset=UTF-8">
	<meta http-equiv="Expires" content="0">
	<meta http-equiv="Pragma" content="no-cache">
	<meta http-equiv="Cache-Control" content="no-cache">
	<uc1:uscstyleheader id="UscStyleHeader1" runat="server"></uc1:uscstyleheader>
    <ucScriptsInclude:ScriptsInclude id="ScriptsInclude1" runat="server"></ucScriptsInclude:ScriptsInclude>


    <style type="text/css">
        /*Prevent IE intial scrolls for dialogs*/
        .popupWin_body_bg{
            -ms-overflow-style: none;
            overflow: auto;
        }        
    </style>


    <style type="text/css">        
        /*
        input, select               {height:27px;}
        select                      {padding:4px 7px 4px 2px;}
        textarea                    {padding:5px 7px 5px 7px}
        .ME_Button                  {height:27px;}
        input.textfield {height:27px;}
        .options_form_label {padding:10px 7px 4px 2px;height:27px;}
        options_form_label
        
    .options_form_label
    {
        padding-bottom:9px;
    }
        
    
    .popupWin_tab_body_shell input, .popupWin_tab_body_shell select, .popupWin_tab_body_shell textarea     
    {
        border:1px solid #969696;padding:2px 2px 2px 7px;margin-bottom:7px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;height:23px;
    }    


*/  
    </style>

    <style type="text/css">
        .contacts_img_td             {width:150px;vertical-align:top;overflow:hidden;}
        .contacts_img_shell          {position:relative;float:right;width:125px;height:125px;background:#fff;border:1px solid #666;margin-top:3px;-moz-user-select:none;}
        .contacts_img_shell img      {border:0;-moz-user-select:none;}
        .contacts_img_close          {position:absolute;top:3px;right:3px;width:16px;height:16px;background:url("icon_close.gif") no-repeat;cursor:pointer;display:none;-moz-user-select:none;}
        .contacts_img_close:active   {background-position:0px -32px;cursor:pointer;}    
    </style>
    <script type="text/javascript">
        function ContactsImgClose_show() {
            $('.contacts_img_close').show();
        }
        function ContactsImgClose_hide() {
            $('.contacts_img_close').hide();
        }
    </script>
    <script type="text/javascript" language="javascript" src="../Scripts/LIBCore.js"></script>
	<script type="text/javascript" language="javascript" src="../Scripts/LIBCommon.js"></script>
	<script type="text/javascript" language="javascript" src="../Scripts/LIBTabStrip.js"></script>
	<script type="text/javascript" language="javascript" src="../Scripts/LIBJQList.js"></script>
    <script type="text/javascript">
        var isIE7 = false;
        var g_opt={}; g_opt['ME_VALIDATIONTOKEN'] = '<%=Session.Item("ME_VALIDATIONTOKEN")%>'; //could be moved to masterpage

        var g_Postoffice = '<%=gSession_ACCOUNT%>';
        var g_Mailbox = '<%=GetSelectedMailbox()%>';

        var g_MailboxSettings = {};

        function GetMailboxSettingsJSON(sCommand, sMailbox, sPostoffice, sParams) {
            if (sParams == null)
            {
                sParams='';
            }
            $.ajax({ type: "GET",
                url: getAppServletURL() + '?Cmd=' + sCommand + '&Mailbox=' + sMailbox + '&Postoffice=' + sPostoffice + '&Format=JSON' + sParams + '&ME_VALIDATIONTOKEN=' + getTopAppWindow().g_opt['ME_VALIDATIONTOKEN'],
                contentType: "application/json",
                dataType: "json",
                requestMethod: sCommand,
                cache: false,
                async: false,
                success: function (data) {
                    if (data.AddressMaps) {
                        g_MailboxSettings.AddressMaps = data;
                    }
                    else if (this.requestMethod == 'LIST-MAILBOX-ACTIVITY') {
                        g_MailboxSettings.ActivityList = data;
                        g_MailboxSettings.ActivityList.onDefaultAction = doAction_SystemMessage;
                    }
                    else {
                        g_MailboxSettings.Options = data;
                    }
                }
            });

        }

        function SetFormFromSettings() 
        {
            try 
            {
                $("#mailboxTwoFactorModel").val(g_MailboxSettings.Options['TwoFactorModel'].Value);
                $("#mailboxTwoFactorAddress").val(g_MailboxSettings.Options['TwoFactorAddress'].Value);
                $("#mailboxTwoFactorAddressType").val(g_MailboxSettings.Options['TwoFactorAddressType'].Value);
                return true;
            }
            catch (err) { return false; }
        }

        function FetchEventsDay(v)
        {
            //jQuery('#masterdiv div').html('');
            GetMailboxSettingsJSON('LIST-MAILBOX-ACTIVITY', g_Mailbox, g_Postoffice,'&DayIndex=' + v);
            g_MailboxSettings.ActivityList.listContainer = '#table-container';
            jsonList_Init(g_MailboxSettings.ActivityList);

        }

        function doAction_SystemMessage(oItem, vBool)
        {
            alert(oItem.Items[oItem.selectedIndex].Event);
        }

        function EventsDay_Changed(v)
        {
            FetchEventsDay(v);
        }
        function TwoFactorType_Changed(v)
        {
            //we want to determine whether we show the ability to enter an address or a QR code
            //FetchEventsDay(v);
            var tfType = $("#mailboxTwoFactorAddressType").val();
            if (tfType == 'TOTP')
            {
                //show the img
                $("#TwoFactorQRFields").show();
                $("#TwoFactorAddressFields").hide();
            }
            else
            {
                //hide the img, show the address fields
                $("#TwoFactorQRFields").hide();
                $("#TwoFactorAddressFields").show();
            }
        }

        function ClearTwoFactor()
        {
            GetMailboxSettingsJSON('ClearTwoFactor', g_Mailbox, g_Postoffice,'&Reset=true');
        }

        function UnlockMailbox()
        {
            GetMailboxSettingsJSON('UnlockMailbox', g_Mailbox, g_Postoffice);
            $("#btnUnlock").show();
        }

        $(document).ready(function () {

            ME_TabInit();
            setActiveTab('<%=ActiveTab%>');
            $('#chkRedirect').click(ChkRedirect_Changed);
            $('#btnClearExceptions').click(ClearTwoFactor);
            $('#btnUnlock').click(UnlockMailbox);
            
            $('#optEventsDay').change(function() { EventsDay_Changed(this.value); });
            
            <%If AllowTwoFactorAuthentication() Then%>
                GetMailboxSettingsJSON('GET-MBX-OPTIONS', g_Mailbox, g_Postoffice);
                SetFormFromSettings();
            <%End If%>

            FetchEventsDay(0);
            TwoFactorType_Changed();

            $(':file').change(function () {
	            if (this.files) {
	                var sId = '[<%=GetSelectedMailbox()%>]';
	                var file = this.files[0];
	                $.ajax({
	                    url: getAppServletURL() + '?Cmd=SET-CONTACT&Options=PHOTO&ID=' + sId + '&TD=' + (new Date()).getTime() + '&ME_VALIDATIONTOKEN=' + getTopAppWindow().g_opt['ME_VALIDATIONTOKEN'],
	                    data: new FormData($('form')[0]),
	                    cache: false,
	                    contentType: false,
	                    processData: false,
	                    type: 'POST',
	                    success: function (data) {
	                        if (data && (data.length > 0)) {
	                        }
	                    },
	                    error: function (request, error) {
	                        alert("An error occured uploading: " + error);
	                    },
	                    complete: function (jqXHR, sTextstatus) {
	                        //request image
	                        $('#imgPhoto').attr("src", getAppServletURL() + '?Cmd=GET-CONTACT&Options=PHOTO&ID=' + sId + '&TD=' + (new Date()).getTime() + '&ME_VALIDATIONTOKEN=' + getTopAppWindow().g_opt['ME_VALIDATIONTOKEN']);
	                        $('#uploader').hide();
	                    },
	                    processData: false
	                })
	            }
	            else {
	                alert('no support');
	            }
            });


            $('#mailboxTwoFactorAddressType').change(function() {
                TwoFactorType_Changed(this.value); 
            });

        });

        function browserResize() {
   		    dialogResize();           
            var html_h = document.body.offsetHeight;
            var foot_h = document.getElementById('popupWin_foot_bttns_js').clientHeight;
            var tab_head_h = 0;
            var footer_h = 20;
            var inputList = document.getElementById('popupWin_content_scroll_js').clientHeight;

            if (isIE7 == true) {
                var padding = 40 + 20;
            } else {
                var padding = 35;
            }

            var resize_h = html_h - foot_h - tab_head_h - padding;
            resize_h = resize_h-footer_h;
            if (resize_h < 0) 
            {
                resize_h = 0;
            }
            document.getElementById('popupWin_content_scroll_js').style.height = resize_h + "px";
        }


        function DisableQuota() {
            if (document.getElementById('txtMailboxLimit')) {
                document.getElementById('txtMailboxLimit').disabled = true;
            }
        }

        function ChkRedirect_Changed() {
            if ($('#chkRedirect').is(":checked")) {
                $("#chkKeepCopy").parent('.ME_input_text').removeAttr("disabled");
                $("#chkKeepCopy").removeAttr("disabled");
            }
            else
            {
                $("#chkKeepCopy").parent().attr("disabled", true);
                $("#chkKeepCopy").parent('.ME_input_text').attr("disabled", true);
            }
        }

        function EnableQuota() {
            if (document.getElementById('txtMailboxLimit')) {
                document.getElementById('txtMailboxLimit').disabled = false;
            }
        }

        window.onresize = function() {
            browserResize();
        }
        
	    function TestPassword() {

	        var sPass = document.getElementById('txtPassword').value;

	        document.getElementById('PasswordStrengthMeter').style.display = sPass.length == 0 ? 'none' : '';
	        
	        var hasupper = sPass.match(/[A-Z]/) ? 1 : 0;
	        var haslower = sPass.match(/[a-z]/) ? 1 : 0;
	        var hasnumber = sPass.match(/[0-9]/) ? 1 : 0;
	        var hassymbol = sPass.match(/[\x21-\x2F\x3A-\x40\x5B-\x60\x7B-\x7E]/) ? 1 : 0;
	        var hasmix = (hasupper && haslower) ? 1 : 0;
	        var strength = hasupper + haslower + hassymbol + hasnumber + hasmix;

	        if (sPass.length > 7) {
	            strength++;
	        }

	        var oS = document.getElementById('strength');

            oS.className = 'options_password_bar ';
            oS.innerHTML = '&nbsp;&nbsp; ';

	        switch (strength) {
                case 0:
                case 1:
	                oS.className += 'pw_very_weak';
	                oS.innerHTML += t_('[ME_TXT-VeryWeak]');
	                break;
	            case 2:
	                oS.className += 'pw_weak';
	                oS.innerHTML += t_('[ME_TXT-Weak]');
	                break;
	            case 3:
	                oS.className += 'pw_medium';
	                oS.innerHTML += t_('[ME_TXT-Medium]');
	                break;
	            case 4:
	                oS.className += 'pw_average';
	                oS.innerHTML += t_('[ME_TXT-Average]');
	                break;
	            case 5:
	                oS.className += 'pw_strong';
	                oS.innerHTML += t_('[ME_TXT-Strong]');
	                break;
	            default:
	                oS.className += 'pw_very_strong';
	                oS.innerHTML += t_('[ME_TXT-VeryStrong]');
	                break;
	        }
	      }

	      function PageLoad()
	      {
	        TestPassword();
	        browserResize();
	      }
	</script>
	<!--[if lte IE 7]>
    <script type="text/javascript">
        var isIE7 = true;
    </script>
    <![endif]-->
</head>
	
<body class="popupWin_body_bg" onload="PageLoad()">

  <div class="popupWin_content_body">
    <div class="popupWin_content_body_inner">
      <div class="popupWin_content_shell">      
        <div id="uploader" style="position:absolute; top:200px;left:200px;">
            <form id="fmUpload" name="fileupload" enctype="multipart/form-data" action="">
            <input id="file" name="file" type="file" style="display: none;" />
            </form>
        </div>
        <form id="frmUserDetails" runat="server"><%MailEnable.Utilities.WriteFormValidationField(Response, Session.SessionID, Session.Item("ME_VALIDATIONTOKEN"))%>

		  <div class="popupWin_tab_body_shell">
		    <!-- Tab Buttons -->
            <div id="TabContainer" class="ME_Tab_table_outter">
                <div class="ME_Tab_table_shell">
                <table class="ME_Tab_table" border="0" cellpadding="0" cellspacing="0">
	                <tr>
		            <th><span id="tab1" class="ME_Tab_button"><%=uscToken.GetText("[ME_TXT-Login]")%></span></th>
		            <th><span id="tab2" class="ME_Tab_button"><%=uscToken.GetText("[ME_TXT-Mailbox]")%></span></th>
<%If AllowDirectoryEditing Then%>
		            <th><span id="tab3" class="ME_Tab_button"><%=uscToken.GetText("[ME_TXT-Other]")%></span></th>
<%End If %>
<%If AllowUserAuditLog() Then%>
		            <th><span id="tab4" class="ME_Tab_button"><%=uscToken.GetText("[ME_TXT-Audit Log]")%></span></th>
<%End If %>
<%If AllowUserServices() Then%>
		            <th><span id="tab5" class="ME_Tab_button"><%=uscToken.GetText("[ME_TXT-Services]")%></span></th>
<%End If %>
<%If bPublicFolders Then%>
		            <th><span id="tab6" class="ME_Tab_button"><%=uscToken.GetText("[ME_TXT-PublicFolders]")%></span></th>
<%End If %>

	                </tr>
	            </table>
                </div><!-- ME_Tab_table_shell -->
            </div><!-- ME_Tab_table_outter -->

		    <div class="popupWin_content_scroll_tab" id="popupWin_content_scroll_js">
		      <div class="popupWin_content_scroll_tab_inner">

    		<asp:Literal ID="litMessage" Runat="server"></asp:Literal>
            <!-- Login Details -->		    
	        <div id="tab1_body" class="ME_Tab_shell">	<!--START TAB 1-->
			    
			    <table class="options_form_table" border="0" cellpadding="0" cellspacing="0" >
			        <tr>
			            <td colspan="2">
			              <div class="options_form_description">
			                <asp:Literal ID="liDescriptionRow" Runat="server"></asp:Literal>  
			              </div>
			            </td>
			        </tr>

				    <tr>
					    <td class="options_form_table_minWidth"><div class="options_form_label"><%=uscToken.GetText("[ME_TXT-Login]")%>:</div></td>
					    <td><asp:textbox class="textfield" id="txtLogin" Width="100" Runat="server"></asp:textbox>&nbsp;<asp:label id="lblPostoffice" Runat="server" style="color:#333;"></asp:label></td>

                        <%If AllowPhoto Then %>
                        <!--BEGIN CONTACT -->
                            <td class="contacts_img_td" rowspan="7">
                            <div class="contacts_img_shell" onmouseover="ContactsImgClose_show();" onmouseout="ContactsImgClose_hide();" onselectstart="return false;">
                                <div style="display:table-cell;vertical-align:middle;text-align:center;height:125px;width:125px;" onselectstart="return false;">
                                    <img alt="<%=uscToken.GetText("[ME_TXT-ContactPicture]")%>" align="middle" id="imgPhoto" src="<%=ImageURL%>" style="max-width:125px;max-height:125px;width:expression(this.width>125?'125px':true);height:expression(this.height>125?'125px':true);" onselectstart="return false;"/>
                                </div>
                                <!-- <div class="contacts_img_close" title="<%=uscToken.GetText("[ME_TXT-RemoveImage]")%>" onselectstart="return false;"></div>-->
                            </div>
                            <!-- Add Image Button -->	
                            <div id="btn_Edit" class="bttn_float_right" onclick="document.getElementById('file').click();" style="margin-top:3px;clear:both;<%=IIf(bAllowPictureEdit,"","display:none;")%>" title="<%=uscToken.GetText("[ME_TXT-Add/EditImage]")%>">
                                <div class="bttn_left" onselectstart="return false;"><div class="compose_bttn_okCancel" style="width:114px;_width:110px;"><%=uscToken.GetText("[ME_TXT-Add/EditImage]")%>...</div></div>
                                <div class="bttn_right"></div>
                            </div>      
                            </td>
                        <!--END CONTACT -->
                        <%End If%>
				    </tr>

				    <tr>
					    <td class="options_form_table_minWidth"><div class="options_form_label"><%=uscToken.GetText("[ME_TXT-Password]")%>:</div></td>
					    <td><asp:textbox class="textfield" id="txtPassword" TextMode="Password" Runat="server" onkeyup="TestPassword();" autocomplete="new-password"></asp:textbox></td>
				    </tr>
				    <tr>
					    <td class="options_form_table_minWidth"><div class="options_form_label"><%=uscToken.GetText("[ME_TXT-DisplayName]")%>:</div></td>
					    <td><asp:textbox class="textfield" id="txtDisplayName" Runat="server"></asp:textbox></td>
				    </tr>
				    
				     <tr id="PasswordStrengthMeter" style="display:none;">
                        <td class="options_form_table_label"></td>
                        <td>
						  <!-- Password Strength Check -->
                          <table class="options_form_table" border="0" cellspacing="0" style="width:99%;" cellpadding="0">
                            <tr>
                              <td class="options_form_table_label"><div class="options_form_label" style="color:#333;padding-top:4px;"><%=uscToken.GetText("[ME_TXT-Passwordstrength]")%>:</div></td>
                              <td>
                                <div class="options_password_shell">
                                  <div id="strength" class="options_password_bar pw_very_weak">&nbsp;&nbsp; <%=uscToken.GetText("[ME_TXT-VeryWeak]")%></div>
                                </div>
                              </td>
                            </tr>
                          </table>
                        </td>
                      </tr>
 				    <tr>
					    <td class="options_form_table_minWidth"><div class="options_form_label"><%=uscToken.GetText("[ME_TXT-Rights]")%>:</div></td>
					    <td><asp:dropdownlist id="ddlRights" Runat="server"></asp:dropdownlist></td>
				    </tr>


				    <tr><td colspan="2"><div class="options_form_gap"></div></td></tr>
				    <tr>
					    <td class="options_form_table_minWidth"><div class="options_form_label"><%=uscToken.GetText("[ME_TXT-UserMustChangePassword]")%>:</div></td>
					    <td><%=RenderSetting("mailboxMustChangePassword", Params, False)%></td>
				    </tr>                   

                            
				    <tr><td colspan="2"><div class="options_form_gap"></div></td></tr>
				    <tr>
					    <td class="options_form_table_minWidth"><div class="options_form_label"><%=uscToken.GetText("[ME_TXT-Status]")%>:</div></td>
					    <td><asp:checkbox id="chkEnabled" Runat="server"></asp:checkbox></td>
				    </tr>                   
                    <%If Locked Then%>
                    <tr>
	                    <td colspan="2" align="right" style="text-align: right;"><button id="btnUnlock" class="ME_Button">Unlock</button></td>
                    </tr>                                            
                    <%End If %>
 				    <tr>                    
					    <td class="options_form_table_minWidth"><div class="options_form_label"><%=uscToken.GetText("[ME_TXT-CurrentSize]")%>:</div></td>
					    <td><%=RenderSetting("mailboxSizeUsage", Params,False)%></td>
				    </tr>                            
                    <tr><td colspan="2"><div class="options_form_gap"></div></td></tr>
                    <%If MailEnable.Features.FeatureIsAdvertised("Directory", Session) Then%>
 				    <tr>
					    <td class="options_form_table_minWidth"><div class="options_form_label">Publish in Global Directory:</div></td>
					    <td><%=RenderSetting("mailboxPublish", Params,False)%></td>
				    </tr>                            
				    <tr><td colspan="2"><div class="options_form_gap"></div></td></tr>
                    <%End If%>
                    <%If MailEnable.Features.IsProfessionalOrGreaterInstalled() And (MailEnable.Administration.GetProductVersion >= 10) Then %>
 				    <tr>
					    <td class="options_form_table_minWidth"><div class="options_form_label">Chat Roster Groups (Comma Delimited):</div></td>
					    <td><%=RenderSetting("mailboxGroups", Params,False)%></td>
				    </tr>                            
				    <tr><td colspan="2"><div class="options_form_gap"></div></td></tr>
                    <%End If%>

                    </table>


                    <%If AllowTwoFactorAuthentication() Then%>
			        <table class="options_form_table" border="0" cellpadding="0" cellspacing="0" >
                    <tr>
 	                    <td colspan="2">
	                    <div class="options_form_description">
		                    <h2>Two Factor Authentication</h2>
	                    </div>
	                    </td>
                    </tr>
                    <tr>
	                    <td class="options_form_table_minWidth"><div class="options_form_label">Challenge:</div></td>
	                    <td><%=RenderSetting("mailboxTwoFactorModel", Params, False)%></td>
                    </tr>
                    <tr>
                        <td class="options_form_table_minWidth"><div class="options_form_label">Address Type:</div></td>
                        <td><%=RenderSetting("mailboxTwoFactorAddressType", Params,False)%></td>
                    </tr>
                    <tr id="TwoFactorAddressFields">
	                    <td class="options_form_table_minWidth"><div id="TwoFactorAddress_Label" class="options_form_label">Address:</div></td>
                        <td><%=RenderSetting("mailboxTwoFactorAddress", Params,False)%></td>
                    </tr>
                    <tr id="TwoFactorQRFields" style="display:none">
	                    <td class="options_form_table_minWidth"><div id="TwoFactorAddress_QRCodeLabel" class="options_form_label">QR Code:</div></td>
	                    <td><%=RenderSetting("mailboxTwoFactorQRCode", Params,False)%></td>
                    </tr>
                    <tr>
	                    <td colspan="2" align="right" style="text-align: right;"><button id="btnClearExceptions" class="ME_Button" <%=GetDisabledAttribute()%>>Reset</button></td>
                    </tr>
                    </table>
                    <%End If %>
            </div> <!--END TAB 1-->
			  	        
			  	        
                    
            <!--End Login Details -->

            <!--Mailbox Details -->
	        <div id="tab2_body" class="ME_Tab_shell">	<!--START TAB 2-->                
                <div id="content_top_js">
	                <table class="options_form_table" border="0" cellpadding="0" cellspacing="0">
	                <tr>
		                <td colspan="2">
		                <div class="options_form_description">
			                <asp:literal id="litError" Runat="server"></asp:literal>
		                </div>
		                </td>
	                </tr>
	                <tr style="display: none;">
		                <td class="options_form_table_minWidth"><div class="options_form_label"><%=uscToken.GetText("[ME_TXT-Login]")%>:</div></td>
		                <td><asp:label id="lblLoginID" Runat="server" style="color:#333;"></asp:label></td>
	                </tr>
	                <tr style="display: none;">
		                <td class="options_form_table_minWidth"><div class="options_form_label"><%=uscToken.GetText("[ME_TXT-MailboxID]")%>:</div></td>
		                <td><asp:label id="lblMailboxID" Runat="server" style="color:#333;"></asp:label></td>
	                </tr>
 				    <tr><td colspan="2"><div class="options_form_gap"></div></td></tr>
	                <tr>
		                <td class="options_form_table_minWidth"><div class="options_form_label"><%=uscToken.GetText("[ME_TXT-CurrentSize]")%>:</div></td>
		                <td><asp:label id="lblCurrentSize" Runat="server" style="color:#333;"></asp:label></td>
	                </tr>
	                <tr>
		                <td class="options_form_table_minWidth" style="vertical-align:top;"><div class="options_form_label"><%=uscToken.GetText("[ME_TXT-Quota]")%>:</div></td>
		                <td style="vertical-align:top;">
			                <table class="control_layout_table" border="0" cellpadding="0" cellspacing="0">
			                <tr>
				                <td class="options_form_table_minWidth"><asp:radiobutton id="rdbQuota" class="ME_input_text" Runat="server" GroupName="quotaRadio" onclick="EnableQuota()"></asp:radiobutton>&nbsp;&nbsp;</td>
				                <td><asp:textbox class="textfield" id="txtMailboxLimit" Runat="server" Width="81"></asp:textbox>&nbsp;KB</td>
			                </tr>
			                <tr>
				                <td class="options_form_table_minWidth"><asp:radiobutton id="rdbUnlimited" class="ME_input_text" Runat="server" GroupName="quotaRadio" onclick="DisableQuota()"></asp:radiobutton></td>
				                <td></td>
			                </tr>
			                </table>
		                </td>
	                </tr>
                    <tr><td colspan="2"><div class="options_form_gap"></div></td></tr>
                    <tr>
		                <td class="options_form_table_minWidth"><div class="options_form_label"><%=uscToken.GetText("[ME_TXT-Status]")%>:</div></td>
		                <td><asp:checkbox id="chkMailboxEnabled" Runat="server"></asp:checkbox></td>
	                </tr>
                    <tr>
		                <td colspan="2"><div class="options_form_gap"></div></td>
	                </tr>
	                <tr>
		                <td colspan="2">
			                <table class="options_form_table" border="0" cellpadding="0" cellspacing="0">
			                <tr>
				                <td class="options_form_table_minWidth">
				                <asp:checkbox id="chkRedirect" class="ME_input_text" Runat="server"></asp:checkbox>&nbsp;&nbsp;
				                </td>
				                <td><asp:textbox class="textfield" id="txtRedirectAddress" Runat="server"></asp:textbox></td>
			                </tr>
			                </table>
		                </td>
	                </tr>
	                <tr>
		                <td colspan="2"><asp:checkbox id="chkKeepCopy" class="ME_input_text" Runat="server"></asp:checkbox></td>
	                </tr>
	                </table>
                </div><!-- END of content_top_js -->
                <br />
                <table class="options_form_table" border="0" cellpadding="0" cellspacing="0">
                <tr>
	                <td><h2><%=uscToken.GetText("[ME_TXT-Addresses]")%>:</h2></td>
                </tr>
                <tr>
	                <td><asp:listbox id="lbxAddresses" Runat="server" Height="80" Width="100%"></asp:listbox></td>
                </tr>
                <tr>
	                <td class="options_form_table_minWidth" style="width:100%;">
	                <asp:table id="tblEditButtons" cssClass="popupWin_listTable" Runat="server" width="100%">
		                <asp:TableRow>
			                <asp:TableCell>
				                <asp:Button ID="btnAddAddress" Runat="server" CssClass="ME_Button" Style="width:130px;cursor:pointer"></asp:Button>
				                <asp:Button ID="btnEditAddress" Runat="server" CssClass="ME_Button" Style="width:130px;cursor:pointer"></asp:Button>
				                <asp:Button ID="btnDeleteAddress" Runat="server" CssClass="ME_Button" Style="width:130px;cursor:pointer"></asp:Button>
			                </asp:TableCell>
		                </asp:TableRow>
	                </asp:table>
	                </td>
                </tr>
                </table>
            </div> <!--END TAB 2-->
            <!-- End Mailbox Details -->
<%If AllowDirectoryEditing Then%>
            <!--Personal Details -->
            <div id="tab3_body" class="ME_Tab_shell"><!--START TAB 3--> 
            <uc3:uscContactPersonalDetails id="uscContactPersonalDetails" runat="server"></uc3:uscContactPersonalDetails>
            </div> <!--END TAB 3-->
            <!-- End Personal Details -->
<%End If%>

<%If AllowUserAuditLog() Then%>
          <!--Mailbox Details -->
	        <div id="tab4_body" class="ME_Tab_shell">	<!--START TAB 4--> 
 		        <table class="options_form_table" border="0" cellpadding="0" cellspacing="0">
                <tr>
                    <td class="options_form_table_minWidth"><div class="options_form_label"><%=uscToken.GetText("[ME_TXT-Displaylogsfrom]")%>:</div></td>
                    <td>
                        <asp:DropDownList runat="server" class="select" ID="optEventsDay" style="width:auto;"></asp:DropDownList>
                    </td>
                </tr>
                </table>
                <div id="table-container" style="border:1px solid black" class="sysListTable_shell"></div>
            </div> <!--END TAB 4-->
            <!-- End Mailbox Details -->
<%End If%>


<%If AllowUserServices() Then%>
          <!--Mailbox Details -->
	        <div id="tab5_body" class="ME_Tab_shell">	<!--START TAB 5--> 
 		        <table class="options_form_table" border="0" cellpadding="0" cellspacing="0">
                <tr>                
                    <%=RenderSetting("mailboxSMTP", Params)%>
                    <%=RenderSetting("mailboxPOP", Params)%>
                    <%=RenderSetting("mailboxHTTPMail", Params)%>
                    <%=RenderSetting("mailboxWebMail", Params)%>
                    <%=RenderSetting("mailboxIMAP", Params)%>
                    <%=RenderSetting("mailboxMAPI", Params)%>
                    <%=RenderSetting("mailboxActiveSync", Params)%>
                    <%=RenderSetting("mailboxChatStatus", Params)%>
                </tr>
                </table>
            </div> <!--END TAB 5->
            <!-- End Mailbox Details -->
<%End If%>

                  
<%If bPublicFolders Then%>
          <!--Mailbox Details -->
	        <div id="tab6_body" class="ME_Tab_shell">	<!--START TAB 6--> 
 		        <table class="options_form_table" border="0" cellpadding="0" cellspacing="0">
                <tr>                
                    <%=RenderSetting("mailboxWebMail-Public-Folders-Modification-Permitted", Params)%>
                
                </tr>
                </table>
            </div> <!--END TAB 5->
            <!-- End Mailbox Details -->
<%End If%>


			  </div><!-- popupWIn_content_scroll_tab_inner -->
			</div><!-- popupWin_content_scroll_tab -->


	        <div class="popupWin_tab_foot" id="popupWin_foot_bttns_js">
			   <asp:Button ID="btnAction" Runat="server" Style="width:80px;cursor:pointer" CssClass="ME_Button"></asp:Button>&nbsp;<asp:Button ID="btnCancel" Runat="server" Style="width:80px;cursor:pointer" CssClass="ME_Button"></asp:Button>
			</div>
			
	      </div><!-- popupWin_tab_body_shell -->
		</form>
	
	  </div><!-- popupWin_content_shell -->
    </div><!-- popupWin_content_body_inner -->
  </div><!-- popupWin_content_body -->

</body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit