gitextract_y6gyh9lx/ ├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Vagrantfile ├── api/ │ ├── docs/ │ │ ├── generate-docs.sh │ │ └── template.hbs │ └── mailinabox.yml ├── conf/ │ ├── dovecot-mailboxes.conf │ ├── fail2ban/ │ │ ├── filter.d/ │ │ │ ├── dovecotimap.conf │ │ │ ├── miab-management-daemon.conf │ │ │ ├── miab-munin.conf │ │ │ ├── miab-owncloud.conf │ │ │ ├── miab-postfix-submission.conf │ │ │ └── miab-roundcube.conf │ │ └── jails.conf │ ├── ios-profile.xml │ ├── mailinabox.service │ ├── mozilla-autoconfig.xml │ ├── mta-sts.txt │ ├── munin.service │ ├── nginx-alldomains.conf │ ├── nginx-primaryonly.conf │ ├── nginx-ssl.conf │ ├── nginx-top.conf │ ├── nginx.conf │ ├── postfix_outgoing_mail_header_filters │ ├── sieve-spam.txt │ ├── www_default.html │ └── zpush/ │ ├── autodiscover_config.php │ ├── backend_caldav.php │ ├── backend_carddav.php │ ├── backend_combined.php │ └── backend_imap.php ├── management/ │ ├── auth.py │ ├── backup.py │ ├── cli.py │ ├── csr_country_codes.tsv │ ├── daemon.py │ ├── daily_tasks.sh │ ├── dns_update.py │ ├── email_administrator.py │ ├── mail_log.py │ ├── mailconfig.py │ ├── mfa.py │ ├── munin_start.sh │ ├── ssl_certificates.py │ ├── status_checks.py │ ├── templates/ │ │ ├── aliases.html │ │ ├── custom-dns.html │ │ ├── external-dns.html │ │ ├── index.html │ │ ├── login.html │ │ ├── mail-guide.html │ │ ├── mfa.html │ │ ├── munin.html │ │ ├── ssl.html │ │ ├── sync-guide.html │ │ ├── system-backup.html │ │ ├── system-status.html │ │ ├── users.html │ │ ├── web.html │ │ └── welcome.html │ ├── utils.py │ ├── web_update.py │ └── wsgi.py ├── pyproject.toml ├── security.md ├── setup/ │ ├── bootstrap.sh │ ├── dkim.sh │ ├── dns.sh │ ├── firstuser.sh │ ├── functions.sh │ ├── mail-dovecot.sh │ ├── mail-postfix.sh │ ├── mail-users.sh │ ├── management.sh │ ├── migrate.py │ ├── munin.sh │ ├── network-checks.sh │ ├── nextcloud.sh │ ├── preflight.sh │ ├── questions.sh │ ├── spamassassin.sh │ ├── ssl.sh │ ├── start.sh │ ├── system.sh │ ├── web.sh │ ├── webmail.sh │ └── zpush.sh ├── tests/ │ ├── fail2ban.py │ ├── pip-requirements.txt │ ├── test_dns.py │ ├── test_mail.py │ ├── test_smtp_server.py │ ├── tls.py │ └── tls_results.txt └── tools/ ├── archive_conf_files.sh ├── dns_update ├── editconf.py ├── mail.py ├── owncloud-restore.sh ├── owncloud-unlockadmin.sh ├── parse-nginx-log-bootstrap-accesses.py ├── readable_bash.py ├── ssl_cleanup └── web_update