Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
apps /
exim /
themes /
enduser /
Delete
Unzip
Name
Size
Permission
Date
Action
add_email_account_theme.php
12.54
KB
-rw-r--r--
2025-11-17 07:49
add_email_autoresponder_theme.php
11.93
KB
-rw-r--r--
2025-01-13 08:52
address_importer_theme.php
6.47
KB
-rw-r--r--
2024-05-02 06:56
boxtrapper_theme.php
25.58
KB
-rw-r--r--
2024-04-30 09:23
configure_greylisting_theme.php
6.45
KB
-rw-r--r--
2024-04-17 09:30
create_email_filter_theme.php
20.91
KB
-rw-r--r--
2025-01-13 08:52
default_address_theme.php
4.9
KB
-rw-r--r--
2024-05-02 06:10
edit_email_autoresponder_theme.php
6.17
KB
-rw-r--r--
2025-01-13 08:52
email_account_theme.php
11.13
KB
-rw-r--r--
2026-01-22 06:40
email_deliverability_theme.php
23.14
KB
-rw-r--r--
2025-08-13 08:32
email_filter_theme.php
6.64
KB
-rw-r--r--
2024-05-02 06:56
email_forward_theme.php
10.1
KB
-rw-r--r--
2025-03-28 03:34
email_queue_theme.php
4.32
KB
-rw-r--r--
2024-05-02 06:10
email_relayers_theme.php
4.11
KB
-rw-r--r--
2024-05-02 06:10
email_router_theme.php
5.93
KB
-rw-r--r--
2024-05-02 06:10
email_sent_summary_theme.php
5.02
KB
-rw-r--r--
2024-05-02 06:10
email_settings_theme.php
2.32
KB
-rw-r--r--
2023-10-27 04:12
email_split_delivery_theme.php
4.09
KB
-rw-r--r--
2024-04-30 08:12
encryption_theme.php
11.61
KB
-rw-r--r--
2024-05-02 06:10
track_email_delivery_theme.php
17.39
KB
-rw-r--r--
2025-08-29 09:11
Save
Rename
<?php ////////////////////////////////////////////////////////////// //=========================================================== // WEBUZO CONTROL PANEL // Inspired by the DESIRE to be the BEST OF ALL // ---------------------------------------------------------- // Started by: Pulkit // Date: 10th Jan 2009 // Time: 21:00 hrs // Site: https://webuzo.com/ (WEBUZO) // ---------------------------------------------------------- // Please Read the Terms of Use at https://webuzo.com/terms // ---------------------------------------------------------- //=========================================================== // (c) Softaculous Ltd. //=========================================================== ////////////////////////////////////////////////////////////// if(!defined('SOFTACULOUS')){ die('Hacking Attempt'); } function exim_email_split_delivery_theme(){ global $theme, $globals, $l, $langs, $error, $WE, $domains_list, $router; $routing_priority = $router['routing_priority']; $subordinate_host = $router['subordinate_host']; $relay = $router['split_delivery']; echo ' <div class="card soft-card p-3 col-12 col-md-10 col-lg-6 mx-auto" > <div class="sai_main_head"> <img src="'.EXIM_ASSETS.'split-delivery.png" alt="" class="webu_head_img me-2" style="width: 48px;"> <h5 class="d-inline-block">'.__('Email Split Delivery').'</h5> </div> </div> <div class="card soft-card p-4 col-12 col-md-10 col-lg-6 mx-auto mt-4" > <label class="mb-3">'.__('Email Split Delivery allows you to split your delivery of emails. If you have two or more mail server\'s so now you can split you mail delivery within all those by using this feature.').'<br> <b>'.__('NOTE:').'</b> <ul> <li>'.__('{$0}MX Record{$1} must be configured properly to route the mail', ['<a href="index.php?act=mxentry">', '</a>']).'</li> <li>'.__('Your {$0}Email Router{$1} will be set as Local Mail Server by default by us', ['<a href="index.php?act=email_router">', '</a>']).'</li> <li>'.__('Your Default Address for this Domain will not work in case of Subordinate Host').'</li> <li>'.__('You can find a complete guide on this {$0}link{$1}', ['<a href="https://webuzo.com/docs/admin/webuzo-email-split-delivery/" target="_blank">', '</a>']).'</li> </ul> </label> <form accept-charset="'.$globals['charset'].'" method="POST" name="EmailRouter" id="emailrouter" class="form-horizontal" onsubmit="return submitit(this)" data-donereload="1"> <div class="row"> <div class="col-md-8"> <label>'.__('Select Domain').'</label> <select name="domain" id="domain" onchange="changeDomain()" class="form-select">'; foreach ($domains_list as $key => $value) { echo '<option value="'.$key.'" '.REQselect('domain', $key).'>'.$key.'</option>'; } echo ' </select> <br> </div> </div> <div class="pt-2"> <label><input type="checkbox" name="relay" '.(!empty($relay) ? 'checked' : '').'> <b>'.__('Enable Split Delivery').'</b></label> </div> <div class="pt-3"> <label><b>'.__('Is this Server').' :</b></label> <label><input type="radio" name="routing_priority" value="final" '.(!empty($routing_priority) ? (($routing_priority == 'final') ? 'checked' : '') : 'checked').'> '.__('Final Host').'</label> <b>'.__('or').'</b> <label><input type="radio" name="routing_priority" value="subordinate" '.(!empty($routing_priority) ? (($routing_priority == 'subordinate') ? 'checked' : '') : '').'> '.__('Subordinate Host').'</label> </div> <div class="pt-3"> <label class="my-2"><b>'.__('Subordinate Host').'</b> <span class="sai_exp">'.__('Please add proper hostname or MX record of the host with which you are splitting the email').'</span></label><br> <input class="form-control" type="text" name="subordinate_host" value="'.$subordinate_host.'"> </div> <div class="pt-4 text-center"> <input type="submit" name="submit" style="cursor:pointer" value="'.__('Submit').'" class="flat-butt me-2" id="submitdefaultaddress" /> </div> </form> </div> <script> function changeDomain(){ var d = $("#domain").val(); window.location.href = "'.$globals['index'].'act=email_split_delivery&domain="+d; } </script>'; }