liuch / dmarc-srg

A php parser, viewer and summary report generator for incoming DMARC reports.
GNU General Public License v3.0
213 stars 31 forks source link

Multiple Mailboxes? #113

Closed fadersolo closed 6 months ago

fadersolo commented 6 months ago

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 6 months ago

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 6 months ago

That worked! Thank you. <3