docker-mailserver/docs/content/config/user-management/aliases.md

27 lines
949 B
Markdown
Raw Normal View History

2016-04-24 17:17:17 +02:00
Please first read [Postfix documentation on virtual aliases](http://www.postfix.org/VIRTUAL_README.html#virtual_alias).
2016-05-24 06:08:23 +02:00
### Configuring aliases
2016-04-24 17:17:17 +02:00
Aliases are managed in `config/postfix-virtual.cf`.
An alias is a full email address that will be:
* delivered to an existing account in `config/postfix-accounts.cf`
* redirected to one or more other email addresses
Alias and target are space separated.
Example:
# Alias to existing account
alias1@domain.tld user1@domain.tld
# Forward to external email address
2016-05-24 06:08:23 +02:00
alias2@domain.tld external@gmail.com
### Configuring regexp aliases
2016-12-14 20:19:31 +01:00
Additional regexp aliases can be configured by placing them into `config/postfix-regexp.cf`. The regexp aliases get evaluated after the virtual aliases (postfix-virtual.cf). For example, the following `config/postfix-regexp.cf` causes all email to "test" users to be delivered to qa@example.com:
2016-05-24 06:08:23 +02:00
```
/^test[0-9][0-9]*@example.com/ qa@example.com
```