PATH:
home
/
letacommog
/
crmleta
/
layouts
/
vlayout
/
modules
/
MailManager
{*+********************************************************************************** * The contents of this file are subject to the vtiger CRM Public License Version 1.1 * ("License"); You may not use this file except in compliance with the License * The Original Code is: vtiger CRM Open Source * The Initial Developer of the Original Code is vtiger. * Portions created by vtiger are Copyright (C) vtiger. * All Rights Reserved. ************************************************************************************} <div class="editViewContainer"> <form action="javascript:void(0);" method="POST" id="EditView"> <div class="widget_header row-fluid"> <h3>{vtranslate('JSLBL_Settings',$MODULE)}</h3> </div> <hr> <table class="table table-bordered blockContainer showInlineTable"> <tbody> <tr> <th class="blockHeader" colspan="4"> <span class="font-x-large">{vtranslate('LBL_CREATE_MAILBOX', $MODULE)}</span> </th> </tr> <tr> <td class="fieldLabel"> <label class="muted pull-right marginRight10px">{vtranslate('LBL_SELECT_ACCOUNT_TYPE',$MODULE)}</label> </td> <td class="fieldValue narrowWidthType" style="width: 70%;"> <select id="_mbox_helper" class="small" onchange="MailManager.handle_settings_confighelper(this);"> <option value=''>{vtranslate('JSLBL_Choose_Server_Type',$MODULE)}</option> <option value='gmail' {if $SERVERNAME eq 'gmail'} selected {/if}>{vtranslate('JSLBL_Gmail',$MODULE)}</option> <option value='yahoo' {if $SERVERNAME eq 'yahoo'} selected {/if}>{vtranslate('JSLBL_Yahoo',$MODULE)}</option> <option value='fastmail' {if $SERVERNAME eq 'fastmail'} selected {/if}>{vtranslate('JSLBL_Fastmail',$MODULE)}</option> <option value='other' {if $SERVERNAME eq 'other'} selected {/if}>{vtranslate('JSLBL_Other',$MODULE)}</option> </select> </td> </tr> </tbody> </table> <div id="settings_details" {if $SERVERNAME neq ''} style="display:block;" {else} style="display:none;"{/if}> <table class="table table-bordered blockContainer showInlineTable"> <tbody> <tr> <td class="fieldLabel " nowrap> <label class="muted pull-right marginRight10px"><font color="red">*</font>{vtranslate('LBL_Mail_Server',$MODULE)}</label> </td> <td class="fieldValue narrowWidthType" nowrap style="width: 70%;"> <input name="_mbox_server" value="{$MAILBOX->server()}" data-validation-engine="validate[required]]" type="text" style="width: 60%" class="detailedViewTextBox" onblur="this.className='detailedViewTextBox'" onfocus="this.className='detailedViewTextBoxOn'"> <span class="mm_blur">{vtranslate('LBL_Like',$MODULE)}, mail.company.com or 192.168.10.20</span> </td> </tr> <tr> <td class="fieldLabel " nowrap> <label class="muted pull-right marginRight10px"><font color="red">*</font>{vtranslate('LBL_Username',$MODULE)}</label> </td> <td class="fieldValue narrowWidthType" nowrap> <input name="_mbox_user" id="_mbox_user" value="{$MAILBOX->username()}" type="text" style="width: 60%" class="detailedViewTextBox" onblur="this.className='detailedViewTextBox'" onfocus="this.className='detailedViewTextBoxOn'"> <span class="mm_blur">{vtranslate('LBL_Your_Mailbox_Account',$MODULE)}</span> </td> </tr> <tr> <td class="fieldLabel " nowrap> <label class="muted pull-right marginRight10px"><font color="red">*</font>{vtranslate('LBL_Password',$MODULE)}</label> </td> <td class="fieldValue narrowWidthType" nowrap> <input name="_mbox_pwd" id="_mbox_pwd" value="{$MAILBOX->password()}" type="password" style="width: 60%" class="detailedViewTextBox" onblur="this.className='detailedViewTextBox'" onfocus="this.className='detailedViewTextBoxOn'"> <span class="mm_blur">{vtranslate('LBL_Account_Password',$MODULE)}</span> </td> </tr> </tbody> </table> <div id="additional_settings" {if $SERVERNAME eq 'other'} style="display:block;"{else} style="display:none;" {/if}> <table class="table table-bordered blockContainer showInlineTable"> <tr> <td class="fieldLabel " nowrap> <label class="muted pull-right marginRight10px">{vtranslate('LBL_Protocol',$MODULE)}</label> </td> <td class="fieldValue narrowWidthType" nowrap style="width: 70%;">{$MAILBOX->protocol()} {var_dump($MAILBOX->protocol())} <input type="radio" name="_mbox_protocol" value="IMAP2" {if strcasecmp($MAILBOX->protocol(), 'imap2')===0}checked=true{/if}> {vtranslate('LBL_Imap2',$MODULE)} <input type="radio" name="_mbox_protocol" value="IMAP4" {if strcasecmp($MAILBOX->protocol(), 'imap4')===0}checked=true{/if}> {vtranslate('LBL_Imap4',$MODULE)} </td> </tr> <tr> <td class="fieldLabel " nowrap> <label class="muted pull-right marginRight10px">{vtranslate('LBL_SSL_Options',$MODULE)}</label> </td> <td class="fieldValue narrowWidthType" nowrap> <input type="radio" name="_mbox_ssltype" value="notls" {if strcasecmp($MAILBOX->ssltype(), 'notls')===0}checked=true{/if}> {vtranslate('LBL_No_TLS',$MODULE)} <input type="radio" name="_mbox_ssltype" value="tls" {if strcasecmp($MAILBOX->ssltype(), 'tls')===0}checked=true{/if}> {vtranslate('LBL_TLS',$MODULE)} <input type="radio" name="_mbox_ssltype" value="ssl" {if strcasecmp($MAILBOX->ssltype(), 'ssl')===0}checked=true{/if}> {vtranslate('LBL_SSL',$MODULE)} </td> </tr> <tr> <td class="fieldLabel " nowrap> <label class="muted pull-right marginRight10px">{vtranslate('LBL_Certificate_Validations',$MODULE)}</label> </td> <td class="fieldValue narrowWidthType" nowrap> <input type="radio" name="_mbox_certvalidate" value="validate-cert" {if strcasecmp($MAILBOX->certvalidate(), 'validate-cert')===0}checked=true{/if} > {vtranslate('LBL_Validate_Cert',$MODULE)} <input type="radio" name="_mbox_certvalidate" value="novalidate-cert" {if strcasecmp($MAILBOX->certvalidate(), 'novalidate-cert')===0}checked=true{/if}> {vtranslate('LBL_Do_Not_Validate_Cert',$MODULE)} </td> </tr> </table> </div> <table class="table table-bordered blockContainer showInlineTable"> <tr> <td class="fieldLabel " nowrap> <label class="muted pull-right marginRight10px">{vtranslate('LBL_REFRESH_TIME',$MODULE)}</label> </td> <td class="fieldValue narrowWidthType" nowrap style="width: 70%;"> <select name="_mbox_refresh_timeout"> <option value="" {if $MAILBOX->refreshTimeOut() eq ''}selected{/if}>{vtranslate('LBL_NONE',$MODULE)}</option> <option value="300000" {if strcasecmp($MAILBOX->refreshTimeOut(), '300000')==0}selected{/if}>{vtranslate('LBL_5_MIN',$MODULE)}</option> <option value="600000" {if strcasecmp($MAILBOX->refreshTimeOut(), '600000')==0}selected{/if}>{vtranslate('LBL_10_MIN',$MODULE)}</option> </select> </td> </tr> <tr> <td width="15%"> </td> <td colspan=3> <button class="btn btn-success" onclick="MailManager.save_settings(this.form);">{vtranslate('LBL_SAVE_BUTTON_LABEL',$MODULE)}</button> {if $MAILBOX && $MAILBOX->exists()} <button class="btn btn-danger" onclick="MailManager.remove_settings(this.form);">{vtranslate('LBL_Remove',$MODULE)}</button> <a href="javascript:;" class="cancelLink" onclick="MailManager.close_settings();">{vtranslate('LBL_CANCEL_BUTTON_LABEL',$MODULE)}</button> {/if} </td> </tr> </table> </form> </div>
[+]
..
[-] index.tpl
[edit]
[-] IndexPostProcess.tpl
[edit]
[-] Relationship.tpl
[edit]
[-] MainuiQuickLinks.tpl
[edit]
[-] Settings.tpl
[edit]
[-] IndexViewPreProcess.tpl
[edit]
[-] MailManagerCommentWidget.tpl
[edit]
[+]
resources
[-] MailOpen.tpl
[edit]
[-] Mainui.tpl
[edit]
[-] FolderOpen.tpl
[edit]
[-] SettingsDetail.tpl
[edit]
[-] FolderList.tpl
[edit]
[-] SettingsEdit.tpl
[edit]
[-] FolderDrafts.tpl
[edit]