英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论