We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a07d9a0 commit 05740f7Copy full SHA for 05740f7
1 file changed
server/lib/classes/cron.d/100-monitor_email_quota.inc.php
@@ -82,7 +82,7 @@ public function onRunJob() {
82
$dovecotQuotaUsage = array();
83
if (isset($mail_config['pop3_imap_daemon']) && $mail_config ['pop3_imap_daemon'] = 'dovecot') {
84
exec("doveadm quota get -A 2>&1", $res, $retval);
85
- if ($retval = 64) {
+ if ($retval == 0) {
86
foreach ($res as $v) {
87
$s = preg_split('/\s+/', $v);
88
if ($s[2] == 'STORAGE') {
0 commit comments