feat: add mailbox subdomain support#108
Open
gloryhry wants to merge 1 commit intobeilunyang:masterfrom
Open
Conversation
Author
在Cloudflare部署上支持子域名配置在 DNS 记录中强行添加“通配符 MX 记录”Cloudflare 的邮件路由界面不支持泛解析,直接去域名的 DNS 管理页面手动添加。
开启主域名的 Catch-all (全部捕获)(新配置需要,已部署的不需要以下操作)由于发给任意子域名(例如 test@abc.example.com)的邮件,在系统中找不到特定的收件规则,我们需要用 Catch-all 功能把它们统一拦截并交给 Worker 处理。
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
背景
当前系统创建邮箱时仅支持基础域名,无法直接创建带子域名的邮箱地址。
本次改动为邮箱创建流程增加了可选子域名支持,使用户可以创建类似:
的邮箱地址。
主要改动
1. 后端
2. Web 端
3. CLI
4. 文档
行为说明
兼容性
部署注意事项