Skip to content

Commit

Permalink
Bug: 14620 Fix auto-creation of SPECIAL_USER mailboxes.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Apr 23, 2017
1 parent 924e600 commit fbdbcb9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions imp/lib/LoginTasks/Task/Autocreate.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ public function execute()
'special_use' => array(Horde_Imap_Client::SPECIALUSE_TRASH)
));
break;

case IMP_Mailbox::SPECIAL_USER:
foreach ($val as $mbox) {
$mbox->create();
}
break;
}
}
}
Expand Down

0 comments on commit fbdbcb9

Please sign in to comment.