mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +03:00
Allows to use macro expansion like $(local_domains) to configure DKIM for all domains. Closes #199.
55 lines
2 KiB
Markdown
55 lines
2 KiB
Markdown
# Multiple domains configuration
|
|
|
|
## Separate account namespaces
|
|
|
|
Given two domains, example.org and example.com. foo@example.org and
|
|
foo@example.com are different and completely independent accounts.
|
|
|
|
All changes needed to make it work is to make sure all domains are specified in
|
|
the `$(local_domains)` macro in the main configuration file. Note that you need
|
|
to pick one domain as a "primary" for use in auto-generated messages.
|
|
```
|
|
$(primary_domain) = example.org
|
|
$(local_domains) = $(primary_domain) example.com
|
|
```
|
|
|
|
The base configuration is done. You can create accounts using maddyctl using
|
|
both domains in the name, send and receive messages and so on. Do not forget
|
|
to configure corresponding SPF, DMARC and MTA-STS records as was
|
|
recommended in the [introduction tutorial](setting-up.md).
|
|
|
|
## Single account namespace
|
|
|
|
Lets say you want to handle messages for domains example.org and example.com
|
|
and make that foo@example.org and foo@example.com are the same accounts.
|
|
Sadly, this case is not very well-supported by maddy, but it still can be
|
|
implemented.
|
|
|
|
You already should have the primary domain set for autogenerated messages and
|
|
so on. The idea is to redirect all messages from non-primary domains to the
|
|
primary one.
|
|
|
|
For each handled domain, the following line should be added to the
|
|
`local_modifiers` block:
|
|
```
|
|
replace_rcpt /(.+)@example.com/ $1@$(primary_domain)
|
|
```
|
|
It does regexp replacement, turning anything@example.com into
|
|
anything@$(primary_domain) where $(primary_domain) in our case is example.org.
|
|
|
|
E.g.
|
|
```
|
|
$(primary_domain) = example.org
|
|
|
|
modifiers local_modifiers {
|
|
replace_rcpt /(.+)@example.net/ $1@$(primary_domain)
|
|
replace_rcpt /(.+)@example.com/ $1@$(primary_domain)
|
|
}
|
|
```
|
|
With that configuration, all messages for foo@example.net and foo@example.com
|
|
will end up in the foo@example.org mailbox.
|
|
|
|
Note, however, no account credentials aliasing is done. Users should always use
|
|
the account name with the primary domain to access IMAP mailboxes.
|
|
|
|
**Note 1**: All domains should still be listed in the `$(local_domains)` macro.
|