<?php
|
/*
|
Copyright (c) 2013, Florian Schaal, info@schaal-24.de
|
All rights reserved.
|
|
Redistribution and use in source and binary forms, with or without modification,
|
are permitted provided that the following conditions are met:
|
|
* Redistributions of source code must retain the above copyright notice,
|
this list of conditions and the following disclaimer.
|
* Redistributions in binary form must reproduce the above copyright notice,
|
this list of conditions and the following disclaimer in the documentation
|
and/or other materials provided with the distribution.
|
* Neither the name of ISPConfig nor the names of its contributors
|
may be used to endorse or promote products derived from this software without
|
specific prior written permission.
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
*/
|
|
class cronjob_backup_mail extends cronjob {
|
|
// job schedule
|
protected $_schedule = '0 0 * * *';
|
private $tmp_backup_dir = '';
|
|
/* this function is optional if it contains no custom code */
|
public function onPrepare() {
|
global $app;
|
|
parent::onPrepare();
|
}
|
|
/* this function is optional if it contains no custom code */
|
public function onBeforeRun() {
|
global $app;
|
|
return parent::onBeforeRun();
|
}
|
|
public function onRunJob() {
|
global $app, $conf;
|
|
$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;
|
|
$backup_mode = $server_config['backup_mode'];
|
if($backup_mode == '') $backup_mode = 'userzip';
|
|
if($backup_dir != '') {
|
$run_backups = true;
|
//* mount backup directory, if necessary
|
if( $server_config['backup_dir_is_mount'] == 'y' && !$app->system->mount_backup_dir($backup_dir) ) $run_backups = false;
|
|
$records = $app->db->queryAllRecords("SELECT * FROM mail_user WHERE server_id = ? AND maildir != ''", intval($conf['server_id']));
|
|
if(is_array($records) && $run_backups) {
|
if(!is_dir($backup_dir)) {
|
mkdir(escapeshellcmd($backup_dir), $backup_dir_permissions, true);
|
} else {
|
chmod(escapeshellcmd($backup_dir), $backup_dir_permissions);
|
}
|
|
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 = ?";
|
$webdomain = $app->db->queryOneRecord($sql, $domain_rec['domain']);
|
// 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 = $app->db->queryOneRecord($sql, $webdomain['parent_domain_id']);
|
} 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');
|
|
// in case of mdbox -> create backup with doveadm before zipping
|
if ($rec['maildir_format'] == 'mdbox') {
|
if (empty($this->tmp_backup_dir)) $this->tmp_backup_dir = $rec['maildir'];
|
// Create temporary backup-mailbox
|
exec("su -c 'dsync backup -u \"".$rec["email"]."\" mdbox:".$this->tmp_backup_dir."/backup'", $tmp_output, $retval);
|
|
if($backup_mode == 'userzip') {
|
$mail_backup_file.='.zip';
|
exec('cd '.$this->tmp_backup_dir.' && zip '.$mail_backup_dir.'/'.$mail_backup_file.' -b /tmp -r backup > /dev/null && rm -rf backup', $tmp_output, $retval);
|
}
|
else {
|
$mail_backup_file.='.tar.gz';
|
exec(escapeshellcmd('tar pczf '.$mail_backup_dir.'/'.$mail_backup_file.' --directory '.$this->tmp_backup_dir.' backup && rm -rf '.$this->tmp_backup_dir.'/backup'), $tmp_output, $retval);
|
}
|
|
if ($retval != 0) {
|
// Cleanup
|
if (file_exists($this->tmp_backup_dir.'/backup')) exec('rm -rf '.$this->tmp_backup_dir.'/backup');
|
}
|
}
|
else {
|
$domain_dir=explode('/',$rec['maildir']);
|
$_temp=array_pop($domain_dir);unset($_temp);
|
$domain_dir=implode('/',$domain_dir);
|
|
$parts=explode('/',$rec['maildir']);
|
$source_dir=array_pop($parts);
|
unset($parts);
|
|
//* 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/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, $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, $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);
|
// And remove backup-mdbox
|
if ($rec['maildir_format'] == 'mdbox') {
|
if(file_exists($rec['maildir'].'/backup')) exec("su -c 'rm -rf ".$rec['maildir']."/backup'");
|
}
|
$app->log($mail_backup_file.' NOK:'.implode('',$tmp_output), LOGLEVEL_DEBUG);
|
}
|
/* Remove old backups */
|
$backup_copies = intval($rec['backup_copies']);
|
$dir_handle = dir($mail_backup_dir);
|
$files = array();
|
while (false !== ($entry = $dir_handle->read())) {
|
if($entry != '.' && $entry != '..' && substr($entry,0,4+strlen($rec['mailuser_id'])) == 'mail'.$rec['mailuser_id'] && is_file($mail_backup_dir.'/'.$entry)) {
|
$files[] = $entry;
|
}
|
}
|
$dir_handle->close();
|
rsort($files);
|
for ($n = $backup_copies; $n <= 10; $n++) {
|
if(isset($files[$n]) && is_file($mail_backup_dir.'/'.$files[$n])) {
|
unlink($mail_backup_dir.'/'.$files[$n]);
|
$sql = "DELETE FROM mail_backup WHERE server_id = ? AND parent_domain_id = ? AND filename = ?";
|
$app->db->query($sql, $conf['server_id'], $domain_rec['domain_id'], $files[$n]);
|
if($app->db->dbHost != $app->dbmaster->dbHost) $app->dbmaster->query($sql, $conf['server_id'], $domain_rec['domain_id'], $files[$n]);
|
}
|
}
|
unset($files);
|
unset($dir_handle);
|
}
|
/* Remove inactive backups */
|
if($rec['backup_interval'] == 'none') {
|
/* remove backups from db */
|
$sql = "DELETE FROM mail_backup WHERE server_id = ? AND parent_domain_id = ? AND mailuser_id = ?";
|
$app->db->query($sql, $conf['server_id'], $domain_rec['domain_id'], $rec['mailuser_id']);
|
if($app->db->dbHost != $app->dbmaster->dbHost) $app->dbmaster->query($sql, $conf['server_id'], $domain_rec['domain_id'], $rec['mailuser_id']);
|
/* remove archives */
|
$mail_backup_dir = $backup_dir.'/mail'.$rec['domain_id'];
|
$mail_backup_file = 'mail'.$rec['mailuser_id'].'_*';
|
if(is_dir($mail_backup_dir)) {
|
foreach (glob($mail_backup_dir.'/'.$mail_backup_file) as $filename) {
|
unlink($filename);
|
}
|
}
|
}
|
}
|
if( $server_config['backup_dir_is_mount'] == 'y' ) $app->system->umount_backup_dir($backup_dir);
|
} //* end run_backups
|
}
|
|
parent::onRunJob();
|
}
|
|
/* this function is optional if it contains no custom code */
|
public function onAfterRun() {
|
global $app;
|
|
parent::onAfterRun();
|
}
|
|
}
|
|
?>
|