Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace email_with_domains -> email_with_domain in docs #613

Merged
merged 1 commit into from
Aug 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ nav:
- reference/table/sql_query.md
- reference/table/chain.md
- reference/table/email_localpart.md
- reference/table/email_with_domains.md
- reference/table/email_with_domain.md
- reference/table/auth.md
- Authentication providers:
- reference/auth/pass_table.md
Expand Down
8 changes: 4 additions & 4 deletions docs/multiple-domains.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ accept non-email usernames:
authorize_sender {
...
user_to_email chain {
step email_localpart_optional # remove domain from username if present
step email_with_domains $(local_domains) # expand username with all allowed domains
step email_localpart_optional # remove domain from username if present
step email_with_domain $(local_domains) # expand username with all allowed domains
}
}
```
Expand Down Expand Up @@ -141,8 +141,8 @@ mailboxes.**
authorize_sender {
...
user_to_email chain {
step email_localpart_optional # remove domain from username if present
step email_with_domains $(local_domains) # expand username with all allowed domains
step email_localpart_optional # remove domain from username if present
step email_with_domain $(local_domains) # expand username with all allowed domains
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The table module `table.email_with_domain` appends one or more
domains (allowing 1:N expansion) to the specified value.

```
table.email_with_domains DOMAIN DOMAIN... { }
table.email_with_domain DOMAIN DOMAIN... { }
```

It can be used to implement domain-level expansion for aliases if used together
Expand All @@ -14,7 +14,7 @@ with `table.chain`. Example:
modify {
replace_rcpt chain {
step email_local_part
step email_with_domains example.org example.com
step email_with_domain example.org example.com
}
}
```
Expand Down
Loading