Skip to content
Snippets Groups Projects
Commit 0b9a788e authored by quentusrex's avatar quentusrex
Browse files

The mail box quota wasn't being run on mailbox creation. I had previously only...

The mail box quota wasn't being run on mailbox creation. I had previously only fixed it when the mailbox is changed.

They both work fine now.
parent bac6ef6c
No related branches found
No related tags found
No related merge requests found
......@@ -81,6 +81,9 @@ class mail_plugin {
exec('chown -R '.$mail_config['mailuser_name'].':'.$mail_config['mailuser_group'].' '.escapeshellcmd($data['new']['maildir']));
$app->log('Created Maildir: '.$data['new']['maildir'],LOGLEVEL_DEBUG);
}
//This is to fix the maildrop quota not being rebuilt after the quota is changed.
exec("su -c 'maildirmake -q ".$data['new']['quota']."S ".escapeshellcmd($data['new']['maildir'])."' ".$mail_config['mailuser_name']);
$app->log('Created Maildir: '."su -c 'maildirmake -q ".$data['new']['quota']."S ".escapeshellcmd($data['new']['maildir'])."' ".$mail_config['mailuser_name'],LOGLEVEL_DEBUG);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment