We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40a0bf0 commit f42d916Copy full SHA for f42d916
server/lib/classes/cron.d/500-backup_mail.inc.php
@@ -76,7 +76,8 @@ public function onRunJob() {
76
foreach($records as $rec) {
77
//* Do the mailbox backup
78
if($rec['backup_interval'] == 'daily' or ($rec['backup_interval'] == 'weekly' && date('w') == 0) or ($rec['backup_interval'] == 'monthly' && date('d') == '01')) {
79
- $temp = explode("@",$rec['email']);
+ $email = $rec['email'];
80
+ $temp = explode("@",$email);
81
$domain = $temp[1];
82
unset($temp);;
83
$domain_rec=$app->db->queryOneRecord("SELECT * FROM mail_domain WHERE domain = ?", $domain);
0 commit comments