GitHub - tine-groupware/mailstack: tine groupware basic mailstack

<?php

return  [
    "imap" => [
        "active" => true,
        "backend" => "dovecot_imap",
        "domain" => "mailtest.local.tine-dev.de",
        "dovecot" => [
            "dbname" => "dovecot",
            "gid" => "mail",
            "home" => "/var/mail/%d/%u",
            "host" => "db",
            "password" => "root",
            "scheme" => "SSHA256",
            "uid" => "mail",
            "username" => "root",
        ],
        "host" => "mx.mailtest.local.tine-dev.de",
        "instanceName" => "mailtest.local.tine-dev.de",
        "port" => 993,
        "ssl" => "SSL",
        "useSystemAccount" => 1,
        "verifyPeer" => 1,
    ],
    "smtp" => [
        "active" => true,
        "auth" => "login",
        "backend" => "postfix",
        "from" => "mailtest.local.tine-dev.de",
        "hostname" => "mx.mailtest.local.tine-dev.de",
        "instanceName" => "mailtest.local.tine-dev.de",
        "name" => "mx.mailtest.local.tine-dev.de",
        "port" => 25,
        "postfix" => [
            "dbname" => "postfix",
            "host" => "db",
            "password" => "root",
            "username" => "root",
        ],
        "primarydomain" => "mailtest.local.tine-dev.de",
        "ssl" => "tls",
    ],
    "sieve" => [
        "active" => true,
        "hostname" => "mx.mailtest.local.tine-dev.de",
        "port" => 4190,
        "ssl" => "tls"
    ],
];