IMAP解析器或服务器示例

huangapple go评论141阅读模式
英文:

IMAP parser or server examples

问题

我被指派使用Go构建一个IMAP服务器,在进行了一些研究后,我发现我需要自己构建它,所以在我开始之前,我想知道你们的想法。我需要一些IMAP解析器或服务器示例。提前感谢!

英文:

I've been assigned to build an IMAP server with Go, and after a bit of research I figured I'll have to build it all by myself, so before I do anything I want to know what you guys think. I need some IMAP parser or a server example. Thanks in advance!

答案1

得分: -3

IMAP是一种简单的文本协议,与SMTP非常相似。你可以查看net/smtp的实现方式。

服务器端的IMAP实现与客户端的区别在于,它大部分时间是响应命令而不是发起命令,所以你可以查看现有的客户端实现

英文:

IMAP is a simple textual protocol which is very similar to SMTP in this regard, so check out how net/smtp is implemented.

And server-side IMAP implementation differ from client side only in that it most of the time responds to commands, not initiate them, so check out existing client implementation.

huangapple
  • 本文由 发表于 2013年10月8日 17:51:56
  • 转载请务必保留本文链接:https://go.coder-hub.com/19244460.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定