Initial commit

This commit is contained in:
Julian Rother 2025-01-14 16:16:36 +01:00
commit a7c269731d
Signed by: julian
GPG key ID: C19B924C0CD13341
6 changed files with 97 additions and 0 deletions

16
README.md Normal file
View file

@ -0,0 +1,16 @@
# MUA-facing IMAP and SMTP (submission) proxy with Dovecot
Forwards IMAP and SMTP (submission) connections from MUAs to different backend servers based on the mail domain.
```yaml
dovecot_proxy:
domain_proxies:
example.com:
backend_host: myoldmailsetup.net
mymaildomain.org:
backend_host: mynewmailsetup.org
```
This proxies users with `@example.com` email addresses to myoldmailsetup.net and users with `@mymaildomain.org` email addresses to mynewmailsetup.org.
Make sure to setup ssl certificates (see defaults for `ssl_cert` and `ssl_key`).