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_edit_email_autoresponder_theme(){ global $user, $globals, $theme, $WE, $error, $done, $domain_list, $domain_name, $email_auto_list, $euser, $allowed_charsets; echo ' <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css"> <script src="https://cdn.jsdelivr.net/npm/flatpickr"></script> <div class="card soft-card p-4 col-12 col-md-10 col-lg-5 mx-auto">'; if($globals['DISABLE_EMAIL'] || $globals['DISABLE_EMAILADD']){ echo ' <div class="alert alert-danger text-center p-2"> <i class="fas fa-ban me-2"></i>'.__('You do not have permission to access this page').'</center> </div>'; }else{ echo ' <style> .custom-radio{ color: blue; } .custom-radio:hover{ text-decoration: underline; } </style> <div class="sai_main_head mb-4"> <img src="'.EXIM_ASSETS.'auto-reply.png" alt="" class="webu_head_img me-2"/> <h5 class="d-inline-block">'.__('Edit Email Autoresponder').'</h5> </div> <form accept-charset="'.$globals['charset'].'" action="" method="post" name="eeAutoResp" id="eeAutoResp_edit" class="form-horizontal" onsubmit="return submitit(this)" data-donereload=1> <label for="email" class="sai_head">'.__('Select Encoding').'</label> <div class="row"> <div class="col-12 mb-2"> <select class="form-control form-select" name="charset" id="charset" >'; $selected_charset = (!empty($email_auto_list[$euser]['autoreply_charset']) ? $email_auto_list[$euser]['autoreply_charset'] : 'UTF-8'); foreach ($allowed_charsets as $charset){ echo ' <option value="'.$charset.'" '.($selected_charset == $charset ? 'selected = "selected"' : '').'>'.$charset.'</option>'; } echo ' </select> </div> </div> <label class="sai_head" for="login_name">'.__('Email').'</label> <input type="text" disabled name="login_name" id="login_name" class="form-control mb-4" value="'.$euser.'@'.$domain_name.'" /> <label class="sai_head" for="mail_subject">'.__('Email Subject').'</label> <input type="text" class="form-control mb-4" name="mail_subject" id="mail_subject" size="2" value="'.POSTval('mail_subject', $email_auto_list[$euser]['autoreply_subject']).'" /> <label class="sai_head" for="mail_body">'.__ ('Email Body').'</label> <textarea name="mail_body" id="mail_body" class="form-control mb-4" rows="10" cols="70">'.POSTval('mail_body', $email_auto_list[$euser]['autoreply_content']).'</textarea> <div> <label for="start" class="sai_head" id="type">'.__('Start date').'</label> <div class=""> <input type="radio" id="start_date_time" name="start_date_time" '.(empty($email_auto_list[$euser]['autoreply_starttime'])? 'checked' : '').' value="current"> <label for="start_date_time">Immediately</label></br> <label> <input type="radio" value="custom" name="start_date_time" '.(!empty($email_auto_list[$euser]['autoreply_starttime'])? 'checked' : '').' onclick="show_custom_date(\'start\')"> <span class="custom-radio" id="custom_start">'.(!empty($email_auto_list[$euser]['autoreply_starttime']) ? date('Y-m-d\TH:i', strtotime($email_auto_list[$euser]['autoreply_starttime'])) : 'Custom').'</span> </label> <input type="datetime-local" class="form-control" name="start_date" id="start_date" value="'.(!empty($email_auto_list[$euser]['autoreply_starttime']) ? date('Y-m-d\TH:i', strtotime($email_auto_list[$euser]['autoreply_starttime'])) : date("Y-m-d\TH:i")).'" onchange="update_custom_time(\'start\')" style="display: none;"> </div> </div> <div> <label for="stop" class="sai_head mt-2" id="type">'.__('Stop date').'</label> <div class=""> <input type="radio" id="stop_date_time" name="stop_date_time" '.(empty($email_auto_list[$euser]['autoreply_stoptime']) ? 'checked' : '').' value="never"> <label for="stop_date_time">Never</label></br> <label> <input type="radio" '.(!empty($email_auto_list[$euser]['autoreply_stoptime']) ? 'checked' : '').' name="stop_date_time" value="custom" onclick="show_custom_date(\'stop\')"> <span class="custom-radio" id="custom_stop">'.(!empty($email_auto_list[$euser]['autoreply_stoptime']) ? date('Y-m-d\TH:i', strtotime($email_auto_list[$euser]['autoreply_stoptime'])): 'Custom').'</span> </label> <input type="datetime-local" class="form-control" name="stop_date" id="stop_date" value="'.(!empty($email_auto_list[$euser]['autoreply_stoptime']) ? date('Y-m-d\TH:i', strtotime($email_auto_list[$euser]['autoreply_stoptime'])) : date("Y-m-d\TH:i")).'" onchange="update_custom_time(\'stop\')" style="display: none;"> </div> </div> <div class="text-center"> <input type="submit" style="cursor:pointer" value="'.__('Edit Autoresponder').'" name="edit" class="flat-butt me-2 mt-3" id="submiteeautores" /> </div> </form> </div>'; } echo ' <script language="javascript" type="text/javascript"> document.addEventListener("DOMContentLoaded", function() { flatpickr("#start_date,#stop_date", { enableTime: true, dateFormat: "Y-m-d\\TH:i", minuteIncrement: 1 }); }); function update_custom_time(action){ if(action == "start"){ $("#custom_start").html($("#start_date").val()); $("#start_date").hide(); }else{ $("#custom_stop").html($("#stop_date").val()); $("#stop_date").hide(); } } function show_custom_date(action){ if(action == "start"){ $("#start_date").show(); $("#custom_start").html($("#start_date").val()); }else{ $("#stop_date").show(); $("#custom_stop").html($("#stop_date").val()); } } </script>'; }