liuch/dmarc-srg

Multiple Mailboxes?

fadersolo opened this issue · 2 comments

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?

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',
        ...
    ]
];

That worked! Thank you. <3