Skip to content

Commit 046ba49

Browse files
author
Till Brehm
committed
Update 500-clean_mailboxes.inc.php
1 parent e613c7a commit 046ba49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/lib/classes/cron.d/500-clean_mailboxes.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ private function purge_soft_deleted_maildir() {
128128
if (!empty($matched_dirs)) {
129129
$delay_days = $mail_config['mailbox_soft_delete'];
130130
foreach($matched_dirs as $dir) {
131-
$owner = posix_getpwuid(fileowner($dir))
131+
$owner = posix_getpwuid(fileowner($dir));
132132
if (is_dir($dir) && is_array($owner) && $owner['name'] == 'vmail') {
133133
$mtime = filemtime($dir);
134134
if ($mtime < strtotime("-$delay_days days")) {

0 commit comments

Comments
 (0)