Multiple Mailboxes?
fadersolo opened this issue · 2 comments
fadersolo commented
I can't tell if it's possible to add multiple mailboxes to the configuration file. Is this possible? If so, how do I add a second mailbox?
liuch commented
Yes, you can add multiple mailboxes. See the comments in the config/conf.sample.php file. Here is a simple example:
$mailboxes = [
[
'name' => 'Mailbox1',
...
],
[
'name' => 'Mailbox2',
...
]
];
fadersolo commented
That worked! Thank you. <3