JMAP Core server implementation
还没有人认领这个 Issue。
评估
调研方向
首先检查仓库结构,并将其预期的服务器设计与 issue 中链接的 go-imap 示例进行比较。定义用户提供的存储和身份验证所需的入口点与接口,然后检查 HTTP 处理是否使用 net/http,以及 JMAP Core 是否仍独立于其他 JMAP 实现。
由索引模型根据 Issue 内容生成。
描述
Things to consider
Below are things I believe would make library more useful.
-
go-jmap should avoid enforcing certain storage design and definitely must not provide storage implementation itself. I think it is best to simply translate API requests into corresponding method calls on some interface called "Backend" (see go-imap for a good example of how this could be done).
-
go-jmap should avoid enforcing certain authentication design and definitely must not provide authentication implementation itself. As with previous point, authentication should be implemented by calling out into user-provided interface implementation.
-
go-jmap should rely only on net/http for HTTP server. Use of more advanced frameworks will make it easier to violate the first point.
-
JMAP Core, JMAP Mail, etc implementations should be kept independent of each other for extensibility purposes. JMAP is not only about email.
- 主要语言
- Go
- 星标
- 43
- 派生
- 4
- PR 合并指标
- 30 天内没有已合并 PR
贡献指南
这个仓库没有索引到贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
foxcpp/go-jmap 的其他 Issue
-
Context support 未关闭client enhancement server
难度 4/5 3-5 天 新手友好度 25/100
-
client server
难度 5/5 一周以上 新手友好度 20/100
相似的 Issue
-
难度 1/5 1 小时以内 新手友好度 90/100
-
enhancement
难度 2/5 1-3 小时 新手友好度 65/100
-
bug
难度 2/5 1-3 小时 新手友好度 75/100
-
难度 2/5 1-3 小时 新手友好度 75/100
-
难度 2/5 1-3 小时 新手友好度 75/100
santhosh-tekuri/jsonschema#276 ·