Merge branch 'renky/ispconfig3-master'
Conflicts:
interface/web/mail/templates/mail_user_backup_list.htm
36 files modified
2 files added
| | |
| | | MX|{DOMAIN}.|mail.{DOMAIN}.|10|3600 |
| | | TXT|{DOMAIN}.|v=spf1 mx a ~all|0|3600' WHERE `dns_template`.`template_id` = 1; |
| | | |
| | | ALTER TABLE `mail_backup` CHANGE `filesize` `filesize` VARCHAR(20) NOT NULL DEFAULT ''; |
| | | ALTER TABLE `web_backup` CHANGE `filesize` `filesize` VARCHAR(20) NOT NULL DEFAULT ''; |
| | |
| | | `backup_mode` varchar(64) NOT NULL DEFAULT '', |
| | | `tstamp` int(10) unsigned NOT NULL DEFAULT '0', |
| | | `filename` varchar(255) NOT NULL DEFAULT '', |
| | | `filesize` VARCHAR(10) NOT NULL DEFAULT '', |
| | | `filesize` VARCHAR(20) NOT NULL DEFAULT '', |
| | | PRIMARY KEY (`backup_id`) |
| | | ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; |
| | | |
| | |
| | | `backup_mode` varchar(64) NOT NULL DEFAULT '', |
| | | `tstamp` int(10) unsigned NOT NULL DEFAULT '0', |
| | | `filename` varchar(255) NOT NULL DEFAULT '', |
| | | `filesize` VARCHAR(10) NOT NULL DEFAULT '', |
| | | `filesize` VARCHAR(20) NOT NULL DEFAULT '', |
| | | PRIMARY KEY (`backup_id`) |
| | | ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; |
| | | |
| | |
| | | dblist_phpmyadmin_link=y |
| | | phpmyadmin_url=/phpmyadmin |
| | | webftp_url= |
| | | vhost_subdomains=n |
| | | vhost_aliasdomains=n |
| | | client_username_web_check_disabled=n |
| | | backups_include_into_web_quota=n |
| | | reseller_can_use_options=n |
| | | |
| | | |
| | | [tools] |
| | | |
| | | [domains] |
| | |
| | | |
| | | function onShow() { |
| | | global $app; |
| | | |
| | | $app->uses('functions'); |
| | | |
| | | $listTpl = new tpl; |
| | | $listTpl->newTemplate('templates/mail_user_backup_list.htm'); |
| | | |
| | |
| | | if(isset($_GET['backup_action'])) { |
| | | $backup_id = $app->functions->intval($_GET['backup_id']); |
| | | /* |
| | | if($_GET['backup_action'] == 'download' && $backup_id > 0) { |
| | | if($_GET['backup_action'] == 'download_mail' && $backup_id > 0) { |
| | | $sql = "SELECT count(action_id) as number FROM sys_remoteaction WHERE action_state = 'pending' AND action_type = 'backup_download' AND action_param = '$backup_id'"; |
| | | $tmp = $app->db->queryOneRecord($sql); |
| | | if($tmp['number'] == 0) { |
| | |
| | | } |
| | | } |
| | | */ |
| | | if($_GET['backup_action'] == 'restore' && $backup_id > 0) { |
| | | $sql = "SELECT count(action_id) as number FROM sys_remoteaction WHERE action_state = 'pending' AND action_type = 'backup_restore' AND action_param = '$backup_id'"; |
| | | if($_GET['backup_action'] == 'restore_mail' && $backup_id > 0) { |
| | | $sql = "SELECT count(action_id) as number FROM sys_remoteaction WHERE action_state = 'pending' AND action_type = 'backup_restore_mail' AND action_param = '$backup_id'"; |
| | | $tmp = $app->db->queryOneRecord($sql); |
| | | if($tmp['number'] == 0) { |
| | | $message .= $wb['restore_info_txt']; |
| | |
| | | "VALUES (". |
| | | (int)$this->form->dataRecord['server_id'] . ", " . |
| | | time() . ", " . |
| | | "'backup_restore', " . |
| | | "'backup_restore_mail', " . |
| | | "'".$backup_id."', " . |
| | | "'pending', " . |
| | | "''" . |
| | |
| | | $rec["bgcolor"] = $bgcolor; |
| | | $rec['date'] = date($app->lng('conf_format_datetime'),$rec['tstamp']); |
| | | $rec['backup_type'] = $wb[('backup_type_'.$rec['backup_type'])]; |
| | | $rec['filesize'] = $app->functions->formatBytes($rec['filesize']); |
| | | $records_new[] = $rec; |
| | | } |
| | | } |
| | |
| | | // $app->plugin->raiseEvent('mail:mail_user_filter:on_after_delete',$this); |
| | | return $affected_rows; |
| | | } |
| | | |
| | | // Mail backup list function by Dominik Müller, info@profi-webdesign.net |
| | | public function mail_user_backup_list($session_id, $primary_id = null) |
| | | { |
| | | global $app; |
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_user_backup')) { |
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | |
| | | if ($site_id != null) { |
| | | $sql = "SELECT * FROM mail_backup WHERE parent_domain_id = ".$app->functions->intval($site_id); |
| | | } |
| | | else { |
| | | $sql = "SELECT * FROM mail_backup"; |
| | | } |
| | | |
| | | $result = $app->db->queryAllRecords($sql); |
| | | return $result; |
| | | } |
| | | |
| | | // Mail backup restore/download functions by Dominik Müller, info@profi-webdesign.net |
| | | public function mail_user_backup($session_id, $primary_id, $action_type) |
| | | { |
| | | global $app; |
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_user_backup')) { |
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | |
| | | //*Set variables |
| | | $backup_record = $app->db->queryOneRecord("SELECT * FROM `mail_backup` WHERE `backup_id`='$primary_id'"); |
| | | $server_id = $backup_record['server_id']; |
| | | |
| | | //*Set default action state |
| | | $action_state = "pending"; |
| | | $tstamp = time(); |
| | | |
| | | //* Basic validation of variables |
| | | if ($server_id <= 0) { |
| | | $this->server->fault('invalid_backup_id', "Invalid or non existant backup_id $primary_id"); |
| | | return false; |
| | | } |
| | | |
| | | if (/*$action_type != 'backup_download_mail' and*/ $action_type != 'backup_restore_mail') { |
| | | $this->server->fault('invalid_action', "Invalid action_type $action_type"); |
| | | return false; |
| | | } |
| | | |
| | | //* Validate instance |
| | | $instance_record = $app->db->queryOneRecord("SELECT * FROM `sys_remoteaction` WHERE `action_param`='$primary_id' and `action_type`='$action_type' and `action_state`='pending'"); |
| | | if ($instance_record['action_id'] >= 1) { |
| | | $this->server->fault('duplicate_action', "There is already a pending $action_type action"); |
| | | return false; |
| | | } |
| | | |
| | | //* Save the record |
| | | if ($app->db->query("INSERT INTO `sys_remoteaction` SET `server_id` = '$server_id', `tstamp` = '$tstamp', `action_type` = '$action_type', `action_param` = '$primary_id', `action_state` = '$action_state'")) { |
| | | return true; |
| | | } else { |
| | | return false; |
| | | } |
| | | } |
| | | |
| | | //* Get alias details |
| | | public function mail_alias_get($session_id, $primary_id) |
| | |
| | | 'default' => 'n', |
| | | 'value' => array(0 => 'n', 1 => 'y') |
| | | ), |
| | | 'backups_include_into_web_quota' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'CHECKBOX', |
| | | 'default' => 'n', |
| | | 'value' => array(0 => 'n', 1 => 'y') |
| | | ), |
| | | 'reseller_can_use_options' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'CHECKBOX', |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Použití indikátoru zatížení'; |
| | | $wb['f5_to_reload_js_txt'] = 'Pokud vypnete tuto volbu, zřejmě budete muset používat klávesu F5, aby internetový prohlížeč znovu načetl JavaScript knihovny nebo budete muset ručně vyprázdňovat mezipaměť (cache) vašeho internetového prohlížeče.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show Autoresponder tab in Mailbox detail'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show Mail Filter tab in Mailbox detail'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show Custom Rules tab in Mailbox detail'; |
| | |
| | | $wb['f5_to_reload_js_txt'] = 'Wenn Sie den Wert ändern, müssen Sie F5 drücken, damit der Browser die JavaScript Bibliotheken neu lädt, oder Ihren Browser Cache leeren.'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Falsche phpMyAdmin URL'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Deaktiviere die Kunden Benutzernamen Überprüfung für den Begriff <b>web<b>.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Backups in Web Quota hinzuzählen.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Zeige Autoresponder Reiter in E-Mail Kontodetails'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Zeige E-Mail Filter Reiter in E-Mail Kontodetails'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Zeige Benutzerregel Reiter in E-Mail Kontodetails'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Χρήση Load Indicator (ενδεικτή φόρτωσης)'; |
| | | $wb['f5_to_reload_js_txt'] = 'Αν το αλλάξετε, ίσως πρέπει να πατήσετε το F5 για να κάνετε τον φυλλομετρητη να ξαναφορτώσει τις βιβλιοθήκες JavaScript ή να αδείασετε την cache του φυλλομετρητή.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Απενεργοποίηση ελέγχου στο όνομα χρήστη για την λέξη \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Εμφάνιση της καρτέλας Αυτόματης Απάντησης στις λεπτομέρειες του λογαριασμού mail'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Εμφάνιση της καρτέλας Φίλτρα mail στις λεπτομέρειες του λογαριασμού mail'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Εμφάνιση της καρτέλας Προσαρμοσμένοι Κανόνες στις λεπτομέρειες του λογαριασμού mail'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Usar indicador de carga'; |
| | | $wb['f5_to_reload_js_txt'] = 'Si cambias esto, podrías tener que pulsar F5 para que tu navegador recargue las librerías JavaScript o vacíar la caché del navegador.'; |
| | | $wb['client_username_web_check_disabled_txt'] = "Desactivar comprobación de la palabra 'web' en el nombre de cliente."; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Mostrar pestaña autoresponder en los detalles de la cuenta de correo'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Mostrar pestaña filtro de correo en los detalles de la cuenta de correo'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Mostrar pestaña filtros personalizados en los detalles de la cuenta de correo'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Użyj wskaźnika ładowania'; |
| | | $wb['f5_to_reload_js_txt'] = 'Jeżeli zmienisz to, możesz potrzebować wcisnąć F5 lub wyczyścić cache aby przeglądarka przeładowała biblioteki JavaScript.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Wyłącz sprawdzanie nazwy klienta w poszukiwaniu słowa -web-.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Pokaż zakładkę autorespondera w szczegółach konta email.'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Pokaż zakładkę filtra email w szczegółach konta email.'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Pokaż zakładkę własnych filtrów email w szczegółach konta email.'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Använd laddningsindikator'; |
| | | $wb['f5_to_reload_js_txt'] = 'Om du ändrar detta kan du behöva trycka F5 för att ladda om javascript, eller rensa din webbläsarcache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Visa autosvarsfliken vid detaljerna för epostkonto'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Visa epostfilterfliken vid detaljerna för epostkonto'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['backups_include_into_web_quota_txt'] = 'Include backup files into web quota.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | |
| | | </div> |
| | | </div> |
| | | <div class="form-group"> |
| | | <label class="col-sm-3 control-label">{tmpl_var name='backups_include_into_web_quota_txt'}</label> |
| | | <div class="col-sm-9"> |
| | | {tmpl_var name='backups_include_into_web_quota'} |
| | | </div> |
| | | </div> |
| | | <div class="form-group"> |
| | | <label class="col-sm-3 control-label">{tmpl_var name='reseller_can_use_options_txt'}</label> |
| | | <div class="col-sm-9"> |
| | | {tmpl_var name='reseller_can_use_options'} |
| | |
| | | {tmpl_var name='default_dbserver'} |
| | | </select></div> |
| | | </div> |
| | | |
| | | |
| | | <input type="hidden" name="id" value="{tmpl_var name='id'}"> |
| | | |
| | |
| | | $function_list['mail_spamfilter_whitelist_get,mail_spamfilter_whitelist_add,mail_spamfilter_whitelist_update,mail_spamfilter_whitelist_delete'] = 'Mail spamfilter whitelist functions'; |
| | | $function_list['mail_spamfilter_blacklist_get,mail_spamfilter_blacklist_add,mail_spamfilter_blacklist_update,mail_spamfilter_blacklist_delete'] = 'Mail spamfilter blacklist functions'; |
| | | $function_list['mail_user_filter_get,mail_user_filter_add,mail_user_filter_update,mail_user_filter_delete'] = 'Mail user filter functions'; |
| | | $function_list['mail_user_backup'] = 'Mail Backup functions'; |
| | | $function_list['mail_filter_get,mail_filter_add,mail_filter_update,mail_filter_delete'] = 'Mail filter functions'; |
| | | |
| | | |
| | |
| | | <td>{tmpl_var name="filesize"}</td> |
| | | <td class="text-right"> |
| | | <div class="buttons"> |
| | | <button class="btn btn-default formbutton-default" type="button" onclick="ISPConfig.confirm_action('mail/mail_user_edit.php?id={tmpl_var name='parent_id'}&next_tab=backup&backup_action=restore&backup_id={tmpl_var name='backup_id'}','{tmpl_var name='restore_confirm_txt'}');">{tmpl_var name="restore_backup_txt"}</button> |
| | | <!-- <button class="btn btn-default formbutton-default" type="button" data-load-content="mail/mail_user_edit.php?id={tmpl_var name='parent_id'}&next_tab=backup&backup_action=download&backup_id={tmpl_var name='backup_id'}">{tmpl_var name="download_backup_txt"}</button> |
| | | --> |
| | | <button class="btn btn-default formbutton-default" type="button" onclick="ISPConfig.confirm_action('mail/mail_user_edit.php?id={tmpl_var name='parent_id'}&next_tab=backup&backup_action=restore_mail&backup_id={tmpl_var name='backup_id'}','{tmpl_var name='restore_confirm_txt'}');">{tmpl_var name="restore_backup_txt"}</button> |
| | | </div> |
| | | </td> |
| | | </tr> |
| | |
| | | </tmpl_unless> |
| | | </tbody> |
| | | </table> |
| | | </div> |
| | | |
| | | </div> |
| | | </div> |
New file |
| | |
| | | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
| | | <html><head><title>ISCPConfig 3 API Functions</title> |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
| | | <link rel="stylesheet" type="text/css" href="definitionen.css"> |
| | | <style type="text/css"> |
| | | </style></head> |
| | | |
| | | <body> |
| | | <div style="padding:40px"> |
| | | <h1>mail_user_backup(<span class="var">$session_id</span>, <span class="var">$primary_id</span>, <span class="var">$action_type</span>);</h1> |
| | | <br> |
| | | <p class="headgrp">Description: </p> |
| | | <p class="margin"> Adds a new backup / restore task. Please note: <em>$action_type</em> <!-- is either <em>backup_download_mail</em> or --> must be <em>backup_restore_mail</em></p> |
| | | <br> |
| | | <p class="headgrp">Input Variables: </p> |
| | | <p class="margin"> <span class="var">$session_id</span>, <span class="var">$primary_id</span>, <span class="var">$action_type</span></p> |
| | | <p class="headgrp">Output: </p> |
| | | <p class="margin"> Returns <em>TRUE</em> if successfull or <em>FALSE</em> if failure.</p> |
| | | </div> |
| | | |
| | | </body></html> |
New file |
| | |
| | | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
| | | <html><head><title>ISCPConfig 3 API Functions</title> |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
| | | <link rel="stylesheet" type="text/css" href="definitionen.css"> |
| | | <style type="text/css"> |
| | | </style></head> |
| | | |
| | | <body> |
| | | <div style="padding:40px"> |
| | | <h1>mail_user_backup_list(<span class="var">$session_id</span>, <span class="var">$primary_id</span>);</h1> |
| | | <br> |
| | | <p class="headgrp">Description: </p> |
| | | <p class="margin"> Gets list of all available mail backups. If no $primary_id (mail-domain-id) is given, all mail backups available on this server are read.</p> |
| | | <br> |
| | | <p class="headgrp">Input Variables: </p> |
| | | <p class="margin"> <span class="var">$session_id</span>, <span class="var">$primary_id (mail-domain-id)</span></p> |
| | | <p class="headgrp">Output: </p> |
| | | <p class="margin"> Returns array of all available backups.</p> |
| | | </div> |
| | | |
| | | </body></html> |
| | |
| | | <p><a href="mail_user_filter_delete.html" target="content">mail_user_filter_delete</a></p> |
| | | <p><a href="mail_user_filter_get.html" target="content">mail_user_filter_get</a></p> |
| | | <p><a href="mail_user_filter_update.html" target="content">mail_user_filter_update</a></p> |
| | | <p><a href="mail_user_backup_list.html" target="content">mail_user_backup_list</a></p> |
| | | <p><a href="mail_user_backup.html" target="content">mail_user_backup</a></p> |
| | | <p><a href="mail_whitelist_add.html" target="content">mail_whitelist_add</a></p> |
| | | <p><a href="mail_whitelist_delete.html" target="content">mail_whitelist_delete</a></p> |
| | | <p><a href="mail_whitelist_get.html" target="content">mail_whitelist_get</a></p> |
| | |
| | | global $app, $conf; |
| | | |
| | | $server_config = $app->getconf->get_server_config($conf['server_id'], 'server'); |
| | | $global_config = $app->getconf->get_global_config('sites'); |
| | | $backup_dir = $server_config['backup_dir']; |
| | | $backup_mode = $server_config['backup_mode']; |
| | | if($backup_mode == '') $backup_mode = 'userzip'; |
| | |
| | | } |
| | | if($retval == 0 || ($backup_mode != 'userzip' && $retval == 1) || ($backup_mode == 'userzip' && $retval == 12)) { // tar can return 1, zip can return 12(due to harmless warings) and still create valid backups |
| | | if(is_file($web_backup_dir.'/'.$web_backup_file)){ |
| | | chown($web_backup_dir.'/'.$web_backup_file, 'root'); |
| | | chgrp($web_backup_dir.'/'.$web_backup_file, 'root'); |
| | | $backupusername = ($global_config['backups_include_into_web_quota'] == 'y') ? $web_user : 'root'; |
| | | $backupgroup = ($global_config['backups_include_into_web_quota'] == 'y') ? $web_group : 'root'; |
| | | chown($web_backup_dir.'/'.$web_backup_file, $backupusername); |
| | | chgrp($web_backup_dir.'/'.$web_backup_file, $backupgroup); |
| | | chmod($web_backup_dir.'/'.$web_backup_file, 0750); |
| | | |
| | | //* Insert web backup record in database |
| | | //$insert_data = "(server_id,parent_domain_id,backup_type,backup_mode,tstamp,filename) VALUES (".$conf['server_id'].",".$web_id.",'web','".$backup_mode."',".time().",'".$app->db->quote($web_backup_file)."')"; |
| | | //$app->dbmaster->datalogInsert('web_backup', $insert_data, 'backup_id'); |
| | | $filesize = $app->functions->formatBytes(filesize($web_backup_dir.'/'.$web_backup_file)); |
| | | $filesize = filesize($web_backup_dir.'/'.$web_backup_file); |
| | | $sql = "INSERT INTO web_backup (server_id, parent_domain_id, backup_type, backup_mode, tstamp, filename, filesize) VALUES (?, ?, ?, ?, ?, ?, ?)"; |
| | | $app->db->query($sql, $conf['server_id'], $web_id, 'web', $backup_mode, time(), $web_backup_file, $filesize); |
| | | if($app->db->dbHost != $app->dbmaster->dbHost) |
| | |
| | | $db_backup_dir = $backup_dir.'/web'.$web_id; |
| | | if(!is_dir($db_backup_dir)) mkdir($db_backup_dir, 0750); |
| | | chmod($db_backup_dir, 0750); |
| | | chown($db_backup_dir, 'root'); |
| | | chgrp($db_backup_dir, 'root'); |
| | | $backupusername = 'root'; |
| | | $backupgroup = 'root'; |
| | | if ($global_config['backups_include_into_web_quota'] == 'y') { |
| | | $sql = "SELECT * FROM web_domain WHERE domain_id = ".$rec['parent_domain_id']; |
| | | $webdomain = $app->db->queryOneRecord($sql); |
| | | $backupusername = $webdomain['system_user']; |
| | | $backupgroup = $webdomain['system_group']; |
| | | } |
| | | chown($db_backup_dir, $backupusername); |
| | | chgrp($db_backup_dir, $backupgroup); |
| | | |
| | | //* Do the mysql database backup with mysqldump |
| | | $db_id = $rec['database_id']; |
| | |
| | | //* Insert web backup record in database |
| | | //$insert_data = "(server_id,parent_domain_id,backup_type,backup_mode,tstamp,filename) VALUES (".$conf['server_id'].",$web_id,'mysql','sqlgz',".time().",'".$app->db->quote($db_backup_file).".gz')"; |
| | | //$app->dbmaster->datalogInsert('web_backup', $insert_data, 'backup_id'); |
| | | $filesize = $app->functions->formatBytes(filesize($db_backup_dir.'/'.$db_backup_file.'.gz')); |
| | | $filesize = filesize($db_backup_dir.'/'.$db_backup_file.'.gz'); |
| | | $sql = "INSERT INTO web_backup (server_id, parent_domain_id, backup_type, backup_mode, tstamp, filename, filesize) VALUES (?, ?, ?, ?, ?, ?, ?)"; |
| | | $app->db->query($sql, $conf['server_id'], $web_id, 'mysql', 'sqlgz', time(), $db_backup_file.'.gz', $filesize); |
| | | if($app->db->dbHost != $app->dbmaster->dbHost) |
| | |
| | | |
| | | $server_config = $app->getconf->get_server_config($conf['server_id'], 'server'); |
| | | $mail_config = $app->getconf->get_server_config($conf['server_id'], 'mail'); |
| | | |
| | | $global_config = $app->getconf->get_global_config('sites'); |
| | | |
| | | $backup_dir = $server_config['backup_dir']; |
| | | $backup_dir_permissions =0750; |
| | | |
| | |
| | | foreach($records as $rec) { |
| | | //* Do the mailbox backup |
| | | if($rec['backup_interval'] == 'daily' or ($rec['backup_interval'] == 'weekly' && date('w') == 0) or ($rec['backup_interval'] == 'monthly' && date('d') == '01')) { |
| | | $email = $rec['email']; |
| | | $temp = explode("@",$email); |
| | | $domain = $temp[1]; |
| | | unset($temp);; |
| | | $domain_rec=$app->db->queryOneRecord("SELECT * FROM mail_domain WHERE domain = ?", $domain); |
| | | |
| | | $backupusername = 'root'; |
| | | $backupgroup = 'root'; |
| | | if ($global_config['backups_include_into_web_quota'] == 'y') { |
| | | // this only works, if mail and webdomains are on the same server |
| | | // find webdomain fitting to maildomain |
| | | $sql = "SELECT * FROM web_domain WHERE domain = '".$domain_rec['domain']."'"; |
| | | $webdomain = $app->db->queryOneRecord($sql); |
| | | // if this is not also the website, find website now |
| | | if ($webdomain && ($webdomain['parent_domain_id'] != 0)) { |
| | | do { |
| | | $sql = "SELECT * FROM web_domain WHERE domain_id = ".$webdomain['parent_domain_id']; |
| | | $webdomain = $app->db->queryOneRecord($sql); |
| | | } while ($webdomain && ($webdomain['parent_domain_id'] != 0)); |
| | | } |
| | | // if webdomain is found, change username/group now |
| | | if ($webdomain) { |
| | | $backupusername = $webdomain['system_user']; |
| | | $backupgroup = $webdomain['system_group']; |
| | | } |
| | | } |
| | | |
| | | $mail_backup_dir = $backup_dir.'/mail'.$domain_rec['domain_id']; |
| | | if(!is_dir($mail_backup_dir)) mkdir($mail_backup_dir, 0750); |
| | | chmod($mail_backup_dir, $backup_dir_permissions); |
| | | chown($mail_backup_dir, $backupusername); |
| | | chgrp($mail_backup_dir, $backupgroup); |
| | | |
| | | $mail_backup_file = 'mail'.$rec['mailuser_id'].'_'.date('Y-m-d_H-i'); |
| | | |
| | |
| | | //* create archives |
| | | if($backup_mode == 'userzip') { |
| | | $mail_backup_file.='.zip'; |
| | | exec('cd '.$domain_dir.' && zip '.$mail_backup_dir.'/'.$mail_backup_file.' -b /tmp -r '.$source_dir.' > /dev/nul', $tmp_output, $retval); |
| | | exec('cd '.$domain_dir.' && zip '.$mail_backup_dir.'/'.$mail_backup_file.' -b /tmp -r '.$source_dir.' > /dev/null', $tmp_output, $retval); |
| | | } else { |
| | | /* Create a tar.gz backup */ |
| | | $mail_backup_file.='.tar.gz'; |
| | | exec(escapeshellcmd('tar pczf '.$mail_backup_dir.'/'.$mail_backup_file.' --directory '.$domain_dir.' '.$source_dir), $tmp_output, $retval); |
| | | } |
| | | if($retval == 0){ |
| | | chown($mail_backup_dir.'/'.$mail_backup_file, 'root'); |
| | | chgrp($mail_backup_dir.'/'.$mail_backup_file, 'root'); |
| | | chown($mail_backup_dir.'/'.$mail_backup_file, $backupusername); |
| | | chgrp($mail_backup_dir.'/'.$mail_backup_file, $backupgroup); |
| | | chmod($mail_backup_dir.'/'.$mail_backup_file, 0640); |
| | | /* Insert mail backup record in database */ |
| | | $filesize = filesize($mail_backup_dir.'/'.$mail_backup_file); |
| | | $sql = "INSERT INTO mail_backup (server_id, parent_domain_id, mailuser_id, backup_mode, tstamp, filename, filesize) VALUES (?, ?, ?, ?, ?, ?, ?)"; |
| | | $app->db->query($sql, $conf['server_id'], $domain_rec['domain_id'], $rec['mailuser_id'], $backup_mode, time(), $mail_backup_file, $app->functions->formatBytes(filesize($mail_backup_dir.'/'.$mail_backup_file))); |
| | | if($app->db->dbHost != $app->dbmaster->dbHost) $app->dbmaster->query($sql, $conf['server_id'], $domain_rec['domain_id'], $rec['mailuser_id'], $backup_mode, time(), $mail_backup_file, $app->functions->formatBytes(filesize($mail_backup_dir.'/'.$mail_backup_file))); |
| | | $app->db->query($sql, $conf['server_id'], $domain_rec['domain_id'], $rec['mailuser_id'], $backup_mode, time(), $mail_backup_file, $filesize); |
| | | if($app->db->dbHost != $app->dbmaster->dbHost) $app->dbmaster->query($sql, $conf['server_id'], $domain_rec['domain_id'], $rec['mailuser_id'], $backup_mode, time(), $mail_backup_file, $filesize); |
| | | unset($filesize); |
| | | } else { |
| | | /* Backup failed - remove archive */ |
| | | if(is_file($mail_backup_dir.'/'.$mail_backup_file)) unlink($mail_backup_dir.'/'.$mail_backup_file); |
| | |
| | | //* Register for actions |
| | | $app->plugins->registerAction('backup_download', $this->plugin_name, 'backup_action'); |
| | | $app->plugins->registerAction('backup_restore', $this->plugin_name, 'backup_action'); |
| | | |
| | | //$app->plugins->registerAction('backup_download_mail', $this->plugin_name, 'backup_action_mail'); |
| | | $app->plugins->registerAction('backup_restore_mail', $this->plugin_name, 'backup_action_mail'); |
| | | |
| | | } |
| | | |
| | | //* Do a backup action |
| | |
| | | |
| | | $backup_id = intval($data); |
| | | $backup = $app->dbmaster->queryOneRecord("SELECT * FROM web_backup WHERE backup_id = $backup_id"); |
| | | $mail_backup = $app->dbmaster->queryOneRecord("SELECT * FROM mail_backup WHERE backup_id = $backup_id"); |
| | | |
| | | if(is_array($backup)) { |
| | | |
| | |
| | | } else { |
| | | $app->log('Backup directory not ready.', LOGLEVEL_DEBUG); |
| | | } |
| | | //* Restore a mail backup - florian@schaal-24.de |
| | | } elseif (is_array($mail_backup) && $action_name == 'backup_restore') { |
| | | $app->uses('ini_parser,file,getconf'); |
| | | } else { |
| | | $app->log('No backup with ID '.$backup_id.' found.', LOGLEVEL_DEBUG); |
| | | } |
| | | |
| | | return 'ok'; |
| | | } |
| | | |
| | | //* Restore a mail backup - florian@schaal-24.de |
| | | public function backup_action_mail($action_name, $data) { |
| | | global $app, $conf; |
| | | |
| | | $backup_id = intval($data); |
| | | $mail_backup = $app->dbmaster->queryOneRecord("SELECT * FROM mail_backup WHERE backup_id = $backup_id"); |
| | | |
| | | if (is_array($mail_backup) && $action_name == 'backup_restore_mail') { |
| | | $app->uses('ini_parser,file,getconf'); |
| | | |
| | | $server_config = $app->getconf->get_server_config($conf['server_id'], 'server'); |
| | | $backup_dir = $server_config['backup_dir']; |
| | | |
| | | $backup_dir_is_ready = true; |
| | | |
| | | //* mount backup directory, if necessary |
| | | if( $server_config['backup_dir_is_mount'] == 'y' && !$app->system->mount_backup_dir($backup_dir) ) $backup_dir_is_ready = false; |
| | | |
| | | |
| | | if($backup_dir_is_ready){ |
| | | $mail_config = $app->getconf->get_server_config($conf['server_id'], 'mail'); |
| | | $domain_rec = $app->db->queryOneRecord("SELECT * FROM mail_domain WHERE domain_id = ".intval($mail_backup['parent_domain_id'])); |
| | | |
| | | |
| | | $backup_dir = $server_config['backup_dir'].'/mail'.$domain_rec['domain_id']; |
| | | $mail_backup_file = $backup_dir.'/'.$mail_backup['filename']; |
| | | |
| | | |
| | | $sql = "SELECT * FROM mail_user WHERE server_id = '".$conf['server_id']."' AND mailuser_id = ".intval($mail_backup['mailuser_id']); |
| | | $record = $app->db->queryOneRecord($sql); |
| | | |
| | | |
| | | //* strip mailbox from maildir |
| | | $domain_dir=explode('/',$record['maildir']); |
| | | $_temp=array_pop($domain_dir);unset($_temp); |
| | | $domain_dir=implode('/',$domain_dir); |
| | | |
| | | |
| | | if(!is_dir($domain_dir)) { |
| | | mkdir($domain_dir, 0700); //* never create the full path |
| | | chown($domain_dir, $mail_config['mailuser_name']); |
| | | chgrp($domain_dir, $mail_config['mailuser_group']); |
| | | } |
| | | |
| | | |
| | | if(file_exists($mail_backup_file) && $record['homedir'] != '' && $record['homedir'] != '/' && !stristr($mail_backup_file,'..') && !stristr($mail_backup_file,'etc') && $mail_config['homedir_path'] == $record['homedir'] && is_dir($domain_dir)) { |
| | | if($mail_backup['backup_mode'] == 'userzip') { |
| | | copy($mail_backup_file, $domain_dir.'/'.$mail_backup['filename']); |
| | |
| | | |
| | | return 'ok'; |
| | | } |
| | | |
| | | |
| | | |
| | | } // end class |
| | | |
| | | ?> |